File tree 5 files changed +12
-10
lines changed
5 files changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -8,9 +8,9 @@ local items
8
8
local itemTimer
9
9
local player
10
10
local playerSlot
11
- local ground = gfx .image .new (" /assets/images/ground" )
12
- local tree = gfx .image .new (" /assets/images/tree" )
13
- local grass = gfx .image .new (" /assets/images/grass" )
11
+ local ground <const> = gfx .image .new (" /assets/images/ground" )
12
+ local tree <const> = gfx .image .new (" /assets/images/tree" )
13
+ local grass <const> = gfx .image .new (" /assets/images/grass" )
14
14
local collected = 0
15
15
16
16
-- Input is mostly handled by the player
Original file line number Diff line number Diff line change @@ -7,10 +7,10 @@ class("Stats").extends(BaseScene)
7
7
local items
8
8
local grid
9
9
local modal
10
- local locked_image = gfx .image .new (" /assets/images/locked" )
11
- local heart_image = gfx .image .new (" /assets/images/heart" )
12
- local icons_it = gfx .imagetable .new (" /assets/images/kenney-icons" )
13
- local columns , rows = icons_it :getSize ()
10
+ local locked_image <const> = gfx .image .new (" /assets/images/locked" )
11
+ local heart_image <const> = gfx .image .new (" /assets/images/heart" )
12
+ local icons_it <const> = gfx .imagetable .new (" /assets/images/kenney-icons" )
13
+ local columns <const> , rows <const> = icons_it :getSize ()
14
14
local modal_animator = gfx .animator .new (
15
15
500 ,
16
16
Geometry .lineSegment .new (
Original file line number Diff line number Diff line change @@ -5,7 +5,8 @@ Title = {}
5
5
class (" Title" ).extends (BaseScene )
6
6
7
7
-- This can be initialized at boot
8
- local logo = gfx .sprite .new (gfx .image .new (" /assets/images/logo" ))
8
+ local logo_image <const> = gfx .image .new (" /assets/images/logo" )
9
+ local logo <const> = gfx .sprite .new (logo_image )
9
10
logo :moveTo (200 , 90 )
10
11
local playerSlot
11
12
local menu
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ local gfx <const> = Graphics
4
4
Item = {}
5
5
class (" Item" ).extends (NobleSprite )
6
6
7
- local icons_it = gfx .imagetable .new (" assets/images/kenney-icons" )
7
+ local icons_it <const> = gfx .imagetable .new (" assets/images/kenney-icons" )
8
8
9
9
function Item :init (x , y )
10
10
self .it_index = math.random (2 , # icons_it ) -- Skip item 1 because it is blank
Original file line number Diff line number Diff line change @@ -4,11 +4,12 @@ local gfx <const> = Graphics
4
4
Player = {}
5
5
class (" Player" ).extends (AnimatedSprite )
6
6
7
+ local player_it <const> = gfx .imagetable .new (" /assets/images/character" )
7
8
local particles = ParticleCircle (0 , 0 )
8
9
particles :setSpread (0 , 90 )
9
10
10
11
function Player :init (x , y , playerSlot )
11
- Player .super .init (self , gfx . imagetable . new ( " /assets/images/character " ) )
12
+ Player .super .init (self , player_it )
12
13
self :remove () -- AnimatedSprite adds itself to the scene, we want to do that through Noble
13
14
14
15
local skinOffset = (playerSlot - 1 ) * 7
You can’t perform that action at this time.
0 commit comments