| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- [gd_scene load_steps=8 format=3 uid="uid://cs8iql18nkljw"]
- [ext_resource type="PackedScene" uid="uid://bhmlkk0b6od2o" path="res://Scenes/Parts/WarpPipeArea.tscn" id="1_cqjry"]
- [ext_resource type="Script" uid="uid://b0scyyxg64wbp" path="res://Scripts/Parts/WarpZone.gd" id="1_ngmjk"]
- [ext_resource type="PackedScene" uid="uid://ccwil8rmgvund" path="res://Scenes/Prefabs/LevelObjects/TextLabel.tscn" id="3_xejae"]
- [ext_resource type="PackedScene" uid="uid://1rxw4k4wq3ni" path="res://Scenes/Prefabs/Entities/Enemies/PiranhaPlant.tscn" id="4_usbud"]
- [ext_resource type="Script" uid="uid://cnheej0sxmoxg" path="res://Scripts/Parts/PlayerDetection.gd" id="5_3hug5"]
- [ext_resource type="PackedScene" uid="uid://ds5iugeocqd6a" path="res://Scenes/Prefabs/LevelObjects/HardCameraRightLimit.tscn" id="8_0wmt6"]
- [sub_resource type="RectangleShape2D" id="RectangleShape2D_xejae"]
- size = Vector2(18, 1000)
- [node name="WarpZone" type="Node2D" groups=["Labels"]]
- script = ExtResource("1_ngmjk")
- [node name="Pipes" type="Node2D" parent="."]
- [node name="Left" type="Node2D" parent="Pipes"]
- position = Vector2(-64, -48)
- [node name="Pipe" parent="Pipes/Left" instance=ExtResource("1_cqjry")]
- world_num = -1
- [node name="TextLabel" parent="Pipes/Left" groups=["Labels"] instance=ExtResource("3_xejae")]
- visible = false
- offset_left = -8.0
- offset_top = -24.0
- offset_right = 8.0
- offset_bottom = -8.0
- text = "1"
- [node name="PirannhaPlant" parent="Pipes/Left" groups=["Plants"] instance=ExtResource("4_usbud")]
- [node name="Middle" type="Node2D" parent="Pipes"]
- position = Vector2(0, -48)
- [node name="Pipe" parent="Pipes/Middle" instance=ExtResource("1_cqjry")]
- world_num = -1
- [node name="TextLabel" parent="Pipes/Middle" groups=["Labels"] instance=ExtResource("3_xejae")]
- visible = false
- offset_left = -8.0
- offset_top = -24.0
- offset_right = 8.0
- offset_bottom = -8.0
- text = "1"
- [node name="PirannhaPlant" parent="Pipes/Middle" groups=["Plants"] instance=ExtResource("4_usbud")]
- [node name="Right" type="Node2D" parent="Pipes"]
- position = Vector2(64, -48)
- [node name="Pipe" parent="Pipes/Right" instance=ExtResource("1_cqjry")]
- world_num = -1
- [node name="TextLabel" parent="Pipes/Right" groups=["Labels"] instance=ExtResource("3_xejae")]
- visible = false
- offset_left = -8.0
- offset_top = -24.0
- offset_right = 8.0
- offset_bottom = -8.0
- text = "1"
- [node name="PirannhaPlant" parent="Pipes/Right" groups=["Plants"] instance=ExtResource("4_usbud")]
- [node name="TextLabel" parent="." groups=["Labels"] instance=ExtResource("3_xejae")]
- visible = false
- offset_left = -104.0
- offset_top = -120.0
- offset_right = 104.0
- offset_bottom = -76.0
- text = "LEVEL_WARPZONE"
- horizontal_alignment = 1
- autowrap_mode = 3
- [node name="PlayerDetection" type="Area2D" parent="."]
- position = Vector2(8, -136)
- script = ExtResource("5_3hug5")
- metadata/_custom_type_script = "uid://cnheej0sxmoxg"
- [node name="CollisionShape2D" type="CollisionShape2D" parent="PlayerDetection"]
- position = Vector2(1, -124)
- shape = SubResource("RectangleShape2D_xejae")
- [node name="HardCameraRightLimit" parent="." instance=ExtResource("8_0wmt6")]
- position = Vector2(144, -176)
- reset_on_delete = false
- lock_camera = true
- [connection signal="player_entered" from="PlayerDetection" to="." method="activate" unbinds=1]
|