UnityEngine.Cubemap.GetPixel C# (CSharp) Method

GetPixel() private method

private GetPixel ( CubemapFace face, int x, int y ) : Color
face CubemapFace
x int
y int
return Color
        public extern Color GetPixel(CubemapFace face, int x, int y);
        [ExcludeFromDocs]

Usage Example

コード例 #1
0
 static public int GetPixel(IntPtr l)
 {
     try {
         UnityEngine.Cubemap     self = (UnityEngine.Cubemap)checkSelf(l);
         UnityEngine.CubemapFace a1;
         checkEnum(l, 2, out a1);
         System.Int32 a2;
         checkType(l, 3, out a2);
         System.Int32 a3;
         checkType(l, 4, out a3);
         var ret = self.GetPixel(a1, a2, a3);
         pushValue(l, true);
         pushValue(l, ret);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
All Usage Examples Of UnityEngine.Cubemap::GetPixel