UnityEngine.Material.INTERNAL_CALL_SetColor C# (CSharp) Method

INTERNAL_CALL_SetColor() private method

private INTERNAL_CALL_SetColor ( Material self, int nameID, Color &color ) : void
self Material
nameID int
color Color
return void
        private static extern void INTERNAL_CALL_SetColor(Material self, int nameID, ref Color color);
        [MethodImpl(MethodImplOptions.InternalCall)]

Usage Example

コード例 #1
0
 public void SetColor(int nameID, Color color)
 {
     Material.INTERNAL_CALL_SetColor(this, nameID, ref color);
 }