7 lines
113 B
GDScript3
7 lines
113 B
GDScript3
|
|
extends Button
|
||
|
|
|
||
|
|
@export var goto_scene : String
|
||
|
|
|
||
|
|
func _on_pressed():
|
||
|
|
SceneSwitcher.transition_scene(goto_scene)
|