Game.tscn 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. [gd_scene load_steps=5 format=2]
  2. [ext_resource path="res://Scripts/MainCamera.gd" type="Script" id=1]
  3. [ext_resource path="res://Scripts/LevelSwap.gd" type="Script" id=2]
  4. [ext_resource path="res://Scripts/Game.gd" type="Script" id=3]
  5. [ext_resource path="res://Scenes/Hub.tscn" type="PackedScene" id=4]
  6. [node name="Game" type="Node2D"]
  7. script = ExtResource( 3 )
  8. levelNames = [ "Square", "Lab", "Focus", "Atom", "template", "Corner" ]
  9. [node name="MainCamera" type="Camera2D" parent="."]
  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="Ui" type="Control" parent="."]
  17. margin_right = 40.0
  18. margin_bottom = 40.0
  19. __meta__ = {
  20. "_edit_use_anchors_": false
  21. }
  22. [node name="Title" type="Label" parent="Ui"]
  23. margin_left = -502.476
  24. margin_top = -284.577
  25. margin_right = 497.524
  26. margin_bottom = -270.577
  27. text = "Mighty Liners 2 : Hyper Drift"
  28. align = 1
  29. __meta__ = {
  30. "_edit_use_anchors_": false
  31. }
  32. [node name="Hub" parent="." instance=ExtResource( 4 )]
  33. [node name="LevelSwap" type="Tween" parent="."]
  34. script = ExtResource( 2 )
  35. [connection signal="timeout" from="StartTimer" to="." method="_on_start_game"]
  36. [connection signal="timeout" from="StartTimer" to="Ui" method="hide"]