ScriptRuntime.MaterialInstance.SetValue C# (CSharp) Method

SetValue() public method

为材质中的矩阵参数设置矩阵值
public SetValue ( String paramName, Matrix44 &value ) : void
paramName String 材质中的矩阵参数名称
value Matrix44 要设置的矩阵参数值
return void
        public void SetValue(String paramName, ref Matrix44 value)
        {
            ICall_Material_SetValueMatrix44(this, paramName, ref value);
        }

Same methods

MaterialInstance::SetValue ( String paramName, System.Vector4 value ) : void
MaterialInstance::SetValue ( String paramName, float value ) : void