FairyGUI.ColorFilter.Invert C# (CSharp) Method

Invert() public method

public Invert ( ) : void
return void
        public void Invert()
        {
            ConcatValues(-1, 0, 0, 0, 1,
                          0, -1, 0, 0, 1,
                          0, 0, -1, 0, 1,
                          0, 0, 0, 1, 0);
        }

Usage Example

示例#1
0
 static public int Invert(IntPtr l)
 {
     try {
         FairyGUI.ColorFilter self = (FairyGUI.ColorFilter)checkSelf(l);
         self.Invert();
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
All Usage Examples Of FairyGUI.ColorFilter::Invert