123456789101112131415161718192021222324252627282930313233343536 |
- [gd_scene load_steps=5 format=2]
- [ext_resource path="res://MainCamera.gd" type="Script" id=1]
- [ext_resource path="res://LevelSwap.gd" type="Script" id=2]
- [ext_resource path="res://Game.gd" type="Script" id=3]
- [ext_resource path="res://Hub.tscn" type="PackedScene" id=4]
- [node name="Game" type="Node2D"]
- script = ExtResource( 3 )
- levelNames = [ "Square", "Lab", "Focus", "Atom", "template" ]
- [node name="MainCamera" type="Camera2D" parent="."]
- position = Vector2( 500, -500 )
- current = true
- smoothing_enabled = true
- script = ExtResource( 1 )
- [node name="StartTimer" type="Timer" parent="."]
- wait_time = 3.0
- one_shot = true
- [node name="Title" type="Label" parent="."]
- margin_top = -700.0
- margin_right = 1000.0
- margin_bottom = -686.0
- text = "Mighty Liners Reborn"
- align = 1
- __meta__ = {
- "_edit_use_anchors_": false
- }
- [node name="Hub" parent="." instance=ExtResource( 4 )]
- [node name="LevelSwap" type="Tween" parent="."]
- script = ExtResource( 2 )
- [connection signal="timeout" from="StartTimer" to="." method="_on_start_game"]
|