No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

MiniGame.tscn 1.3KB

1234567891011121314151617181920212223242526272829
  1. [gd_scene load_steps=9 format=2]
  2. [ext_resource path="res://mini-game/scenes/decor/background.tscn" type="PackedScene" id=1]
  3. [ext_resource path="res://mini-game/scenes/decor/foreground.tscn" type="PackedScene" id=2]
  4. [ext_resource path="res://mini-game/scenes/players/player2.tscn" type="PackedScene" id=3]
  5. [ext_resource path="res://mini-game/MiniGame.gd" type="Script" id=4]
  6. [ext_resource path="res://mini-game/scenes/decor/start_timer_UI.tscn" type="PackedScene" id=5]
  7. [ext_resource path="res://mini-game/scenes/spawner/spawner.tscn" type="PackedScene" id=6]
  8. [ext_resource path="res://mini-game/scenes/decor/scoreUI.tscn" type="PackedScene" id=7]
  9. [ext_resource path="res://mini-game/scenes/decor/instructionsUI.tscn" type="PackedScene" id=8]
  10. [node name="MiniGame" type="Node"]
  11. script = ExtResource( 4 )
  12. [node name="background" parent="." instance=ExtResource( 1 )]
  13. [node name="foreground" parent="." instance=ExtResource( 2 )]
  14. [node name="spawner" parent="." instance=ExtResource( 6 )]
  15. position = Vector2( 2015.43, 970.395 )
  16. [node name="player2" parent="." instance=ExtResource( 3 )]
  17. position = Vector2( 183.674, 888.367 )
  18. [node name="scoreUI" parent="." instance=ExtResource( 7 )]
  19. [node name="start_timer_UI" parent="." instance=ExtResource( 5 )]
  20. [node name="instructionsUI" parent="." instance=ExtResource( 8 )]