Game2-MainMenu-Button

 avatar
TaktycznyBocian
plain_text
2 years ago
260 B
8
Indexable
extends Button



func _on_Button_pressed():
	get_tree().change_scene("res://Levels/Level1.tscn")


func _on_Button_mouse_entered():
	get_node("Start").set_text("Ready")


func _on_Button_mouse_exited():
	get_node("Start").set_text("Start Game")
Editor is loading...