public static FadeTo Create(float d, float opacity, IColorAttrCatcher attrCatcher = null) { FadeTo action = new FadeTo(); if (action != null && action.InitWithDuration(d, opacity, attrCatcher)) { return(action); } return(null); }
public override Action Clone() { return(FadeTo.Create(duration, toOpacity)); }
public void SetReverseAction(FadeTo ac) { reverseAction = ac; }