]> Dogcows Code - chaz/yoink/blob - data/animations/Bullets.lua
fixed documentation about where to find licenses
[chaz/yoink] / data / animations / Bullets.lua
1
2 -- Bullet animation sequences
3
4 DefineSequence("Punch",
5 {
6 delay = 1,
7 frames = {
8 { index = 31 }
9 }
10 })
11
12 DefineSequence("SmallBullet",
13 {
14 delay = 0.05,
15 frames = {
16 { index = 16 },
17 { index = 17 }
18 }
19 })
20
21 DefineSequence("MediumBullet",
22 {
23 delay = 0.05,
24 frames = {
25 { index = 17 },
26 { index = 18 }
27 }
28 })
29
30 DefineSequence("SmallFireball",
31 {
32 delay = 0.05,
33 frames = {
34 { index = 0 },
35 { index = 1 }
36 }
37 })
38
39 DefineSequence("MediumFireball",
40 {
41 delay = 0.05,
42 frames = {
43 { index = 2 },
44 { index = 1 }
45 }
46 })
47
48 DefineSequence("LargeFireball",
49 {
50 delay = 0.05,
51 frames = {
52 { index = 21 },
53 { index = 2 }
54 }
55 })
56
This page took 0.030324 seconds and 4 git commands to generate.