UnityEngine.Camera.INTERNAL_CALL_ViewportToScreenPoint C# (CSharp) Method

INTERNAL_CALL_ViewportToScreenPoint() private method

private INTERNAL_CALL_ViewportToScreenPoint ( Camera self, Vector3 &position, Vector3 &value ) : void
self Camera
position Vector3
value Vector3
return void
        private static extern void INTERNAL_CALL_ViewportToScreenPoint(Camera self, ref Vector3 position, out Vector3 value);
        [MethodImpl(MethodImplOptions.InternalCall)]

Usage Example

コード例 #1
0
ファイル: Camera.cs プロジェクト: lsx6244413/UnityDecomplie
        public Vector3 ViewportToScreenPoint(Vector3 position)
        {
            Vector3 result;

            Camera.INTERNAL_CALL_ViewportToScreenPoint(this, ref position, out result);
            return(result);
        }
All Usage Examples Of UnityEngine.Camera::INTERNAL_CALL_ViewportToScreenPoint
Camera