Game.tscn 912 B

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