UnityEngine.Camera.GetCommandBuffers C# (CSharp) Method

GetCommandBuffers() private method

private GetCommandBuffers ( CameraEvent evt ) : UnityEngine.Rendering.CommandBuffer[]
evt CameraEvent
return UnityEngine.Rendering.CommandBuffer[]
        public extern CommandBuffer[] GetCommandBuffers(CameraEvent evt);
        [MethodImpl(MethodImplOptions.InternalCall)]

Usage Example

コード例 #1
0
 static public int GetCommandBuffers(IntPtr l)
 {
     try {
         UnityEngine.Camera self = (UnityEngine.Camera)checkSelf(l);
         UnityEngine.Rendering.CameraEvent a1;
         checkEnum(l, 2, out a1);
         var ret = self.GetCommandBuffers(a1);
         pushValue(l, true);
         pushValue(l, ret);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
All Usage Examples Of UnityEngine.Camera::GetCommandBuffers
Camera