mirror of
https://github.com/enduro2d/enduro2d.git
synced 2025-12-14 08:07:17 +07:00
253 B
253 B
Dbgui
Properties
visible: boolean, RW
Examples
local d = e2d.dbgui
local k = e2d.input.keyboard
local toggle_dbgui_key = e2d.keyboard_key.f12
if k:is_key_just_pressed(toggle_dbgui_key) then
d.visible = not d.visible
end