-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbird3.lua
More file actions
28 lines (25 loc) · 853 Bytes
/
bird3.lua
File metadata and controls
28 lines (25 loc) · 853 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
module(...)
-- yellow bird
function getSpriteSheetData()
local sheet = {
frames = {
{
name = "bird3.png",
spriteColorRect = { x = 1, y = 1, width = 99, height = 66 },
textureRect = { x = 0, y = 0, width = 99, height = 66 },
spriteSourceSize = { width = 105, height = 94 },
spriteTrimmed = true,
textureRotated = false
},
{
name = "bird3f.png",
spriteColorRect = { x = 1, y = 36, width = 99, height = 54 },
textureRect = { x = 0, y = 70, width = 99, height = 85 },
spriteSourceSize = { width = 105, height = 95 },
spriteTrimmed = true,
textureRotated = false
},
}
}
return sheet
end