basic-move-and-dodge-game

[LEARNING] basic godot game based off the tutorial by borncg on youtube
git clone git://git.figbert.com/basic-move-and-dodge-game.git
Log | Files | Refs | README

GameOverButton.gd (119B)


      1 extends Button
      2 
      3 func _ready():
      4 	pass
      5 
      6 
      7 func _on_GameOverButton_pressed():
      8 	get_tree().change_scene("res://Level.tscn")