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

INTERNAL_CALL_SetTextureOffset() 개인적인 메소드

private INTERNAL_CALL_SetTextureOffset ( Material self, string propertyName, Vector2 &offset ) : void
self Material
propertyName string
offset Vector2
리턴 void
        private static extern void INTERNAL_CALL_SetTextureOffset(Material self, string propertyName, ref Vector2 offset);
        [MethodImpl(MethodImplOptions.InternalCall)]

Usage Example

예제 #1
0
 public void SetTextureOffset(string propertyName, Vector2 offset)
 {
     Material.INTERNAL_CALL_SetTextureOffset(this, propertyName, ref offset);
 }