UnityEngine.Camera.INTERNAL_CALL_ResetCullingMatrix C# (CSharp) Method

INTERNAL_CALL_ResetCullingMatrix() private method

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

Usage Example

コード例 #1
0
ファイル: Camera.cs プロジェクト: lsx6244413/UnityDecomplie
 public void ResetCullingMatrix()
 {
     Camera.INTERNAL_CALL_ResetCullingMatrix(this);
 }
Camera