-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathicoCC54.tmp
More file actions
95 lines (77 loc) · 3.41 KB
/
icoCC54.tmp
File metadata and controls
95 lines (77 loc) · 3.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[gd_scene load_steps=14 format=3 uid="uid://b1rqqic2y67q4"]
[ext_resource type="Script" path="res://nivel.gd" id="1_20c3v"]
[ext_resource type="Script" path="res://jugador.gd" id="2_2fefo"]
[ext_resource type="Script" path="res://barra_oxigeno.gd" id="4_vq5pf"]
[ext_resource type="AudioStream" uid="uid://cdbd4ralivolb" path="res://Sonidos/Bluezone_BC0292_alien_tripod_texture_organic_liquid_005.wav" id="4_wrkxb"]
[ext_resource type="Texture2D" uid="uid://cf175m2e8wje6" path="res://sprites/enemy_test.PNG" id="6_n0dru"]
[ext_resource type="Script" path="res://enemigo.gd" id="7_1601l"]
[ext_resource type="Texture2D" uid="uid://dcbj3hknl31t3" path="res://sprites/posicion_burbuja_normal_PNG.webp" id="16_deiyk"]
[sub_resource type="Animation" id="Animation_vosub"]
resource_name = "animacion_jugador"
loop_mode = 1
[sub_resource type="AnimationLibrary" id="AnimationLibrary_cm3vv"]
_data = {
"animacion_jugador": SubResource("Animation_vosub")
}
[sub_resource type="CircleShape2D" id="CircleShape2D_6raf3"]
radius = 125.3
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_581gq"]
bg_color = Color(0.150258, 0.189192, 0.225234, 0.403922)
corner_radius_top_left = 10
corner_radius_top_right = 10
corner_radius_bottom_right = 10
corner_radius_bottom_left = 10
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_jmske"]
bg_color = Color(0.0672095, 0.343295, 0.145464, 1)
corner_radius_top_left = 10
corner_radius_top_right = 10
corner_radius_bottom_right = 10
corner_radius_bottom_left = 10
[sub_resource type="RectangleShape2D" id="RectangleShape2D_ox1un"]
size = Vector2(434.88, 395.236)
[node name="Nivel" type="Node2D"]
position = Vector2(-7, 7)
script = ExtResource("1_20c3v")
[node name="AnimationPlayer" type="AnimationPlayer" parent="."]
libraries = {
"": SubResource("AnimationLibrary_cm3vv")
}
autoplay = "animacion_jugador"
[node name="Burbuja" type="Sprite2D" parent="."]
position = Vector2(378, 318)
texture = ExtResource("16_deiyk")
script = ExtResource("2_2fefo")
[node name="BurbujaArea" type="Area2D" parent="Burbuja"]
collision_mask = 2
[node name="CollisionShape2D" type="CollisionShape2D" parent="Burbuja/BurbujaArea"]
position = Vector2(-2, -31)
shape = SubResource("CircleShape2D_6raf3")
debug_color = Color(0.839185, 0.384421, 0, 0.42)
[node name="AudioStreamPlayer" type="AudioStreamPlayer" parent="."]
stream = ExtResource("4_wrkxb")
[node name="BarraOxigeno" type="ProgressBar" parent="."]
anchors_preset = -1
anchor_left = -0.082
anchor_right = -0.082
offset_left = 897.0
offset_top = 18.0
offset_right = 1098.0
offset_bottom = 51.0
theme_override_styles/background = SubResource("StyleBoxFlat_581gq")
theme_override_styles/fill = SubResource("StyleBoxFlat_jmske")
value = 100.0
script = ExtResource("4_vq5pf")
[node name="Enemigo" type="Sprite2D" parent="."]
position = Vector2(881, 285)
scale = Vector2(0.347222, 0.361809)
texture = ExtResource("6_n0dru")
script = ExtResource("7_1601l")
[node name="EnemigoArea" type="Area2D" parent="Enemigo"]
position = Vector2(-53, -96)
collision_layer = 2
[node name="CollisionShape2D" type="CollisionShape2D" parent="Enemigo/EnemigoArea"]
position = Vector2(51.5603, 97.382)
shape = SubResource("RectangleShape2D_ox1un")
debug_color = Color(0.78175, 0.435474, 0.026181, 0.42)
[connection signal="area_entered" from="Burbuja/BurbujaArea" to="Burbuja" method="_on_burbuja_area_area_entered"]
[connection signal="area_entered" from="Enemigo/EnemigoArea" to="Burbuja" method="_on_enemigo_area_area_entered"]