TweeningD.dpr 517 B

123456789101112131415161718192021222324
  1. (* Tweening demo.
  2. Original Tweener (caurina.transitions.Tweener) is a Class used to create tweenings
  3. and other transitions via ActionScript code for projects built on the Flash platform.
  4. Current demo is an example project with implementation of
  5. the tweener library in GLAnimationUtils.pas unit
  6. *)
  7. program TweeningD;
  8. uses
  9. Forms,
  10. fTweeningD in 'fTweeningD.pas' {FormTweening};
  11. {$R *.res}
  12. begin
  13. Application.Initialize;
  14. Application.CreateForm(TFormTweening, FormTweening);
  15. Application.Run;
  16. end.