UnityEngine.Material.INTERNAL_CALL_SetTextureScale C# (CSharp) 메소드

INTERNAL_CALL_SetTextureScale() 개인적인 메소드

private INTERNAL_CALL_SetTextureScale ( Material self, string propertyName, Vector2 &scale ) : void
self Material
propertyName string
scale Vector2
리턴 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);
 }