21bcce37fa
Slight code fixups and changed some map stuff, Also added a stat viewer for the current player in the game itself.
14 lines
297 B
GDScript
14 lines
297 B
GDScript
extends Node
|
|
|
|
|
|
|
|
func _on_button_pressed():
|
|
get_tree().change_scene_to_file("res://scenes/map/map.tscn")
|
|
|
|
|
|
func _on_button_2_pressed():
|
|
get_tree().change_scene_to_file("res://scenes/menu/view.tscn")
|
|
|
|
|
|
func _on_button_3_pressed():
|
|
get_tree().change_scene_to_file("res://scenes/menu/create.tscn")
|