Exemplo n.º 1
0
 public SimpleDelegateTween(float totalTime, TweenStageDelegate step)
 {
     Reset();
     SetTotalTime(totalTime);
     SetStep(step);
 }
Exemplo n.º 2
0
 public SimpleDelegateTween SetStep(TweenStageDelegate step)
 {
     _Step = step ?? throw new TweenStepNullException();
     return(this);
 }
Exemplo n.º 3
0
 public ComplexDelegateTween SetReset(TweenStageDelegate reset)
 {
     _Reset = reset;
     return(this);
 }
Exemplo n.º 4
0
 public ComplexDelegateTween SetContinue(TweenStageDelegate cont)
 {
     _Continue = cont;
     return(this);
 }
Exemplo n.º 5
0
 public ComplexDelegateTween SetPause(TweenStageDelegate pause)
 {
     _Pause = pause;
     return(this);
 }
Exemplo n.º 6
0
 public ComplexDelegateTween SetFinish(TweenStageDelegate finish)
 {
     _Finish = finish;
     return(this);
 }
Exemplo n.º 7
0
 public ComplexDelegateTween SetStart(TweenStageDelegate start)
 {
     _Start = start;
     return(this);
 }