FebruaryGame/februarygodotgame/scenes/game.tscn

95 lines
3.3 KiB
Plaintext
Raw Normal View History

2025-03-04 01:40:27 +00:00
[gd_scene load_steps=10 format=3 uid="uid://dhopuj38ic6dp"]
2025-02-25 02:10:17 +00:00
[ext_resource type="Script" path="res://scripts/trigger.gd" id="1_7cb3s"]
[ext_resource type="Script" path="res://scripts/gamecontroller.gd" id="1_dasmg"]
2025-03-04 01:40:27 +00:00
[ext_resource type="PackedScene" uid="uid://du8aftivw4k25" path="res://scenes/player.tscn" id="3_glxkt"]
[ext_resource type="PackedScene" uid="uid://dwy0c50ndnu8k" path="res://scenes/bullet.tscn" id="4_2bgno"]
[ext_resource type="Script" path="res://scripts/scene_manager.gd" id="5_6wvkt"]
[sub_resource type="CircleShape2D" id="CircleShape2D_ox8o7"]
radius = 31.0161
2025-02-25 02:10:17 +00:00
[sub_resource type="RectangleShape2D" id="RectangleShape2D_uopew"]
size = Vector2(70, 26)
2025-03-04 01:40:27 +00:00
[sub_resource type="WorldBoundaryShape2D" id="WorldBoundaryShape2D_igau3"]
2025-02-25 02:10:17 +00:00
[sub_resource type="RectangleShape2D" id="RectangleShape2D_oospb"]
size = Vector2(43.1503, 26)
2025-03-04 01:40:27 +00:00
[node name="Game" type="Node2D"]
script = ExtResource("1_dasmg")
2025-02-25 02:10:17 +00:00
2025-03-04 01:40:27 +00:00
[node name="Trigger" type="Area2D" parent="."]
position = Vector2(570, 452)
script = ExtResource("1_7cb3s")
metadata/_edit_group_ = true
2025-02-25 02:10:17 +00:00
2025-03-04 01:40:27 +00:00
[node name="CollisionShape2D" type="CollisionShape2D" parent="Trigger"]
shape = SubResource("CircleShape2D_ox8o7")
debug_color = Color(0.448323, 0.465614, 0.961841, 0.42)
2025-02-25 02:10:17 +00:00
2025-03-04 01:40:27 +00:00
[node name="Level" type="Node2D" parent="."]
2025-02-25 02:10:17 +00:00
2025-03-04 01:40:27 +00:00
[node name="StaticBody2D" type="StaticBody2D" parent="Level"]
2025-02-25 02:10:17 +00:00
position = Vector2(525, 412)
metadata/_edit_group_ = true
2025-03-04 01:40:27 +00:00
[node name="CollisionShape2D" type="CollisionShape2D" parent="Level/StaticBody2D"]
2025-02-25 02:10:17 +00:00
position = Vector2(-26, 3)
shape = SubResource("RectangleShape2D_uopew")
2025-03-04 01:40:27 +00:00
[node name="StaticBody2D3" type="StaticBody2D" parent="Level"]
2025-02-25 02:10:17 +00:00
position = Vector2(525, 412)
rotation = 2.16668
metadata/_edit_group_ = true
2025-03-04 01:40:27 +00:00
[node name="CollisionShape2D" type="CollisionShape2D" parent="Level/StaticBody2D3"]
2025-02-25 02:10:17 +00:00
position = Vector2(-26, 3)
shape = SubResource("RectangleShape2D_uopew")
2025-03-04 01:40:27 +00:00
[node name="StaticBody2D2" type="StaticBody2D" parent="Level"]
position = Vector2(11, 464)
2025-02-25 02:10:17 +00:00
metadata/_edit_group_ = true
2025-03-04 01:40:27 +00:00
[node name="CollisionShape2D" type="CollisionShape2D" parent="Level/StaticBody2D2"]
position = Vector2(518, 20)
shape = SubResource("WorldBoundaryShape2D_igau3")
[node name="crates" type="Node2D" parent="."]
2025-02-25 02:10:17 +00:00
2025-03-04 01:40:27 +00:00
[node name="crate2" type="RigidBody2D" parent="crates"]
2025-02-25 02:10:17 +00:00
position = Vector2(616, 580)
rotation = -0.385715
metadata/_edit_group_ = true
2025-03-04 01:40:27 +00:00
[node name="CollisionShape2D" type="CollisionShape2D" parent="crates/crate2"]
2025-02-25 02:10:17 +00:00
position = Vector2(107.026, -85.1608)
shape = SubResource("RectangleShape2D_oospb")
debug_color = Color(0.907205, 0.191988, 0.583153, 0.42)
2025-03-04 01:40:27 +00:00
[node name="crate1" type="RigidBody2D" parent="crates"]
position = Vector2(193, 264)
rotation = 0.807772
2025-02-25 02:10:17 +00:00
metadata/_edit_group_ = true
2025-03-04 01:40:27 +00:00
[node name="CollisionShape2D" type="CollisionShape2D" parent="crates/crate1"]
position = Vector2(23.712, 8.64544)
rotation = -1.01686
scale = Vector2(2.89246, 1)
shape = SubResource("RectangleShape2D_oospb")
debug_color = Color(0.907205, 0.191988, 0.583153, 0.42)
2025-02-25 02:10:17 +00:00
2025-03-04 01:40:27 +00:00
[node name="CharacterBody2D" parent="." instance=ExtResource("3_glxkt")]
position = Vector2(338, 226)
2025-02-25 02:10:17 +00:00
2025-03-04 01:40:27 +00:00
[node name="Area2D" parent="." instance=ExtResource("4_2bgno")]
position = Vector2(330, 271)
2025-02-25 02:10:17 +00:00
2025-03-04 01:40:27 +00:00
[node name="SceneManager" type="Node" parent="."]
unique_name_in_owner = true
script = ExtResource("5_6wvkt")
2025-02-25 02:10:17 +00:00
[connection signal="areaTrigger" from="Trigger" to="." method="_on_trigger_area_trigger"]
[connection signal="body_entered" from="Trigger" to="Trigger" method="_on_body_entered"]