Files
beyond/Assets/ThirdParty/Procedural Worlds/Gaia/Scripts/SessionSystem/ExportMaskMapOperationSettings.cs
2024-11-20 15:21:28 +01:00

28 lines
909 B
C#

using System.Collections;
using System.Collections.Generic;
using System.Text;
using UnityEngine;
namespace Gaia
{
[System.Serializable]
public class ExportMaskMapOperationSettings : ScriptableObject
{
#region public input variables
/// <summary>
/// Holds the mask map exporter settings used for the export op.
/// </summary>
public MaskMapExportSettings m_maskMapExportSettings;
/// <summary>
/// The terrain names which were exported from.
/// </summary>
public List<string> m_terrainNames = new List<string>();
/// <summary>
/// Whether the export op was global or not. Global means the export will be done per each terrain, local means the epxort will be performed with a fixed range in a fixed location.
/// </summary>
public bool isGlobalExport = false;
#endregion
}
}