Esempio n. 1
0
        public override Action Reverse()
        {
            var action = FadeIn.Create(duration);

            action.SetReverseAction(this);
            return(action);
        }
Esempio n. 2
0
        public static FadeIn Create(float d, IColorAttrCatcher attrCatcher = null)
        {
            FadeIn action = new FadeIn();

            if (action != null && action.InitWithDuration(d, 255.0f, attrCatcher))
            {
                return(action);
            }
            return(null);
        }
Esempio n. 3
0
 public override Action Clone()
 {
     return(FadeIn.Create(duration));
 }