UnityEngine.MaterialPropertyBlock.GetVectorArray C# (CSharp) Method

GetVectorArray() private method

private GetVectorArray ( int nameID ) : Vector4[]
nameID int
return Vector4[]
        public extern Vector4[] GetVectorArray(int nameID);
        /// <summary>

Same methods

MaterialPropertyBlock::GetVectorArray ( string name ) : Vector4[]
MaterialPropertyBlock::GetVectorArray ( int nameID, List values ) : void
MaterialPropertyBlock::GetVectorArray ( string name, List values ) : void

Usage Example

コード例 #1
0
 static public int GetVectorArray(IntPtr l)
 {
     try {
         int argc = LuaDLL.lua_gettop(l);
         if (matchType(l, argc, 2, typeof(string)))
         {
             UnityEngine.MaterialPropertyBlock self = (UnityEngine.MaterialPropertyBlock)checkSelf(l);
             System.String a1;
             checkType(l, 2, out a1);
             var ret = self.GetVectorArray(a1);
             pushValue(l, true);
             pushValue(l, ret);
             return(2);
         }
         else if (matchType(l, argc, 2, typeof(int)))
         {
             UnityEngine.MaterialPropertyBlock self = (UnityEngine.MaterialPropertyBlock)checkSelf(l);
             System.Int32 a1;
             checkType(l, 2, out a1);
             var ret = self.GetVectorArray(a1);
             pushValue(l, true);
             pushValue(l, ret);
             return(2);
         }
         else if (matchType(l, argc, 2, typeof(string), typeof(List <UnityEngine.Vector4>)))
         {
             UnityEngine.MaterialPropertyBlock self = (UnityEngine.MaterialPropertyBlock)checkSelf(l);
             System.String a1;
             checkType(l, 2, out a1);
             System.Collections.Generic.List <UnityEngine.Vector4> a2;
             checkType(l, 3, out a2);
             self.GetVectorArray(a1, a2);
             pushValue(l, true);
             return(1);
         }
         else if (matchType(l, argc, 2, typeof(int), typeof(List <UnityEngine.Vector4>)))
         {
             UnityEngine.MaterialPropertyBlock self = (UnityEngine.MaterialPropertyBlock)checkSelf(l);
             System.Int32 a1;
             checkType(l, 2, out a1);
             System.Collections.Generic.List <UnityEngine.Vector4> a2;
             checkType(l, 3, out a2);
             self.GetVectorArray(a1, a2);
             pushValue(l, true);
             return(1);
         }
         pushValue(l, false);
         LuaDLL.lua_pushstring(l, "No matched override function GetVectorArray to call");
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
All Usage Examples Of UnityEngine.MaterialPropertyBlock::GetVectorArray