Game.tscn 715 B

12345678910111213141516171819202122232425262728
  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. [node name="MainCamera" type="Camera2D" parent="."]
  7. position = Vector2( 500, -500 )
  8. current = true
  9. smoothing_enabled = true
  10. script = ExtResource( 1 )
  11. [node name="StartTimer" type="Timer" parent="."]
  12. wait_time = 3.0
  13. one_shot = true
  14. [node name="Title" type="Label" parent="."]
  15. margin_top = -700.0
  16. margin_right = 1000.0
  17. margin_bottom = -686.0
  18. text = "Mighty Liners Reborn"
  19. align = 1
  20. __meta__ = {
  21. "_edit_use_anchors_": false
  22. }
  23. [connection signal="timeout" from="StartTimer" to="." method="_on_game_start"]