public static GoTween to(object target, float duration, GoTweenConfig config) { config.setIsTo(); GoTween goTween = new GoTween(target, duration, config); addTween(goTween); return(goTween); }
public static GoTween to(object target, GoSpline path, float speed, GoTweenConfig config) { config.setIsTo(); path.buildPath(); float duration = path.pathLength / speed; GoTween goTween = new GoTween(target, duration, config); addTween(goTween); return(goTween); }
static public int setIsTo(IntPtr l) { try { GoTweenConfig self = (GoTweenConfig)checkSelf(l); var ret = self.setIsTo(); pushValue(l, ret); return(1); } catch (Exception e) { return(error(l, e)); } }
/// <summary> /// helper function that creates a "to" Tween and adds it to the pool /// </summary> public static GoTween to( object target, float duration, GoTweenConfig config ) { config.setIsTo(); var tween = new GoTween( target, duration, config ); addTween( tween ); return tween; }
public static GoTween to( object target, GoSpline path, float speed, GoTweenConfig config ) { config.setIsTo(); path.buildPath(); float duration = path.pathLength / speed; var tween = new GoTween( target, duration, config ); addTween( tween ); return tween; }