Files
Ultimate-Fishing-Simulator-…/Assets/Scripts/Assembly-CSharp/RootMotion/ShowLargeHeaderIf.cs
2026-03-04 09:37:33 +08:00

24 lines
764 B
C#

namespace RootMotion
{
public class ShowLargeHeaderIf : ShowIfAttribute
{
public string name;
public string color = "white";
public ShowLargeHeaderIf(string name, string propertyName, object propertyValue = null, object otherPropertyValue = null, bool indent = false, ShowIfMode mode = ShowIfMode.Hidden)
: base(propertyName, propertyValue, otherPropertyValue, indent, mode)
{
this.name = name;
color = "white";
}
public ShowLargeHeaderIf(string name, string color, string propertyName, object propertyValue = null, object otherPropertyValue = null, bool indent = false, ShowIfMode mode = ShowIfMode.Hidden)
: base(propertyName, propertyValue, otherPropertyValue, indent, mode)
{
this.name = name;
this.color = color;
}
}
}