Files
CortexCore 84ea82581f 1
2023-12-30 17:37:48 +08:00

23 lines
415 B
C#

using UnityEngine;
namespace Pinwheel.Griffin.PaintTool
{
[System.Serializable]
public struct GTerracePainterParams
{
[SerializeField]
private int stepCount;
public int StepCount
{
get
{
return stepCount;
}
set
{
stepCount = Mathf.Max(1, value);
}
}
}
}