FebruaryGame/februarygodotgame/scenes/game.tscn

110 lines
3.9 KiB
Plaintext
Raw Normal View History

[gd_scene load_steps=12 format=3 uid="uid://bt6uaac8wfn8k"]
2025-02-25 02:10:34 +00:00
[ext_resource type="Script" path="res://scripts/gamecontroller.gd" id="1_wwyby"]
[ext_resource type="PackedScene" uid="uid://bibqnht5dooss" path="res://scenes/trigger.tscn" id="2_psv8k"]
2025-03-04 01:40:21 +00:00
[ext_resource type="PackedScene" uid="uid://cjvyslsoa7olc" path="res://scenes/player.tscn" id="3_771dm"]
[ext_resource type="PackedScene" uid="uid://celwbq1syhdoa" path="res://scenes/crate.tscn" id="3_ek1d4"]
[ext_resource type="Script" path="res://scripts/crate.gd" id="4_5sp5n"]
2025-03-04 01:40:21 +00:00
[ext_resource type="PackedScene" uid="uid://b1jq6yi0dh3c0" path="res://scenes/bullet.tscn" id="4_a2pol"]
[ext_resource type="Script" path="res://scripts/scene_manager.gd" id="5_xhw0f"]
[sub_resource type="WorldBoundaryShape2D" id="WorldBoundaryShape2D_gmy8j"]
2025-02-25 02:10:34 +00:00
[sub_resource type="RectangleShape2D" id="RectangleShape2D_ggdp1"]
size = Vector2(72, 20)
[sub_resource type="CircleShape2D" id="CircleShape2D_opmvx"]
[sub_resource type="RectangleShape2D" id="RectangleShape2D_1ymsv"]
size = Vector2(20, 40)
2025-02-25 02:10:34 +00:00
2025-03-04 01:40:21 +00:00
[node name="Game" type="Node2D"]
script = ExtResource("1_wwyby")
2025-02-25 02:10:34 +00:00
2025-03-04 01:40:21 +00:00
[node name="StaticBody2D" type="StaticBody2D" parent="."]
position = Vector2(601, 500)
metadata/_edit_group_ = true
2025-02-25 02:10:34 +00:00
2025-03-04 01:40:21 +00:00
[node name="CollisionShape2D" type="CollisionShape2D" parent="StaticBody2D"]
shape = SubResource("WorldBoundaryShape2D_gmy8j")
2025-02-25 02:10:34 +00:00
2025-03-04 01:40:21 +00:00
[node name="level" type="Node2D" parent="."]
[node name="Brick" type="StaticBody2D" parent="level"]
2025-02-25 02:10:34 +00:00
position = Vector2(598, 444)
metadata/_edit_group_ = true
2025-03-04 01:40:21 +00:00
[node name="CollisionShape2D" type="CollisionShape2D" parent="level/Brick"]
2025-02-25 02:10:34 +00:00
shape = SubResource("RectangleShape2D_ggdp1")
2025-03-04 01:40:21 +00:00
[node name="Brick4" type="StaticBody2D" parent="level"]
2025-02-25 02:10:34 +00:00
position = Vector2(802, 440)
metadata/_edit_group_ = true
2025-03-04 01:40:21 +00:00
[node name="CollisionShape2D" type="CollisionShape2D" parent="level/Brick4"]
2025-02-25 02:10:34 +00:00
shape = SubResource("RectangleShape2D_ggdp1")
2025-03-04 01:40:21 +00:00
[node name="Brick3" type="StaticBody2D" parent="level"]
2025-02-25 02:10:34 +00:00
position = Vector2(706, 421)
metadata/_edit_group_ = true
2025-03-04 01:40:21 +00:00
[node name="CollisionShape2D" type="CollisionShape2D" parent="level/Brick3"]
2025-02-25 02:10:34 +00:00
shape = SubResource("RectangleShape2D_ggdp1")
2025-03-04 01:40:21 +00:00
[node name="Brick2" type="StaticBody2D" parent="level"]
2025-02-25 02:10:34 +00:00
position = Vector2(832, 195)
rotation = -0.802851
metadata/_edit_group_ = true
2025-03-04 01:40:21 +00:00
[node name="CollisionShape2D" type="CollisionShape2D" parent="level/Brick2"]
2025-02-25 02:10:34 +00:00
shape = SubResource("RectangleShape2D_ggdp1")
2025-03-04 01:40:21 +00:00
[node name="crates" type="Node2D" parent="."]
[node name="crate1" parent="crates" instance=ExtResource("3_ek1d4")]
position = Vector2(481, 369)
script = ExtResource("4_5sp5n")
2025-02-25 02:10:34 +00:00
[node name="crate2" parent="crates" instance=ExtResource("3_ek1d4")]
position = Vector2(534, 397)
rotation = 0.380482
script = ExtResource("4_5sp5n")
2025-02-25 02:10:34 +00:00
[node name="crate4" parent="crates" instance=ExtResource("3_ek1d4")]
position = Vector2(628, 345)
rotation = 0.380482
script = ExtResource("4_5sp5n")
2025-02-25 02:10:34 +00:00
[node name="crate3" parent="crates" instance=ExtResource("3_ek1d4")]
position = Vector2(695, 332)
rotation = -0.760964
script = ExtResource("4_5sp5n")
2025-02-25 02:10:34 +00:00
2025-03-04 01:40:21 +00:00
[node name="CharacterBody2D" parent="." instance=ExtResource("3_771dm")]
position = Vector2(461, 282)
2025-02-25 02:10:34 +00:00
2025-03-04 01:40:21 +00:00
[node name="Area2D" parent="." instance=ExtResource("4_a2pol")]
position = Vector2(284, 341)
2025-02-25 02:10:34 +00:00
2025-03-04 01:40:21 +00:00
[node name="SceneManager" type="Node" parent="."]
unique_name_in_owner = true
script = ExtResource("5_xhw0f")
2025-02-25 02:10:34 +00:00
[node name="triggers" type="Node2D" parent="."]
[node name="Trigger" parent="triggers" instance=ExtResource("2_psv8k")]
effect = "destroy"
[node name="CollisionShape2D" type="CollisionShape2D" parent="triggers/Trigger"]
shape = SubResource("CircleShape2D_opmvx")
debug_color = Color(0.731092, 0.294274, 0.91724, 0.42)
[node name="powerup" parent="triggers" instance=ExtResource("2_psv8k")]
position = Vector2(791, 407)
effect = "powerup"
[node name="CollisionShape2D" type="CollisionShape2D" parent="triggers/powerup"]
position = Vector2(0, -10)
shape = SubResource("RectangleShape2D_1ymsv")
debug_color = Color(0.156093, 0.622347, 0.484765, 0.42)