Files
CortexCore 911c184a2a 1
2024-05-17 16:44:15 +08:00

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