UnityEngine.Display.SetParamsImpl C# (CSharp) 메소드

SetParamsImpl() 개인적인 메소드

private SetParamsImpl ( IntPtr nativeDisplay, int width, int height, int x, int y ) : void
nativeDisplay System.IntPtr
width int
height int
x int
y int
리턴 void
        private static extern void SetParamsImpl(IntPtr nativeDisplay, int width, int height, int x, int y);
        /// <summary>

Usage Example

예제 #1
0
 public void SetParams(int width, int height, int x, int y)
 {
     Display.SetParamsImpl(this.nativeDisplay, width, height, x, y);
 }