WillowGodotGame/willowproject/Scenes/game.tscn

85 lines
2.9 KiB
Plaintext
Raw Normal View History

2025-01-14 00:30:02 +00:00
[gd_scene load_steps=8 format=3 uid="uid://csqvvi0t51tkk"]
[ext_resource type="PackedScene" uid="uid://dqsi0p3t8k43x" path="res://Scenes/crate.tscn" id="1_34u55"]
[ext_resource type="Script" path="res://Scripts/gamecontroller.gd" id="1_pru2w"]
2025-01-14 00:30:02 +00:00
[ext_resource type="PackedScene" uid="uid://5p0tso7jy35l" path="res://Scenes/player.tscn" id="3_d2fxm"]
[ext_resource type="Script" path="res://Scripts/Trigger.gd" id="3_wy0yn"]
[sub_resource type="RectangleShape2D" id="RectangleShape2D_nbgu3"]
size = Vector2(34, 14)
[sub_resource type="WorldBoundaryShape2D" id="WorldBoundaryShape2D_rywi2"]
[sub_resource type="CircleShape2D" id="CircleShape2D_5gjsm"]
radius = 60.0167
[node name="Game" type="Node2D"]
script = ExtResource("1_pru2w")
[node name="StaticBody2D" type="StaticBody2D" parent="."]
position = Vector2(565, 283)
metadata/_edit_group_ = true
[node name="CollisionShape2D" type="CollisionShape2D" parent="StaticBody2D"]
shape = SubResource("RectangleShape2D_nbgu3")
[node name="RigidBody2D" parent="." instance=ExtResource("1_34u55")]
position = Vector2(515, 226)
rotation = -0.722934
[node name="RigidBody2D2" parent="." instance=ExtResource("1_34u55")]
2025-01-14 00:30:02 +00:00
position = Vector2(286, 285)
rotation = 0.295972
[node name="RigidBody2D3" parent="." instance=ExtResource("1_34u55")]
position = Vector2(427, 201)
rotation = -2.25067
[node name="RigidBody2D4" parent="." instance=ExtResource("1_34u55")]
2025-01-14 00:30:02 +00:00
position = Vector2(224, 127)
[node name="RigidBody2D5" parent="." instance=ExtResource("1_34u55")]
position = Vector2(365, 241)
rotation = -0.505816
[node name="RigidBody2D6" parent="." instance=ExtResource("1_34u55")]
2025-01-14 00:30:02 +00:00
position = Vector2(104, 103)
rotation = 0.727138
[node name="Floor" type="StaticBody2D" parent="."]
position = Vector2(-5, 363)
metadata/_edit_group_ = true
[node name="CollisionShape2D" type="CollisionShape2D" parent="Floor"]
shape = SubResource("WorldBoundaryShape2D_rywi2")
2025-01-14 00:30:02 +00:00
[node name="Left Wall" type="StaticBody2D" parent="."]
position = Vector2(0, 245)
rotation = 1.5708
metadata/_edit_group_ = true
2025-01-14 00:30:02 +00:00
[node name="CollisionShape2D" type="CollisionShape2D" parent="Left Wall"]
shape = SubResource("WorldBoundaryShape2D_rywi2")
[node name="Right Wall" type="StaticBody2D" parent="."]
position = Vector2(841, 225)
rotation = 4.70835
metadata/_edit_group_ = true
[node name="CollisionShape2D" type="CollisionShape2D" parent="Right Wall"]
shape = SubResource("WorldBoundaryShape2D_rywi2")
[node name="CharacterBody2D" parent="." instance=ExtResource("3_d2fxm")]
[node name="Area2D" type="Area2D" parent="."]
position = Vector2(663, 356)
script = ExtResource("3_wy0yn")
metadata/_edit_group_ = true
[node name="CollisionShape2D" type="CollisionShape2D" parent="Area2D"]
shape = SubResource("CircleShape2D_5gjsm")
debug_color = Color(0.772082, 0.385918, 0.576998, 0.42)
[connection signal="areaTrigger" from="Area2D" to="." method="_on_trigger"]
[connection signal="body_entered" from="Area2D" to="Area2D" method="_on_body_entered"]