-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsquirrelSheet.lua
More file actions
27 lines (24 loc) · 866 Bytes
/
squirrelSheet.lua
File metadata and controls
27 lines (24 loc) · 866 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
module(...)
function getSpriteSheetData()
local sheet = {
frames = {
{
name = "squirrelflying1.png",
spriteColorRect = { x = 0, y = 24, width = 211, height = 85 },
textureRect = { x = 0, y = 0, width = 211, height = 85 },
spriteSourceSize = { width = 217, height = 113 },
spriteTrimmed = true,
textureRotated = false
},
{
name = "squirrelflying2.png",
spriteColorRect = { x = 10, y = 6, width = 201, height = 107 },
textureRect = { x = 0, y = 85, width = 201, height = 107 },
spriteSourceSize = { width = 217, height = 113 },
spriteTrimmed = true,
textureRotated = false
},
}
}
return sheet
end