16 lines
365 B
GDScript3
16 lines
365 B
GDScript3
|
extends Control
|
||
|
|
||
|
|
||
|
# Called when the node enters the scene tree for the first time.
|
||
|
func _ready():
|
||
|
$FileDialog.access = FileDialog.ACCESS_FILESYSTEM
|
||
|
$FileDialog.use_native_dialog = true
|
||
|
|
||
|
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
||
|
func _process(delta):
|
||
|
pass
|
||
|
|
||
|
func _on_button_pressed():
|
||
|
$FileDialog.show()
|
||
|
print("button pressed")
|