UnityEngine.RenderBufferHelper.SetStoreAction C# (CSharp) 메소드

SetStoreAction() 개인적인 메소드

private SetStoreAction ( RenderBuffer &b, int a ) : void
b RenderBuffer
a int
리턴 void
        internal static extern void SetStoreAction(out RenderBuffer b, int a);
        internal static IntPtr GetNativeRenderBufferPtr(IntPtr rb)

Usage Example

예제 #1
0
 internal void SetStoreAction(RenderBufferStoreAction action)
 {
     RenderBufferHelper.SetStoreAction(out this, (int)action);
 }