UnityEngine.Camera.INTERNAL_CALL_ResetFieldOfView C# (CSharp) Method

INTERNAL_CALL_ResetFieldOfView() private method

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

Usage Example

コード例 #1
0
 /// <summary>
 ///   <para>Reset to the default field of view.</para>
 /// </summary>
 public void ResetFieldOfView()
 {
     Camera.INTERNAL_CALL_ResetFieldOfView(this);
 }
Camera