DariusGodotGame/dariusgodotproject/scenes/game.tscn

136 lines
3.7 KiB
Plaintext
Raw Normal View History

2025-01-21 01:44:44 +00:00
[gd_scene load_steps=13 format=3 uid="uid://dcmyx5g6dksl8"]
[ext_resource type="PackedScene" uid="uid://d1ej2kiy7jcpv" path="res://scenes/crate.tscn" id="1_uivx3"]
[ext_resource type="Script" path="res://scripts/gamecontroller.gd" id="1_vhl00"]
[ext_resource type="Script" path="res://scripts/trigger.gd" id="3_2qbah"]
2025-01-14 00:30:08 +00:00
[ext_resource type="PackedScene" uid="uid://b75mow511wmmb" path="res://scenes/player.tscn" id="3_8h5jv"]
2025-01-14 01:58:53 +00:00
[ext_resource type="PackedScene" uid="uid://dwfife67i1fmr" path="res://scenes/bullet.tscn" id="5_7yfvg"]
[ext_resource type="Script" path="res://scripts/scenemanager.gd" id="6_n2kp0"]
2025-01-21 01:44:44 +00:00
[ext_resource type="Texture2D" uid="uid://btdvc25chjgd" path="res://assets/graphics/terrains/Terrain (32x32).png" id="7_v20os"]
[sub_resource type="RectangleShape2D" id="RectangleShape2D_1cyeq"]
size = Vector2(101, 20)
[sub_resource type="WorldBoundaryShape2D" id="WorldBoundaryShape2D_bqh70"]
distance = -395.0
[sub_resource type="CircleShape2D" id="CircleShape2D_mfh1j"]
2025-01-21 01:44:44 +00:00
[sub_resource type="TileSetAtlasSource" id="TileSetAtlasSource_3ut3v"]
texture = ExtResource("7_v20os")
texture_region_size = Vector2i(32, 32)
0:0/0 = 0
1:0/0 = 0
2:0/0 = 0
4:0/0 = 0
6:0/0 = 0
7:0/0 = 0
9:0/0 = 0
10:0/0 = 0
12:0/0 = 0
13:0/0 = 0
15:0/0 = 0
0:1/0 = 0
1:1/0 = 0
2:1/0 = 0
4:1/0 = 0
6:1/0 = 0
7:1/0 = 0
9:1/0 = 0
10:1/0 = 0
12:1/0 = 0
13:1/0 = 0
15:1/0 = 0
16:1/0 = 0
0:2/0 = 0
1:2/0 = 0
2:2/0 = 0
4:2/0 = 0
6:3/0 = 0
7:3/0 = 0
9:3/0 = 0
10:3/0 = 0
12:3/0 = 0
13:3/0 = 0
15:3/0 = 0
16:3/0 = 0
0:4/0 = 0
1:4/0 = 0
2:4/0 = 0
4:4/0 = 0
6:4/0 = 0
7:4/0 = 0
9:4/0 = 0
10:4/0 = 0
12:4/0 = 0
13:4/0 = 0
15:4/0 = 0
16:4/0 = 0
[sub_resource type="TileSet" id="TileSet_ixl4j"]
tile_size = Vector2i(32, 32)
sources/0 = SubResource("TileSetAtlasSource_3ut3v")
[node name="Game" type="Node2D"]
script = ExtResource("1_vhl00")
[node name="StaticBody2D" type="StaticBody2D" parent="."]
position = Vector2(622, 343)
metadata/_edit_group_ = true
[node name="CollisionShape2D" type="CollisionShape2D" parent="StaticBody2D"]
position = Vector2(-0.5, 0)
shape = SubResource("RectangleShape2D_1cyeq")
[node name="floor" type="StaticBody2D" parent="."]
[node name="CollisionShape2D" type="CollisionShape2D" parent="floor"]
shape = SubResource("WorldBoundaryShape2D_bqh70")
2025-01-14 00:30:08 +00:00
[node name="CharacterBody2D" parent="." instance=ExtResource("3_8h5jv")]
[node name="Area2D" type="Area2D" parent="."]
position = Vector2(513, 319)
scale = Vector2(5, 5)
script = ExtResource("3_2qbah")
metadata/_edit_group_ = true
[node name="CollisionShape2D" type="CollisionShape2D" parent="Area2D"]
shape = SubResource("CircleShape2D_mfh1j")
debug_color = Color(0.825765, 0.00158581, 0.954354, 0.42)
2025-01-14 01:58:53 +00:00
[node name="Area2D2" parent="." instance=ExtResource("5_7yfvg")]
position = Vector2(309, 222)
[node name="SceneManager" type="Node" parent="."]
unique_name_in_owner = true
script = ExtResource("6_n2kp0")
2025-01-21 01:44:44 +00:00
[node name="crates" type="Node2D" parent="."]
[node name="RigidBody2D" parent="crates" instance=ExtResource("1_uivx3")]
position = Vector2(640, 228)
rotation = 0.806532
[node name="RigidBody2D5" parent="crates" instance=ExtResource("1_uivx3")]
position = Vector2(687, 174)
rotation = 0.806532
[node name="RigidBody2D2" parent="crates" instance=ExtResource("1_uivx3")]
position = Vector2(586, 297)
rotation = 0.806532
[node name="RigidBody2D3" parent="crates" instance=ExtResource("1_uivx3")]
position = Vector2(668, 276)
rotation = 0.806532
[node name="RigidBody2D4" parent="crates" instance=ExtResource("1_uivx3")]
position = Vector2(749, 242)
rotation = 0.806532
[node name="TileMapLayer" type="TileMapLayer" parent="."]
tile_set = SubResource("TileSet_ixl4j")
[connection signal="areaTrigger" from="Area2D" to="." method="_on_trigger"]
[connection signal="body_entered" from="Area2D" to="Area2D" method="_on_body_entered"]