• This project
    • Loading...
  • Sign in

I_Jemin / Unity-Shader-Practice-Lab

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • Unity-Shader-Practice-Lab
  • Assets
  • PostProcessing
  • Runtime
  • Attributes
  • TrackballAttribute.cs
  • I_Jemin's avatar
    Preparing Water · 53fadbec
    53fadbec Browse Files
    I_Jemin authored 2018-01-25 13:11:04 +0900
TrackballAttribute.cs 271 Bytes
Raw Blame History Permalink
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;
        }
    }
}