예제 #1
0
        public override Action Reverse()
        {
            var action = FadeOut.Create(duration);

            action.SetReverseAction(this);
            return(action);
        }
예제 #2
0
        public static FadeOut Create(float d, IColorAttrCatcher attrCatcher = null)
        {
            FadeOut action = new FadeOut();

            if (action != null && action.InitWithDuration(d, 0.0f, attrCatcher))
            {
                return(action);
            }
            return(null);
        }
예제 #3
0
 public override Action Clone()
 {
     return(FadeOut.Create(duration));
 }