UnityEngine.Cubemap.INTERNAL_CALL_SetPixel C# (CSharp) Method

INTERNAL_CALL_SetPixel() private method

private INTERNAL_CALL_SetPixel ( Cubemap self, CubemapFace face, int x, int y, Color &color ) : void
self Cubemap
face CubemapFace
x int
y int
color Color
return void
        private static extern void INTERNAL_CALL_SetPixel(Cubemap self, CubemapFace face, int x, int y, ref Color color);
        [MethodImpl(MethodImplOptions.InternalCall), WrapperlessIcall]

Usage Example

コード例 #1
0
ファイル: Cubemap.cs プロジェクト: zzrx79/UnityDecompiled
 public void SetPixel(CubemapFace face, int x, int y, Color color)
 {
     Cubemap.INTERNAL_CALL_SetPixel(this, face, x, y, ref color);
 }