UnityEngine.ComputeShader.INTERNAL_CALL_SetVector C# (CSharp) 메소드

INTERNAL_CALL_SetVector() 개인적인 메소드

private INTERNAL_CALL_SetVector ( ComputeShader self, int nameID, Vector4 &val ) : void
self ComputeShader
nameID int
val Vector4
리턴 void
        private static extern void INTERNAL_CALL_SetVector(ComputeShader self, int nameID, ref Vector4 val);
        [MethodImpl(MethodImplOptions.InternalCall)]

Usage Example

예제 #1
0
 public void SetVector(string name, Vector4 val)
 {
     ComputeShader.INTERNAL_CALL_SetVector(this, name, ref val);
 }
All Usage Examples Of UnityEngine.ComputeShader::INTERNAL_CALL_SetVector