UnityEngine.WebCamTexture.INTERNAL_CALL_GetPixel C# (CSharp) Method

INTERNAL_CALL_GetPixel() private method

private INTERNAL_CALL_GetPixel ( WebCamTexture self, int x, int y, Color &value ) : void
self WebCamTexture
x int
y int
value Color
return void
        private static extern void INTERNAL_CALL_GetPixel(WebCamTexture self, int x, int y, out Color value);
        [MethodImpl(MethodImplOptions.InternalCall)]

Usage Example

コード例 #1
0
        public Color GetPixel(int x, int y)
        {
            Color result;

            WebCamTexture.INTERNAL_CALL_GetPixel(this, x, y, out result);
            return(result);
        }
All Usage Examples Of UnityEngine.WebCamTexture::INTERNAL_CALL_GetPixel