idk richtext stuff

This commit is contained in:
2025-09-15 00:40:58 -05:00
parent 39aca9aa3f
commit 2b58781907
44 changed files with 335 additions and 1009 deletions

12
map/TestMap.gd Normal file
View File

@@ -0,0 +1,12 @@
extends Node3D
func _ready():
UI.MADTALK.start_dialog("bare_minimum")
func _input(event):
if (
(event is InputEventKey) and (event.pressed) and (not event.echo) and (event.keycode in [KEY_SPACE, KEY_ENTER, KEY_KP_ENTER])
) or (
(event is InputEventMouseButton) and (event.pressed) and (event.button_index == MOUSE_BUTTON_LEFT)
):
UI.MADTALK.dialog_acknowledge()