add new entry pop-up
This commit is contained in:
parent
60351f8199
commit
9420d4d1b4
4 changed files with 93 additions and 1 deletions
9
godot/loaded.gd
Normal file
9
godot/loaded.gd
Normal 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()
|
||||
Loading…
Add table
Add a link
Reference in a new issue