コード例 #1
0
 public void RegisterType(string type, ShaderPinCreateDelegate creator)
 {
     delegates[type] = creator;
 }
コード例 #2
0
 public CustomPin(string name, string semantic, bool array, ShaderPinCreateDelegate <T> pindelegate)
 {
     this.Delegate = pindelegate; this.Name = name; this.Semantic = semantic; this.Array = array;
 }
コード例 #3
0
        public void RegisterType(string type, string semantic, bool array, ShaderPinCreateDelegate <T> creator)
        {
            CustomPin cp = new CustomPin(type, semantic, array, creator);

            custompins.Add(cp);
        }
コード例 #4
0
 public void RegisterType(string type, ShaderPinCreateDelegate creator)
 {
     delegates[type] = creator;
 }