tween24
Version:
Tween24.js is animation library that enables fast coding using method chains.
11 lines • 486 B
text/typescript
export class Tween24Event {
static readonly PLAY :string = "play";
static readonly MANUAL_PLAY:string = "manual_play";
static readonly INIT :string = "init";
static readonly UPDATE :string = "update";
static readonly COMPLATE :string = "complate";
static readonly PAUSE :string = "pause";
static readonly RESUME :string = "resume";
static readonly SKIP :string = "skip";
static readonly STOP :string = "stop";
}