JanGodotGame/scenes/game.tscn

130 lines
3.5 KiB
Plaintext
Raw Normal View History

2025-01-21 01:44:35 +00:00
[gd_scene load_steps=12 format=3 uid="uid://dhgts0kodsujx"]
2025-01-07 01:03:00 +00:00
[ext_resource type="PackedScene" uid="uid://djkjmi7bo58uv" path="res://scenes/crate.tscn" id="1_6shkr"]
2025-01-21 01:44:35 +00:00
[ext_resource type="Script" path="res://scripts/gameController.gd" id="1_50x63"]
[ext_resource type="Script" path="res://scripts/sceneManager.gd" id="1_ooich"]
2025-01-20 02:04:07 +00:00
[ext_resource type="PackedScene" uid="uid://b2hyqfqh02ep6" path="res://scenes/player.tscn" id="3_bssht"]
2025-01-07 01:03:00 +00:00
[ext_resource type="Script" path="res://scripts/trigger.gd" id="3_t4lk8"]
2025-01-21 01:44:35 +00:00
[ext_resource type="Texture2D" uid="uid://dktvd8atklmau" path="res://assets/graphics/terrains/Terrain (32x32).png" id="6_jpfcs"]
2025-01-07 01:03:00 +00:00
[sub_resource type="RectangleShape2D" id="RectangleShape2D_n7xvc"]
size = Vector2(92, 20)
[sub_resource type="WorldBoundaryShape2D" id="WorldBoundaryShape2D_gasd3"]
distance = -484.0
[sub_resource type="CircleShape2D" id="CircleShape2D_5ph8t"]
radius = 62.0
2025-01-21 01:44:35 +00:00
[sub_resource type="TileSetAtlasSource" id="TileSetAtlasSource_v72u6"]
texture = ExtResource("6_jpfcs")
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_fj5fk"]
tile_size = Vector2i(32, 32)
sources/0 = SubResource("TileSetAtlasSource_v72u6")
2025-01-07 01:03:00 +00:00
[node name="Game" type="Node2D"]
2025-01-21 01:44:35 +00:00
script = ExtResource("1_50x63")
2025-01-07 01:03:00 +00:00
[node name="firstPlatform" type="StaticBody2D" parent="."]
position = Vector2(595, 310)
metadata/_edit_group_ = true
[node name="CollisionShape2D" type="CollisionShape2D" parent="firstPlatform"]
shape = SubResource("RectangleShape2D_n7xvc")
[node name="Floor" type="StaticBody2D" parent="."]
[node name="CollisionShape2D" type="CollisionShape2D" parent="Floor"]
shape = SubResource("WorldBoundaryShape2D_gasd3")
2025-01-20 02:04:07 +00:00
[node name="CharacterBody2D" parent="." instance=ExtResource("3_bssht")]
2025-01-21 01:44:35 +00:00
position = Vector2(174, 430)
2025-01-07 01:03:00 +00:00
[node name="Area2D" type="Area2D" parent="."]
2025-01-07 01:34:02 +00:00
position = Vector2(952, 434)
2025-01-07 01:03:00 +00:00
script = ExtResource("3_t4lk8")
metadata/_edit_group_ = true
[node name="CollisionShape2D" type="CollisionShape2D" parent="Area2D"]
shape = SubResource("CircleShape2D_5ph8t")
debug_color = Color(0.630721, 0.529414, 1.92523e-07, 0.42)
2025-01-21 01:44:35 +00:00
[node name="SceneManager" type="Node" parent="."]
unique_name_in_owner = true
script = ExtResource("1_ooich")
[node name="crates" type="Node2D" parent="."]
[node name="RigidBody2D4" parent="crates" instance=ExtResource("1_6shkr")]
position = Vector2(603, 24)
[node name="RigidBody2D" parent="crates" groups=["pushables"] instance=ExtResource("1_6shkr")]
2025-01-20 02:04:07 +00:00
position = Vector2(209, 113)
rotation = 2.09219
2025-01-21 01:44:35 +00:00
[node name="RigidBody2D2" parent="crates" groups=["pushables"] instance=ExtResource("1_6shkr")]
2025-01-20 02:04:07 +00:00
position = Vector2(595, 192)
2025-01-21 01:44:35 +00:00
rotation = -1.41512
2025-01-20 02:04:07 +00:00
2025-01-21 01:44:35 +00:00
[node name="RigidBody2D3" parent="crates" groups=["pushables"] instance=ExtResource("1_6shkr")]
2025-01-20 02:04:07 +00:00
position = Vector2(373, 200)
rotation = -0.0982481
2025-01-07 01:34:02 +00:00
2025-01-21 01:44:35 +00:00
[node name="RigidBody2D5" parent="crates" instance=ExtResource("1_6shkr")]
position = Vector2(251, 69)
[node name="TileMapLayer" type="TileMapLayer" parent="."]
tile_set = SubResource("TileSet_fj5fk")
2025-01-07 01:34:02 +00:00
[connection signal="areaTrigger" from="Area2D" to="." method="_on_trigger"]
2025-01-07 01:03:00 +00:00
[connection signal="body_entered" from="Area2D" to="Area2D" method="_on_body_entered"]