Example #1
0
 public override void SetAlpha(float a)
 {
     base._alpha   = a;
     base._color.a = a;
     foreach (string name in this._buttonElement.Keys)
     {
         LNNode node = (LNNode)CollectionUtils.Get(this._buttonElement, name);
         node.SetAlpha(a);
     }
 }