Game.tscn 757 B

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