JanuaryGodotGame/januaryproject/scenes/game.tscn

70 lines
2.4 KiB
Plaintext
Raw Normal View History

2025-01-13 22:28:11 +00:00
[gd_scene load_steps=8 format=3 uid="uid://r8jj43l4t6is"]
[ext_resource type="Script" path="res://scripts/gamecontroller.gd" id="1_8i1rq"]
[ext_resource type="PackedScene" uid="uid://di3tq4f0xmdqc" path="res://scenes/crate.tscn" id="1_tfj4n"]
2025-01-13 22:28:11 +00:00
[ext_resource type="PackedScene" uid="uid://xq3wqrcyvdhn" path="res://scenes/player.tscn" id="3_0kw1i"]
[ext_resource type="Script" path="res://scripts/trigger.gd" id="3_hm0br"]
[sub_resource type="RectangleShape2D" id="RectangleShape2D_jk5qv"]
size = Vector2(66, 20)
[sub_resource type="WorldBoundaryShape2D" id="WorldBoundaryShape2D_acecj"]
distance = -430.0
[sub_resource type="CircleShape2D" id="CircleShape2D_8j7te"]
radius = 29.0
[node name="Game" type="Node2D"]
script = ExtResource("1_8i1rq")
[node name="StaticBody2D" type="StaticBody2D" parent="."]
position = Vector2(542, 371)
metadata/_edit_group_ = true
[node name="CollisionShape2D" type="CollisionShape2D" parent="StaticBody2D"]
shape = SubResource("RectangleShape2D_jk5qv")
2025-01-13 22:28:11 +00:00
[node name="StaticBody2D2" type="StaticBody2D" parent="."]
position = Vector2(740, 416)
metadata/_edit_group_ = true
[node name="CollisionShape2D" type="CollisionShape2D" parent="StaticBody2D2"]
shape = SubResource("RectangleShape2D_jk5qv")
[node name="RigidBody2D" parent="." instance=ExtResource("1_tfj4n")]
position = Vector2(526, 297)
rotation = 2.0228
[node name="RigidBody2D2" parent="." instance=ExtResource("1_tfj4n")]
position = Vector2(509, 216)
[node name="RigidBody2D3" parent="." instance=ExtResource("1_tfj4n")]
position = Vector2(576, 241)
rotation = -1.0315
[node name="RigidBody2D4" parent="." instance=ExtResource("1_tfj4n")]
position = Vector2(540, 178)
rotation = 0.0531393
[node name="floor" type="StaticBody2D" parent="."]
[node name="CollisionShape2D" type="CollisionShape2D" parent="floor"]
shape = SubResource("WorldBoundaryShape2D_acecj")
2025-01-13 22:28:11 +00:00
[node name="CharacterBody2D" parent="." instance=ExtResource("3_0kw1i")]
position = Vector2(554, 334)
[node name="Area2D" type="Area2D" parent="."]
position = Vector2(597, 419)
script = ExtResource("3_hm0br")
metadata/_edit_group_ = true
[node name="CollisionShape2D" type="CollisionShape2D" parent="Area2D"]
shape = SubResource("CircleShape2D_8j7te")
debug_color = Color(0.827271, 0.252084, 0.761388, 0.42)
2025-01-13 22:28:11 +00:00
[node name="SceneManager" type="Node" parent="."]
[connection signal="areaTrigger" from="Area2D" to="." method="_on_trigger"]
[connection signal="body_entered" from="Area2D" to="Area2D" method="_on_body_entered"]