GodotCourse/week1/GodotSpeedRun/scenes/game.tscn

94 lines
3.2 KiB
Plaintext
Raw Normal View History

2025-02-24 19:16:36 +00:00
[gd_scene load_steps=8 format=3 uid="uid://y083suj12rld"]
2024-07-15 17:09:25 +00:00
[ext_resource type="Script" path="res://scripts/gamecontroller.gd" id="1_77wyw"]
[ext_resource type="Script" path="res://scripts/CharacterBody2D.gd" id="1_u4sui"]
2025-02-24 19:16:36 +00:00
[ext_resource type="PackedScene" uid="uid://bqdsxxxm7gmj4" path="res://scenes/trigger.tscn" id="3_8dqk0"]
2024-07-15 17:09:25 +00:00
[sub_resource type="WorldBoundaryShape2D" id="WorldBoundaryShape2D_3u4a8"]
[sub_resource type="RectangleShape2D" id="RectangleShape2D_4vo4d"]
size = Vector2(55, 55)
[sub_resource type="RectangleShape2D" id="RectangleShape2D_cq7kj"]
size = Vector2(91, 20)
[sub_resource type="CircleShape2D" id="CircleShape2D_ubfw4"]
radius = 13.0384
[node name="Game" type="Node2D"]
script = ExtResource("1_77wyw")
2024-09-09 17:07:29 +00:00
[node name="SB_Boundary" type="StaticBody2D" parent="."]
2024-07-15 17:09:25 +00:00
position = Vector2(236, 415)
metadata/_edit_group_ = true
2024-09-09 17:07:29 +00:00
[node name="CollisionShape2D" type="CollisionShape2D" parent="SB_Boundary"]
2024-07-15 17:09:25 +00:00
shape = SubResource("WorldBoundaryShape2D_3u4a8")
2024-09-09 17:07:29 +00:00
[node name="RB_Crate" type="RigidBody2D" parent="."]
2025-02-24 16:07:59 +00:00
position = Vector2(141, 231)
2024-08-26 20:07:50 +00:00
rotation = 0.545383
metadata/_edit_group_ = true
2024-07-15 17:09:25 +00:00
2024-09-09 17:07:29 +00:00
[node name="CollisionShape2D" type="CollisionShape2D" parent="RB_Crate"]
2024-07-15 17:09:25 +00:00
shape = SubResource("RectangleShape2D_4vo4d")
debug_color = Color(0.815686, 0.4, 0.207843, 0.419608)
2025-02-24 16:07:59 +00:00
[node name="RB_Crate2" type="RigidBody2D" parent="."]
position = Vector2(531, 193)
rotation = 0.545383
metadata/_edit_group_ = true
[node name="CollisionShape2D" type="CollisionShape2D" parent="RB_Crate2"]
shape = SubResource("RectangleShape2D_4vo4d")
debug_color = Color(0.815686, 0.4, 0.207843, 0.419608)
2024-08-26 20:07:50 +00:00
[node name="level" type="Node2D" parent="."]
2024-07-15 17:09:25 +00:00
2024-08-26 20:07:50 +00:00
[node name="groundblock2" type="StaticBody2D" parent="level"]
position = Vector2(548, 315)
2024-07-15 17:09:25 +00:00
metadata/_edit_group_ = true
2024-08-26 20:07:50 +00:00
[node name="CollisionShape2D" type="CollisionShape2D" parent="level/groundblock2"]
2024-07-15 17:09:25 +00:00
position = Vector2(-1.5, 0)
shape = SubResource("RectangleShape2D_cq7kj")
2024-08-26 20:07:50 +00:00
[node name="groundblock3" type="StaticBody2D" parent="level"]
2025-02-24 16:07:59 +00:00
position = Vector2(404, 345)
2024-07-15 17:09:25 +00:00
metadata/_edit_group_ = true
2024-08-26 20:07:50 +00:00
[node name="CollisionShape2D" type="CollisionShape2D" parent="level/groundblock3"]
2024-07-15 17:09:25 +00:00
position = Vector2(-1.5, 0)
shape = SubResource("RectangleShape2D_cq7kj")
2024-08-26 20:07:50 +00:00
[node name="groundblock" type="StaticBody2D" parent="level"]
position = Vector2(124, 357)
2024-07-15 17:09:25 +00:00
metadata/_edit_group_ = true
2024-08-26 20:07:50 +00:00
[node name="CollisionShape2D" type="CollisionShape2D" parent="level/groundblock"]
2024-07-15 17:09:25 +00:00
position = Vector2(-1.5, 0)
shape = SubResource("RectangleShape2D_cq7kj")
2024-08-26 20:07:50 +00:00
[node name="groundblock4" type="StaticBody2D" parent="level"]
position = Vector2(91, 430)
scale = Vector2(3.76, 1)
2024-07-15 17:09:25 +00:00
metadata/_edit_group_ = true
2024-08-26 20:07:50 +00:00
[node name="CollisionShape2D" type="CollisionShape2D" parent="level/groundblock4"]
2024-07-15 17:09:25 +00:00
position = Vector2(-1.5, 0)
shape = SubResource("RectangleShape2D_cq7kj")
[node name="CharacterBody2D" type="CharacterBody2D" parent="."]
2025-02-24 16:07:59 +00:00
position = Vector2(82, 331)
2024-08-26 20:07:50 +00:00
collision_mask = 3
2024-07-15 17:09:25 +00:00
script = ExtResource("1_u4sui")
metadata/_edit_group_ = true
[node name="CollisionShape2D" type="CollisionShape2D" parent="CharacterBody2D"]
shape = SubResource("CircleShape2D_ubfw4")
2025-02-24 19:16:36 +00:00
[node name="Trigger" parent="." instance=ExtResource("3_8dqk0")]
effect = "destroy"
2024-07-15 17:09:25 +00:00
2025-02-24 19:16:36 +00:00
[connection signal="areatrigger" from="Trigger" to="." method="_on_area_2d_areatrigger"]