diff options
author | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-10-07 18:35:47 -0400 |
---|---|---|
committer | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-10-07 18:35:47 -0400 |
commit | 5f53889d4357d8dba6e726ed38358eca96dbeb47 (patch) | |
tree | 8d82a65d007f7bf69dcd650c95bc3ee1463a3002 /Scripts/init.lua | |
parent | 1b63e00b6b08133f5ee37ed90043eee0f67942fd (diff) |
Added ability to change rendering offsets and sizes
Diffstat (limited to 'Scripts/init.lua')
-rw-r--r-- | Scripts/init.lua | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Scripts/init.lua b/Scripts/init.lua index 34e464b..46fe040 100644 --- a/Scripts/init.lua +++ b/Scripts/init.lua @@ -34,24 +34,24 @@ player = { x = 0.0, y = 0.0 }, - Hitbox = { - bounds = { + Physics = { + gravity = true, + hitbox = { {x = -0.5, y = -0.8}, {x = 0.5, y = -0.8}, {x = -0.5, y = 0.8}, {x = 0.5, y = 0.8}, } }, - Physics = 0, Name = "bord", Render = { texture = "Assets/player.png", visible = true, - bounds = { - {x = -0.5, y = -0.8}, - {x = 0.5, y = -0.8}, - {x = -0.5, y = 0.8}, - {x = 0.5, y = 0.8}, + offset = { + ll = {x = -0.5, y = -0.8}, + lr = {x = 0.5, y = -0.8}, + ul = {x = -0.5, y = 0.8}, + ur = {x = 0.5, y = 0.8}, } }, Light = { |