[console] Give camera and input windows decent defaults

Ie, move them out of the extreme top-left corner.
This commit is contained in:
Bill Currie 2024-01-25 18:53:37 +09:00
parent 36509f5296
commit 0401eeeb07

View file

@ -494,11 +494,15 @@ static imui_window_t system_info_window = {
static imui_window_t cam_window = {
.name = "Debug Camera",
.xpos = 50,
.ypos = 50,
.auto_fit = true,
};
static imui_window_t inp_window = {
.name = "Debug Input",
.xpos = 50,
.ypos = 50,
.auto_fit = true,
};