UnityEngine.Camera.INTERNAL_CALL_ResetAspect C# (CSharp) Method

INTERNAL_CALL_ResetAspect() private method

private INTERNAL_CALL_ResetAspect ( Camera self ) : void
self Camera
return void
        private static extern void INTERNAL_CALL_ResetAspect(Camera self);
        [MethodImpl(MethodImplOptions.InternalCall)]

Usage Example

コード例 #1
0
 /// <summary>
 ///   <para>Revert the aspect ratio to the screen's aspect ratio.</para>
 /// </summary>
 public void ResetAspect()
 {
     Camera.INTERNAL_CALL_ResetAspect(this);
 }
Camera