Add categorized Logbook foundation

This commit is contained in:
Alexander Sellite 2026-07-30 23:16:28 -04:00
parent b3880c9e2b
commit 969ed8f10f
13 changed files with 1001 additions and 68 deletions

View file

@ -98,6 +98,10 @@ func consume_escape() -> bool:
return false
func is_composing_letter() -> bool:
return _compose != null and _compose.visible
func set_interactive(value: bool) -> void:
mouse_filter = Control.MOUSE_FILTER_PASS if value else Control.MOUSE_FILTER_IGNORE
for node: Node in find_children("*", "BaseButton", true, false):