JanuaryGame/GodotProject/scenes/game.tscn

127 lines
3.5 KiB
Plaintext
Raw Normal View History

2025-01-21 01:44:30 +00:00
[gd_scene load_steps=13 format=3 uid="uid://cxnmaxykhbgaq"]
[ext_resource type="PackedScene" uid="uid://63qb2drh1l33" path="res://scenes/crate.tscn" id="1_0wmww"]
[ext_resource type="Script" path="res://scripts/gamecontroller.gd" id="1_5dy8j"]
[ext_resource type="Script" path="res://scripts/Trigger.gd" id="3_4laji"]
2025-01-14 00:30:20 +00:00
[ext_resource type="PackedScene" uid="uid://c1cuiluq1fcpk" path="res://scenes/player.tscn" id="3_w28al"]
2025-01-14 01:58:52 +00:00
[ext_resource type="PackedScene" uid="uid://c7v063yofnirp" path="res://scenes/bullet.tscn" id="5_drh85"]
[ext_resource type="Script" path="res://scripts/scene_manager.gd" id="6_duuox"]
2025-01-21 01:44:30 +00:00
[ext_resource type="Texture2D" uid="uid://c7gfcwmohp6th" path="res://assets/graphics/terrains/Terrain (32x32).png" id="7_ogiiy"]
[sub_resource type="RectangleShape2D" id="RectangleShape2D_f1luk"]
size = Vector2(172, 20)
[sub_resource type="WorldBoundaryShape2D" id="WorldBoundaryShape2D_k1pyx"]
[sub_resource type="CircleShape2D" id="CircleShape2D_wdyhk"]
radius = 34.1321
2025-01-21 01:44:30 +00:00
[sub_resource type="TileSetAtlasSource" id="TileSetAtlasSource_06fpy"]
texture = ExtResource("7_ogiiy")
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_51dbi"]
tile_size = Vector2i(32, 32)
sources/0 = SubResource("TileSetAtlasSource_06fpy")
[node name="game" type="Node2D"]
script = ExtResource("1_5dy8j")
[node name="StaticBody2D" type="StaticBody2D" parent="."]
2025-01-14 00:30:20 +00:00
position = Vector2(302, 430)
metadata/_edit_group_ = true
[node name="CollisionShape2D" type="CollisionShape2D" parent="StaticBody2D"]
shape = SubResource("RectangleShape2D_f1luk")
2025-01-14 00:30:20 +00:00
[node name="CharacterBody2D" parent="." instance=ExtResource("3_w28al")]
[node name="StaticBody2D2" type="StaticBody2D" parent="."]
position = Vector2(299, 490)
metadata/_edit_group_ = true
[node name="CollisionShape2D" type="CollisionShape2D" parent="StaticBody2D2"]
shape = SubResource("WorldBoundaryShape2D_k1pyx")
[node name="Trigger" type="Area2D" parent="."]
2025-01-14 00:30:20 +00:00
position = Vector2(736, 460)
script = ExtResource("3_4laji")
metadata/_edit_group_ = true
[node name="CollisionShape2D" type="CollisionShape2D" parent="Trigger"]
shape = SubResource("CircleShape2D_wdyhk")
debug_color = Color(0.466667, 0.592157, 0, 0.419608)
2025-01-14 01:58:52 +00:00
[node name="Area2D" parent="." instance=ExtResource("5_drh85")]
position = Vector2(49, 305)
[node name="SceneManager" type="Node" parent="."]
unique_name_in_owner = true
script = ExtResource("6_duuox")
2025-01-21 01:44:30 +00:00
[node name="crates" type="Node2D" parent="."]
[node name="RigidBody2D3" parent="crates" instance=ExtResource("1_0wmww")]
position = Vector2(256, 39)
[node name="RigidBody2D" parent="crates" instance=ExtResource("1_0wmww")]
position = Vector2(297, 129)
rotation = 0.688747
[node name="RigidBody2D2" parent="crates" instance=ExtResource("1_0wmww")]
position = Vector2(391, 64)
rotation = 0.358379
[node name="TileMapLayer" type="TileMapLayer" parent="."]
tile_set = SubResource("TileSet_51dbi")
[connection signal="alert" from="Trigger" to="." method="_on_trigger_alert"]
[connection signal="body_entered" from="Trigger" to="Trigger" method="_on_body_entered"]