add todos app

This commit is contained in:
Fabien Freling 2026-04-28 13:47:29 +02:00
parent 25a62f9c43
commit dfff9d383c
28 changed files with 648 additions and 1 deletions

9
todos/loaded.gd Normal file
View file

@ -0,0 +1,9 @@
extends VBoxContainer
func _on_button_2_pressed():
var p = ResourceLoader.load("res://NewEntry.tscn")
var pop_up: PopupPanel = p.instantiate()
add_child(pop_up)
#pop_up.transient = true
#pop_up.exclusive = true
pop_up.show()