UnityEngine.Material.INTERNAL_CALL_SetTextureScale C# (CSharp) Method

INTERNAL_CALL_SetTextureScale() private method

private INTERNAL_CALL_SetTextureScale ( Material self, string propertyName, Vector2 &scale ) : void
self Material
propertyName string
scale Vector2
return void
        private static extern void INTERNAL_CALL_SetTextureScale(Material self, string propertyName, ref Vector2 scale);
        [MethodImpl(MethodImplOptions.InternalCall)]

Usage Example

コード例 #1
0
 public void SetTextureScale(string propertyName, Vector2 scale)
 {
     Material.INTERNAL_CALL_SetTextureScale(this, propertyName, ref scale);
 }