JanGodotGame/scenes/game.tscn

58 lines
2.1 KiB
Plaintext

[gd_scene load_steps=8 format=3 uid="uid://dhgts0kodsujx"]
[ext_resource type="PackedScene" uid="uid://djkjmi7bo58uv" path="res://scenes/crate.tscn" id="1_6shkr"]
[ext_resource type="Script" path="res://scripts/gameController.gd" id="1_7tjsy"]
[ext_resource type="PackedScene" uid="uid://b2hyqfqh02ep6" path="res://scenes/player.tscn" id="3_bssht"]
[ext_resource type="Script" path="res://scripts/trigger.gd" id="3_t4lk8"]
[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
[node name="Game" type="Node2D"]
script = ExtResource("1_7tjsy")
[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")
[node name="CharacterBody2D" parent="." instance=ExtResource("3_bssht")]
position = Vector2(188, 575)
[node name="Area2D" type="Area2D" parent="."]
position = Vector2(952, 434)
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)
[node name="RigidBody2D" parent="." groups=["pushables"] instance=ExtResource("1_6shkr")]
position = Vector2(209, 113)
rotation = 2.09219
[node name="RigidBody2D2" parent="." groups=["pushables"] instance=ExtResource("1_6shkr")]
position = Vector2(595, 192)
rotation = 4.86807
[node name="RigidBody2D3" parent="." groups=["pushables"] instance=ExtResource("1_6shkr")]
position = Vector2(373, 200)
rotation = -0.0982481
[connection signal="areaTrigger" from="Area2D" to="." method="_on_trigger"]
[connection signal="body_entered" from="Area2D" to="Area2D" method="_on_body_entered"]