-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.godot
243 lines (229 loc) · 9.41 KB
/
project.godot
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
; Engine configuration file.
; It's best edited using the editor UI and not directly,
; since the parameters that go here are not all obvious.
;
; Format:
; [section] ; section goes between []
; param=value ; assign values to parameters
config_version=4
_global_script_classes=[ {
"base": "Node2D",
"class": "BaseEnemiga",
"language": "GDScript",
"path": "res://Juego/Estaciones/BaseEnemiga.gd"
}, {
"base": "Camera2D",
"class": "CamaraJuego",
"language": "GDScript",
"path": "res://Juego/Niveles/CamaraJuego.gd"
}, {
"base": "CamaraJuego",
"class": "CamaraPlayer",
"language": "GDScript",
"path": "res://Juego/Naves/Player/CamaraPlayer.gd"
}, {
"base": "Node2D",
"class": "Canion",
"language": "GDScript",
"path": "res://Juego/Proyectiles/Canion.gd"
}, {
"base": "NaveBase",
"class": "EnemigoBase",
"language": "GDScript",
"path": "res://Juego/Naves/Enemigos/EnemigoBase.gd"
}, {
"base": "EnemigoBase",
"class": "EnemigoInterceptor",
"language": "GDScript",
"path": "res://Juego/Naves/Enemigos/EnemigoInterceptor.gd"
}, {
"base": "EnemigoBase",
"class": "EnemigoOrbital",
"language": "GDScript",
"path": "res://Juego/Naves/Enemigos/EnemigoOrbital.gd"
}, {
"base": "Area2D",
"class": "Escudo",
"language": "GDScript",
"path": "res://Juego/Naves/Player/Escudo.gd"
}, {
"base": "Node2D",
"class": "EstacionRecarga",
"language": "GDScript",
"path": "res://Juego/Estaciones/EstacionRecarga.gd"
}, {
"base": "Line2D",
"class": "Estela",
"language": "GDScript",
"path": "res://Juego/Naves/Player/Estela/Trail2D.gd"
}, {
"base": "Node2D",
"class": "ExplosionMeteorito",
"language": "GDScript",
"path": "res://Juego/Explosiones/ExplosionMeteorito.gd"
}, {
"base": "RigidBody2D",
"class": "Meteorito",
"language": "GDScript",
"path": "res://Juego/Meteoritos/Meteorito.gd"
}, {
"base": "Position2D",
"class": "MeteoritoSpawner",
"language": "GDScript",
"path": "res://Juego/Meteoritos/MeteoritoSpawner.gd"
}, {
"base": "AudioStreamPlayer2D",
"class": "Motor",
"language": "GDScript",
"path": "res://Juego/Naves/Player/Motor/MotorSFX.gd"
}, {
"base": "RigidBody2D",
"class": "NaveBase",
"language": "GDScript",
"path": "res://Juego/Naves/NaveBase.gd"
}, {
"base": "Node2D",
"class": "Nivel",
"language": "GDScript",
"path": "res://Juego/Niveles/Nivel.gd"
}, {
"base": "NaveBase",
"class": "Player",
"language": "GDScript",
"path": "res://Juego/Naves/Player/Player.gd"
}, {
"base": "Area2D",
"class": "Proyectil",
"language": "GDScript",
"path": "res://Juego/Proyectiles/Proyectil.gd"
}, {
"base": "RayCast2D",
"class": "RayoLaser",
"language": "GDScript",
"path": "res://Juego/Proyectiles/Laser/LaserBeam2D.gd"
}, {
"base": "Node2D",
"class": "ReleMasa",
"language": "GDScript",
"path": "res://Juego/Estaciones/ReleMasa.gd"
}, {
"base": "Node2D",
"class": "SectorMeteoritos",
"language": "GDScript",
"path": "res://Juego/Meteoritos/SectorMeteoritos.gd"
} ]
_global_script_class_icons={
"BaseEnemiga": "",
"CamaraJuego": "",
"CamaraPlayer": "",
"Canion": "",
"EnemigoBase": "",
"EnemigoInterceptor": "",
"EnemigoOrbital": "",
"Escudo": "",
"EstacionRecarga": "",
"Estela": "",
"ExplosionMeteorito": "",
"Meteorito": "",
"MeteoritoSpawner": "",
"Motor": "",
"NaveBase": "",
"Nivel": "",
"Player": "",
"Proyectil": "",
"RayoLaser": "",
"ReleMasa": "",
"SectorMeteoritos": ""
}
[application]
config/name="Meteoritos"
run/main_scene="res://Juego/Proyectiles/NivelTest.tscn"
config/icon="res://icono_juego.png"
[autoload]
Eventos="*res://Juego/Autoloads/Eventos.gd"
DatosJuego="*res://Juego/Autoloads/DatosJuego.gd"
[display]
window/size/width=1920
window/size/height=1080
window/size/resizable=false
window/size/always_on_top=true
window/size/test_width=1280
window/size/test_height=720
window/stretch/mode="2d"
window/stretch/aspect="keep"
[input]
mover_adelante={
"deadzone": 0.5,
"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":87,"unicode":0,"echo":false,"script":null)
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777232,"unicode":0,"echo":false,"script":null)
]
}
mover_atras={
"deadzone": 0.5,
"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":83,"unicode":0,"echo":false,"script":null)
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777234,"unicode":0,"echo":false,"script":null)
]
}
rotar_horario={
"deadzone": 0.5,
"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":68,"unicode":0,"echo":false,"script":null)
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777233,"unicode":0,"echo":false,"script":null)
]
}
rotar_antihorario={
"deadzone": 0.5,
"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":65,"unicode":0,"echo":false,"script":null)
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777231,"unicode":0,"echo":false,"script":null)
]
}
disparo_principal={
"deadzone": 0.5,
"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":32,"unicode":0,"echo":false,"script":null)
, Object(InputEventMouseButton,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"button_mask":0,"position":Vector2( 0, 0 ),"global_position":Vector2( 0, 0 ),"factor":1.0,"button_index":1,"pressed":false,"doubleclick":false,"script":null)
]
}
disparo_secundario={
"deadzone": 0.5,
"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777240,"unicode":0,"echo":false,"script":null)
, Object(InputEventMouseButton,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"button_mask":0,"position":Vector2( 0, 0 ),"global_position":Vector2( 0, 0 ),"factor":1.0,"button_index":2,"pressed":false,"doubleclick":false,"script":null)
]
}
escudo={
"deadzone": 0.5,
"events": [ Object(InputEventMouseButton,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"button_mask":0,"position":Vector2( 0, 0 ),"global_position":Vector2( 0, 0 ),"factor":1.0,"button_index":3,"pressed":false,"doubleclick":false,"script":null)
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":81,"unicode":0,"echo":false,"script":null)
]
}
zoom_acercar={
"deadzone": 0.5,
"events": [ Object(InputEventMouseButton,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"button_mask":0,"position":Vector2( 0, 0 ),"global_position":Vector2( 0, 0 ),"factor":1.0,"button_index":4,"pressed":false,"doubleclick":false,"script":null)
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":90,"unicode":0,"echo":false,"script":null)
]
}
zoom_alejar={
"deadzone": 0.5,
"events": [ Object(InputEventMouseButton,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"button_mask":0,"position":Vector2( 0, 0 ),"global_position":Vector2( 0, 0 ),"factor":1.0,"button_index":5,"pressed":false,"doubleclick":false,"script":null)
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":88,"unicode":0,"echo":false,"script":null)
]
}
recarga_escudo={
"deadzone": 0.5,
"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":82,"unicode":0,"echo":false,"script":null)
]
}
recarga_laser={
"deadzone": 0.5,
"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":69,"unicode":0,"echo":false,"script":null)
]
}
[layer_names]
2d_physics/layer_1="player"
2d_physics/layer_2="enemigo"
2d_physics/layer_3="meteorito"
2d_physics/layer_4="proyectil_player"
2d_physics/layer_5="proyectil_enemigo"
2d_physics/layer_6="base_enemiga"
[rendering]
quality/driver/driver_name="GLES2"
vram_compression/import_etc=true
vram_compression/import_etc2=false