map/Assets/Flooded_Grounds/PostProcessing/Runtime/Attributes/TrackballAttribute.cs
2026-02-02 20:41:46 +09:00

13 lines
259 B
C#

namespace UnityEngine.PostProcessing
{
public sealed class TrackballAttribute : PropertyAttribute
{
public readonly string method;
public TrackballAttribute(string method)
{
this.method = method;
}
}
}