UnityEngine.MaterialPropertyBlock.SetMatrixArray C# (CSharp) Method

SetMatrixArray() public method

public SetMatrixArray ( int nameID, List values ) : void
nameID int
values List
return void
        public void SetMatrixArray(int nameID, List<Matrix4x4> values)
        {
            if (values == null)
            {
                throw new ArgumentNullException("values");
            }
            if (values.Count == 0)
            {
                throw new ArgumentException("Zero-sized array is not allowed.");
            }
            this.SetMatrixArrayImplList(nameID, values);
        }

Same methods

MaterialPropertyBlock::SetMatrixArray ( int nameID, Matrix4x4 values ) : void
MaterialPropertyBlock::SetMatrixArray ( string name, List values ) : void
MaterialPropertyBlock::SetMatrixArray ( string name, Matrix4x4 values ) : void

Usage Example

 static public int SetMatrixArray(IntPtr l)
 {
     try {
         int argc = LuaDLL.lua_gettop(l);
         if (matchType(l, argc, 2, typeof(int), typeof(UnityEngine.Matrix4x4[])))
         {
             UnityEngine.MaterialPropertyBlock self = (UnityEngine.MaterialPropertyBlock)checkSelf(l);
             System.Int32 a1;
             checkType(l, 2, out a1);
             UnityEngine.Matrix4x4[] a2;
             checkArray(l, 3, out a2);
             self.SetMatrixArray(a1, a2);
             pushValue(l, true);
             return(1);
         }
         else if (matchType(l, argc, 2, typeof(string), typeof(UnityEngine.Matrix4x4[])))
         {
             UnityEngine.MaterialPropertyBlock self = (UnityEngine.MaterialPropertyBlock)checkSelf(l);
             System.String a1;
             checkType(l, 2, out a1);
             UnityEngine.Matrix4x4[] a2;
             checkArray(l, 3, out a2);
             self.SetMatrixArray(a1, a2);
             pushValue(l, true);
             return(1);
         }
         pushValue(l, false);
         LuaDLL.lua_pushstring(l, "No matched override function to call");
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
All Usage Examples Of UnityEngine.MaterialPropertyBlock::SetMatrixArray