chenxin
2020-10-27 e33d0e85cf5d01e953d95197488eeffc67835f3a
1
2
3
4
5
6
7
8
9
10
11
12
namespace UnityEngine.PostProcessing
{
    public sealed class TrackballAttribute : PropertyAttribute
    {
        public readonly string method;
 
        public TrackballAttribute(string method)
        {
            this.method = method;
        }
    }
}