Files
VR-WuKong/Assets/ThirdParty/PostProcessing/Runtime/Attributes/TrackballAttribute.cs
2025-11-14 18:44:06 +08: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;
}
}
}