Game.tscn 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. [gd_scene load_steps=5 format=2]
  2. [ext_resource path="res://MainCamera.gd" type="Script" id=1]
  3. [ext_resource path="res://LevelSwap.gd" type="Script" id=2]
  4. [ext_resource path="res://Game.gd" type="Script" id=3]
  5. [ext_resource path="res://Hub.tscn" type="PackedScene" id=4]
  6. [node name="Game" type="Node2D"]
  7. script = ExtResource( 3 )
  8. levelNames = [ "Square", "Lab", "Focus", "Atom", "template" ]
  9. [node name="MainCamera" type="Camera2D" parent="."]
  10. position = Vector2( 500, -500 )
  11. current = true
  12. smoothing_enabled = true
  13. script = ExtResource( 1 )
  14. [node name="StartTimer" type="Timer" parent="."]
  15. wait_time = 3.0
  16. one_shot = true
  17. [node name="Title" type="Label" parent="."]
  18. margin_top = -700.0
  19. margin_right = 1000.0
  20. margin_bottom = -686.0
  21. text = "Mighty Liners Reborn"
  22. align = 1
  23. __meta__ = {
  24. "_edit_use_anchors_": false
  25. }
  26. [node name="Hub" parent="." instance=ExtResource( 4 )]
  27. [node name="LevelSwap" type="Tween" parent="."]
  28. script = ExtResource( 2 )
  29. [connection signal="timeout" from="StartTimer" to="." method="_on_start_game"]