FairyGUI.Shape.DrawEllipse C# (CSharp) Method

DrawEllipse() public method

public DrawEllipse ( Color fillColor ) : void
fillColor UnityEngine.Color
return void
        public void DrawEllipse(Color fillColor)
        {
            _type = 2;
            _fillColor = fillColor;
            _colors = null;

            _touchDisabled = false;
            _requireUpdateMesh = true;
        }

Usage Example

 static public int DrawEllipse(IntPtr l)
 {
     try {
         FairyGUI.Shape    self = (FairyGUI.Shape)checkSelf(l);
         UnityEngine.Color a1;
         checkType(l, 2, out a1);
         self.DrawEllipse(a1);
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
All Usage Examples Of FairyGUI.Shape::DrawEllipse