Initial Basic Movement

This commit is contained in:
2023-06-03 15:59:24 -04:00
commit fca1e2858e
35 changed files with 1880 additions and 0 deletions

11
title_screen.gd Normal file
View File

@@ -0,0 +1,11 @@
extends Node2D
var game_arena :PackedScene= preload("res://game_arena.tscn")
var scene_ref = null
# Called when the node enters the scene tree for the first time.
func _ready():
$StartButton.pressed.connect(self.start_game)
func start_game():
get_tree().change_scene_to_packed(game_arena)