add some user display about view coordinates

This commit is contained in:
Justus Wolff
2026-02-15 11:40:26 +01:00
parent 0962ee81d4
commit 549c0e8113

View File

@@ -94,7 +94,10 @@ local function newdesign()
term.setcol(colors.yellow, colors.black)
local _,y = term.getSize()
term.setCursorPos(1,y)
term.write("Press Ctrl for menu.")
term.write("Press Ctrl for menu. ")
term.write("x: "..tostring(camx))
term.write(" z: "..tostring(camy))
term.write(" floor: "..tostring(currentfloor))
-- user input
local event = table.pack(os.pullEvent())