ViewVC Help
View File | Revision Log | View Changeset | Root Listing
root/Oni2/OniSplit/Totoro/AnimationState.cs
Revision: 1114
Committed: Wed Jan 22 14:08:57 2020 UTC (5 years, 8 months ago) by iritscen
File size: 1734 byte(s)
Log Message:
Adding OniSplit source code (v0.9.99.0). Many thanks to Neo for all his work over the years.

File Contents

# Content
1 using System;
2
3 namespace Oni.Totoro
4 {
5 internal enum AnimationState
6 {
7 None,
8 Anything,
9 RunningLeftDown,
10 RunningRightDown,
11 Sliding,
12 WalkingLeftDown,
13 WalkingRightDown,
14 Standing,
15 RunStart,
16 RunAccel,
17 RunSidestepLeft,
18 RunSidestepRight,
19 RunSlide,
20 RunJump,
21 RunJumpLand,
22 RunBackStart,
23 RunningBackRightDown,
24 RunningBackLeftDown,
25 FallenBack,
26 Crouch,
27 RunningUpstairRightDown,
28 RunningUpstairLeftDown,
29 SidestepLeftLeftDown,
30 SidestepLeftRightDown,
31 SidestepRightLeftDown,
32 SidestepRightRightDown,
33 SidestepRightJump,
34 SidestepLeftJump,
35 JumpForward,
36 JumpUp,
37 RunBackSlide,
38 LieBack,
39 SsLtStart,
40 SsRtStart,
41 WalkingSidestepLeft,
42 CrouchWalk,
43 WalkingSidestepRight,
44 Flying,
45 Falling,
46 FlyingForward,
47 FallingForward,
48 FlyingBack,
49 FallingBack,
50 FlyingLeft,
51 FallingLeft,
52 FlyingRight,
53 FallingRight,
54 CrouchStart,
55 WalkingBackLeftDown,
56 WalkingBackRightDown,
57 FallenFront,
58 SidestepLeftStart,
59 SidestepRightStart,
60 Sit,
61 PunchLow,
62 StandSpecial,
63 Acting,
64 CrouchRunLeft,
65 CrouchRunRight,
66 CrouchRunBackLeft,
67 CrouchRunBackRight,
68 Blocking1,
69 Blocking2,
70 Blocking3,
71 CrouchBlocking1,
72 Gliding,
73 WatchIdle,
74 Stunned,
75 Powerup,
76 Thunderbolt
77 }
78 }