Import test project as example

TODO: update gitlab-ci template to also use the test-project
This commit is contained in:
abarichello
2020-05-18 16:17:43 -03:00
parent 3e18735be5
commit 9fd1c3aee0
50 changed files with 2453 additions and 16 deletions

21
test-project/scenes/Game.tscn Executable file
View File

@@ -0,0 +1,21 @@
[gd_scene load_steps=6 format=2]
[ext_resource path="res://scripts/Game.gd" type="Script" id=1]
[ext_resource path="res://scenes/Arena.tscn" type="PackedScene" id=2]
[ext_resource path="res://scenes/Player.tscn" type="PackedScene" id=3]
[ext_resource path="res://scenes/Base.tscn" type="PackedScene" id=4]
[ext_resource path="res://scenes/EnemyGenerator.tscn" type="PackedScene" id=5]
[node name="Game" type="Node2D"]
script = ExtResource( 1 )
[node name="Arena" parent="." instance=ExtResource( 2 )]
[node name="Player" parent="." instance=ExtResource( 3 )]
position = Vector2( 456.975, 971.301 )
[node name="Base" parent="." instance=ExtResource( 4 )]
position = Vector2( 94.6306, 955.095 )
[node name="EnemyGenerator" parent="." instance=ExtResource( 5 )]