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

SetLoadAction() 개인적인 메소드

private SetLoadAction ( RenderBuffer &b, int a ) : void
b RenderBuffer
a int
리턴 void
        internal static extern void SetLoadAction(out RenderBuffer b, int a);
        [MethodImpl(MethodImplOptions.InternalCall)]

Usage Example

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