FairyGUI.UpdateContext.LeaveClipping C# (CSharp) Method

LeaveClipping() public method

public LeaveClipping ( ) : void
return void
        public void LeaveClipping()
        {
            if (clipInfo.stencil)
                stencilReferenceValue = stencilReferenceValue >> 1;
            else
                rectMaskDepth--;

            clipInfo = _clipStack.Pop();
            clipped = _clipStack.Count > 0;
        }

Usage Example

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