BITFALL/Assets/Plugins/Polaris - Low Poly Ecosystem/Polaris - Low Poly Terrain .../Runtime/Scripts/PaintTool/GeometryTexturePainters/GMaskPainterParams.cs

41 lines
758 B
C#

#if GRIFFIN
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
namespace Pinwheel.Griffin.PaintTool
{
[System.Serializable]
public struct GMaskPainterParams
{
[SerializeField]
private GTextureChannel channel;
public GTextureChannel Channel
{
get
{
return channel;
}
set
{
channel = value;
}
}
[SerializeField]
private bool visualize;
public bool Visualize
{
get
{
return visualize;
}
set
{
visualize = value;
}
}
}
}
#endif