This repository has been archived on 2025-06-25. You can view files and clone it, but cannot push or open issues or pull requests.
Net.Like.Xue.Tokyo/Assets/Plugins/Character Controller Pro/Utilities/Scripts/BreakVector2Attribute.cs

18 lines
430 B
C#

using UnityEngine;
namespace Lightbug.Utilities
{
[System.AttributeUsage(System.AttributeTargets.Field, AllowMultiple = false, Inherited = true)]
public class BreakVector2Attribute : PropertyAttribute
{
public string XLabel;
public string YLabel;
public BreakVector2Attribute(string xLabel, string yLabel)
{
XLabel = xLabel;
YLabel = yLabel;
}
}
}