diff options
| author | iamcheeseman <[email protected]> | 2026-03-12 16:41:55 -0400 |
|---|---|---|
| committer | iamcheeseman <[email protected]> | 2026-03-12 16:41:55 -0400 |
| commit | e3634a80ad29221b9fc0cc60a543027074096dd1 (patch) | |
| tree | 485cb8f15523d21be36cc9c33283ba296a6337bd /src/objs | |
| parent | 756a3446b66d86c7ee785b69e7103c79a12bdf13 (diff) | |
Move the UI rendering outside of the canvas
Diffstat (limited to 'src/objs')
| -rw-r--r-- | src/objs/player.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/objs/player.lua b/src/objs/player.lua index 0903372..c046c7c 100644 --- a/src/objs/player.lua +++ b/src/objs/player.lua @@ -44,7 +44,7 @@ function player_movement_sys(player, dt) end function player_ui_sys(_) - im.begin_window("Room Editor", 5, 5, 50, 50, {}) + im.begin_window("Room Editor", 120, 5, 180, 320, {}) im.layout({0.5, 0.75, 1}) im.text("Tile: " .. tostring(tile)) if im.button(" - ") then |
