generated from SGDA/GodotExampleProject
Compare commits
5 Commits
v0.1.16
...
7d9dfc40a6
Author | SHA1 | Date | |
---|---|---|---|
7d9dfc40a6 | |||
cc93f8dfc4 | |||
de8079f0da | |||
ad040b4940 | |||
5275d63aa9 |
BIN
assets/garance/EGJ-Green-tiles.png
(Stored with Git LFS)
Normal file
BIN
assets/garance/EGJ-Green-tiles.png
(Stored with Git LFS)
Normal file
Binary file not shown.
34
assets/garance/EGJ-Green-tiles.png.import
Normal file
34
assets/garance/EGJ-Green-tiles.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://lqn1agbqybrv"
|
||||||
|
path="res://.godot/imported/EGJ-Green-tiles.png-1c52bebef5d392ae5c1aa00936fe3f02.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://assets/garance/EGJ-Green-tiles.png"
|
||||||
|
dest_files=["res://.godot/imported/EGJ-Green-tiles.png-1c52bebef5d392ae5c1aa00936fe3f02.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
BIN
assets/garance/EGJ-PriseElectrique.png
(Stored with Git LFS)
Normal file
BIN
assets/garance/EGJ-PriseElectrique.png
(Stored with Git LFS)
Normal file
Binary file not shown.
34
assets/garance/EGJ-PriseElectrique.png.import
Normal file
34
assets/garance/EGJ-PriseElectrique.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://bc3tdjrupw6vf"
|
||||||
|
path="res://.godot/imported/EGJ-PriseElectrique.png-a8fa4eaee2608b011ea3ea9509ee8c06.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://assets/garance/EGJ-PriseElectrique.png"
|
||||||
|
dest_files=["res://.godot/imported/EGJ-PriseElectrique.png-a8fa4eaee2608b011ea3ea9509ee8c06.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
@ -24,12 +24,24 @@ var current_info = 0
|
|||||||
@onready var vo_player_10: AudioStreamPlayer2D = $RightDoor/VOPlayer10
|
@onready var vo_player_10: AudioStreamPlayer2D = $RightDoor/VOPlayer10
|
||||||
@onready var vo_player_11: AudioStreamPlayer2D = $RightDoor/VOPlayer11
|
@onready var vo_player_11: AudioStreamPlayer2D = $RightDoor/VOPlayer11
|
||||||
@onready var vo_player_12: AudioStreamPlayer2D = $RightDoor/VOPlayer12
|
@onready var vo_player_12: AudioStreamPlayer2D = $RightDoor/VOPlayer12
|
||||||
|
var vo_players: Array[AudioStreamPlayer2D] = []
|
||||||
|
|
||||||
# Called when the node enters the scene tree for the first time.
|
# Called when the node enters the scene tree for the first time.
|
||||||
func _ready() -> void:
|
func _ready() -> void:
|
||||||
GUIDE.enable_mapping_context(base_mode)
|
GUIDE.enable_mapping_context(base_mode)
|
||||||
|
|
||||||
|
vo_players.append(vo_player_1)
|
||||||
|
vo_players.append(vo_player_2)
|
||||||
|
vo_players.append(vo_player_3)
|
||||||
|
vo_players.append(vo_player_4)
|
||||||
|
vo_players.append(vo_player_5)
|
||||||
|
vo_players.append(vo_player_6)
|
||||||
|
vo_players.append(vo_player_7)
|
||||||
|
vo_players.append(vo_player_8)
|
||||||
|
vo_players.append(vo_player_9)
|
||||||
|
vo_players.append(vo_player_10)
|
||||||
|
vo_players.append(vo_player_11)
|
||||||
|
vo_players.append(vo_player_12)
|
||||||
|
|
||||||
func _on_interactible_triggered(event_id: String) -> void:
|
func _on_interactible_triggered(event_id: String) -> void:
|
||||||
interact.play()
|
interact.play()
|
||||||
@ -52,34 +64,10 @@ func _on_timer_between_vo_timeout() -> void:
|
|||||||
is_interjection_next = not is_interjection_next
|
is_interjection_next = not is_interjection_next
|
||||||
return
|
return
|
||||||
|
|
||||||
if current_info > 12:
|
if current_info >= len(vo_players):
|
||||||
return
|
return
|
||||||
|
|
||||||
if current_info == 0:
|
vo_players[current_info].play()
|
||||||
vo_player_1.play()
|
|
||||||
if current_info == 1:
|
|
||||||
vo_player_2.play()
|
|
||||||
if current_info == 2:
|
|
||||||
vo_player_3.play()
|
|
||||||
if current_info == 3:
|
|
||||||
vo_player_4.play()
|
|
||||||
if current_info == 4:
|
|
||||||
vo_player_5.play()
|
|
||||||
if current_info == 5:
|
|
||||||
vo_player_6.play()
|
|
||||||
if current_info == 6:
|
|
||||||
vo_player_7.play()
|
|
||||||
if current_info == 7:
|
|
||||||
vo_player_8.play()
|
|
||||||
if current_info == 8:
|
|
||||||
vo_player_9.play()
|
|
||||||
if current_info == 9:
|
|
||||||
vo_player_10.play()
|
|
||||||
if current_info == 10:
|
|
||||||
vo_player_11.play()
|
|
||||||
if current_info == 11:
|
|
||||||
vo_player_12.play()
|
|
||||||
|
|
||||||
current_info += 1
|
current_info += 1
|
||||||
is_interjection_next = not is_interjection_next
|
is_interjection_next = not is_interjection_next
|
||||||
|
|
||||||
|
File diff suppressed because one or more lines are too long
@ -7,26 +7,96 @@ extends Node2D
|
|||||||
|
|
||||||
@export var vies = 3
|
@export var vies = 3
|
||||||
|
|
||||||
|
@onready var lights: Node2D = $Lights
|
||||||
|
|
||||||
|
@onready var wrong_hack: Interactible = %WrongHack
|
||||||
|
@onready var right_hack: Interactible = %RightHack
|
||||||
|
|
||||||
|
@onready var wrong_door: Interactible = $GetOutDoors/WrongDoor
|
||||||
|
@onready var right_door: Interactible = $GetOutDoors/RightDoor
|
||||||
|
|
||||||
|
@onready var timer_between_vo: Timer = $TimerBetweenVO
|
||||||
|
var is_interjection_next = false
|
||||||
|
var current_info: int = 0
|
||||||
|
|
||||||
|
@onready var vo_prise_tiree: AudioStreamPlayer2D = $Hack/VOPriseTiree
|
||||||
|
@onready var vo_interjection: AudioStreamPlayer2D = $Hack/VOInterjection
|
||||||
|
@onready var interact: AudioStreamPlayer2D = $Player/Interact
|
||||||
|
@onready var vo_trop_proche: AudioStreamPlayer2D = $Hack/VOTropProche
|
||||||
|
@onready var vo_player_1: AudioStreamPlayer2D = $Hack/VOPlayer1
|
||||||
|
@onready var vo_player_2: AudioStreamPlayer2D = $Hack/VOPlayer2
|
||||||
|
@onready var vo_player_3: AudioStreamPlayer2D = $Hack/VOPlayer3
|
||||||
|
@onready var vo_player_4: AudioStreamPlayer2D = $Hack/VOPlayer4
|
||||||
|
@onready var vo_player_5: AudioStreamPlayer2D = $Hack/VOPlayer5
|
||||||
|
@onready var vo_player_6: AudioStreamPlayer2D = $Hack/VOPlayer6
|
||||||
|
@onready var vo_player_7: AudioStreamPlayer2D = $Hack/VOPlayer7
|
||||||
|
@onready var vo_player_8: AudioStreamPlayer2D = $Hack/VOPlayer8
|
||||||
|
@onready var vo_player_9: AudioStreamPlayer2D = $Hack/VOPlayer9
|
||||||
|
@onready var vo_player_10: AudioStreamPlayer2D = $Hack/VOPlayer10
|
||||||
|
var vo_players: Array[AudioStreamPlayer2D] = []
|
||||||
|
|
||||||
# Called when the node enters the scene tree for the first time.
|
# Called when the node enters the scene tree for the first time.
|
||||||
func _ready() -> void:
|
func _ready() -> void:
|
||||||
GUIDE.enable_mapping_context(base_mode)
|
GUIDE.enable_mapping_context(base_mode)
|
||||||
|
wrong_hack.activate()
|
||||||
|
right_hack.deactivate()
|
||||||
|
wrong_door.activate()
|
||||||
|
right_door.deactivate()
|
||||||
|
|
||||||
|
vo_players.append(vo_player_1)
|
||||||
|
vo_players.append(vo_player_2)
|
||||||
|
vo_players.append(vo_player_3)
|
||||||
|
vo_players.append(vo_player_4)
|
||||||
|
vo_players.append(vo_player_5)
|
||||||
|
vo_players.append(vo_player_6)
|
||||||
|
vo_players.append(vo_player_7)
|
||||||
|
vo_players.append(vo_player_8)
|
||||||
|
vo_players.append(vo_player_9)
|
||||||
|
vo_players.append(vo_player_10)
|
||||||
|
|
||||||
|
|
||||||
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
func _on_prise_interacted(event_id: String) -> void:
|
||||||
func _process(delta: float) -> void:
|
wrong_hack.deactivate()
|
||||||
pass
|
right_hack.activate()
|
||||||
|
for light in lights.get_children():
|
||||||
|
light.visible = false
|
||||||
|
|
||||||
|
func made_mistake() -> void:
|
||||||
func _on_interactible_triggered(event_id: String) -> void:
|
|
||||||
vies -= 1
|
vies -= 1
|
||||||
if vies == 0:
|
if vies == 0:
|
||||||
SceneLoader.load_scene(golé)
|
SceneLoader.load_scene(golé)
|
||||||
|
|
||||||
|
func _on_failed_hack(event_id: String) -> void:
|
||||||
|
made_mistake()
|
||||||
|
interact.play()
|
||||||
|
vo_trop_proche.play()
|
||||||
|
|
||||||
|
func _on_successful_hack(event_id: String) -> void:
|
||||||
|
right_door.activate()
|
||||||
|
wrong_door.deactivate()
|
||||||
|
interact.play()
|
||||||
|
vo_prise_tiree.play()
|
||||||
|
right_door.visible = true
|
||||||
|
|
||||||
|
func _on_interactible_triggered(event_id: String) -> void:
|
||||||
|
made_mistake()
|
||||||
|
interact.play()
|
||||||
|
|
||||||
func _on_wrong_door_event_triggered(event_id: String) -> void:
|
func _on_wrong_door_event_triggered(event_id: String) -> void:
|
||||||
SceneLoader.load_scene(golé)
|
SceneLoader.load_scene(golé)
|
||||||
|
|
||||||
|
|
||||||
func _on_right_door_event_triggered(event_id: String) -> void:
|
func _on_right_door_event_triggered(event_id: String) -> void:
|
||||||
SceneLoader.load_scene(next_level) # Replace with function body.
|
SceneLoader.load_scene(next_level) # Replace with function body.
|
||||||
|
|
||||||
|
func _on_timer_between_vo_timeout() -> void:
|
||||||
|
if is_interjection_next:
|
||||||
|
vo_interjection.play()
|
||||||
|
is_interjection_next = not is_interjection_next
|
||||||
|
return
|
||||||
|
|
||||||
|
if current_info >= len(vo_players):
|
||||||
|
return
|
||||||
|
|
||||||
|
vo_players[current_info].play()
|
||||||
|
current_info += 1
|
||||||
|
is_interjection_next = not is_interjection_next
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
[gd_scene load_steps=17 format=4 uid="uid://bnba2vd0m0qao"]
|
[gd_scene load_steps=91 format=4 uid="uid://bnba2vd0m0qao"]
|
||||||
|
|
||||||
[ext_resource type="Script" uid="uid://c232mm5h43ed4" path="res://scenes/indoors/last.gd" id="1_cad5s"]
|
[ext_resource type="Script" uid="uid://c232mm5h43ed4" path="res://scenes/indoors/last.gd" id="1_cad5s"]
|
||||||
[ext_resource type="Resource" uid="uid://7bmpcn0dxwr8" path="res://scenes/player/base.tres" id="2_1lxr4"]
|
[ext_resource type="Resource" uid="uid://7bmpcn0dxwr8" path="res://scenes/player/base.tres" id="2_1lxr4"]
|
||||||
@ -11,6 +11,55 @@
|
|||||||
[ext_resource type="Texture2D" uid="uid://dna7ld7qgab32" path="res://assets/light.webp" id="7_7ac63"]
|
[ext_resource type="Texture2D" uid="uid://dna7ld7qgab32" path="res://assets/light.webp" id="7_7ac63"]
|
||||||
[ext_resource type="Texture2D" uid="uid://dubgoja4vusil" path="res://assets/kenney_rpg-urban-pack/Tilemap/tilemap.png" id="8_b2nvp"]
|
[ext_resource type="Texture2D" uid="uid://dubgoja4vusil" path="res://assets/kenney_rpg-urban-pack/Tilemap/tilemap.png" id="8_b2nvp"]
|
||||||
[ext_resource type="PackedScene" uid="uid://4ye80a3tugk6" path="res://scenes/player/player.tscn" id="9_qv2s2"]
|
[ext_resource type="PackedScene" uid="uid://4ye80a3tugk6" path="res://scenes/player/player.tscn" id="9_qv2s2"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://bc3tdjrupw6vf" path="res://assets/garance/EGJ-PriseElectrique.png" id="11_5bw7o"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://bito1xftidxht" path="res://scenes/player/assets/dino/sheets/DinoSprites - vita.png" id="11_bwlf0"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://quote3410ki1" path="res://assets/Audio/VO_ALL_Interjection_01.ogg" id="12_5m8q7"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://cy676d54gxhp5" path="res://assets/Modern_Interiors_Free_v2.2/Modern tiles_Free/Characters_free/Amelia_idle_anim_16x16.png" id="12_o1p8b"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://c2bsxskwgk3ks" path="res://assets/Audio/VO_ALL_Interjection_02.ogg" id="13_58lim"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://cybluyseasy6g" path="res://assets/Audio/VO_ALL_Interjection_11.ogg" id="14_mvenc"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://dwrc0uynvsikh" path="res://assets/Audio/INT_Generic.ogg" id="15_7ac63"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://mbumd1hnp7yd" path="res://assets/Audio/VO_ALL_Interjection_12.ogg" id="15_8buf1"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://rcmjxqjbrt7d" path="res://assets/Audio/VO_LVL3_EVENT_Bravo reussite mission_01.ogg" id="15_jetft"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://ddgkyj2ild8k0" path="res://assets/Audio/VO_ALL_Interjection_13.ogg" id="16_24pah"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://ct4yty72wtrsc" path="res://assets/Audio/VO_LVL3_EVENT_Bravo reussite mission_02.ogg" id="16_o22xi"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://bdaercty8ftg8" path="res://assets/Audio/VO_ALL_Interjection_14.ogg" id="17_tw0ei"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://b5uy0xmuve4kr" path="res://assets/Audio/VO_LVL3_EVENT_Bravo reussite mission_03.ogg" id="17_xiu81"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://by52l5u55nf5b" path="res://assets/Audio/VO_ALL_Interjection_15.ogg" id="18_vb2ul"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://diibwbt0f5ay6" path="res://assets/Audio/VO_ALL_Interjection_16.ogg" id="19_lq6rh"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://cgriskidmvoyy" path="res://assets/Audio/VO_ALL_Interjection_17.ogg" id="20_6nmir"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://r7al634l8lf1" path="res://assets/Audio/VO_ALL_Interjection_18.ogg" id="21_dg0mp"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://bgincd82vjhg1" path="res://assets/Audio/VO_ALL_Interjection_19.ogg" id="22_oxqxs"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://dkiqu85gngwsc" path="res://assets/Audio/VO_ALL_Interjection_03.ogg" id="23_r2kko"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://3gs4stajg3f8" path="res://assets/Audio/VO_ALL_Interjection_04.ogg" id="24_2fsse"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://ckd1xjo25llut" path="res://assets/Audio/VO_ALL_Interjection_05.ogg" id="25_80hkr"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://c7kq0gysnu38f" path="res://assets/Audio/VO_ALL_Interjection_06.ogg" id="26_y8eoe"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://em8v6yrqgm07" path="res://assets/Audio/VO_ALL_Interjection_07.ogg" id="27_j5nbx"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://b3k04hd5fbvlt" path="res://assets/Audio/VO_ALL_Interjection_08.ogg" id="28_qo7xd"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://b2hvuaa2l54m1" path="res://assets/Audio/VO_ALL_Interjection_09.ogg" id="29_5a11c"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://b1b1cg7fkvyf8" path="res://assets/Audio/VO_ALL_Interjection_10.ogg" id="30_21lqy"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://cl8mbwvxciipc" path="res://assets/Audio/VO_ALL_EVENT_Trop proche de la cible_01.ogg" id="31_7oook"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://dnvmyiejvlumu" path="res://assets/Audio/VO_ALL_EVENT_Trop proche de la cible_02.ogg" id="32_yqvmc"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://dlcr1j45sg3sg" path="res://assets/Audio/VO_ALL_EVENT_Trop proche de la cible_03.ogg" id="33_ola0d"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://diejqlgsfq351" path="res://assets/Audio/VO_LVL3_A_01.ogg" id="34_yqvmc"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://dnsy3vx81pjfh" path="res://assets/Audio/VO_LVL3_B_01.ogg" id="35_ola0d"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://dlc7pso5w8hfi" path="res://assets/Audio/VO_LVL3_A_02.ogg" id="36_rls46"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://dcs22pskv0suj" path="res://assets/Audio/VO_LVL3_B_02.ogg" id="37_jetft"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://b8lit8a4wioy1" path="res://assets/Audio/VO_LVL3_A_03.ogg" id="38_o22xi"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://80jjg80jtq2y" path="res://assets/Audio/VO_LVL3_B_03.ogg" id="39_xiu81"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://qnow013t81kq" path="res://assets/Audio/VO_LVL3_A_04.ogg" id="40_w3s5w"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://ds0lio52cxe3v" path="res://assets/Audio/VO_LVL3_B_04.ogg" id="41_ixshy"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://788qcp4ippxv" path="res://assets/Audio/VO_LVL3_A_05.ogg" id="42_6r2xh"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://b6me4h1gqrlts" path="res://assets/Audio/VO_LVL3_B_05.ogg" id="43_41wf1"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://cqd54i827atjj" path="res://assets/Audio/VO_LVL3_A_06.ogg" id="44_x6h78"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://ci655yudrit0c" path="res://assets/Audio/VO_LVL3_B_06.ogg" id="45_5tmip"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://dnhxryvfdw0ld" path="res://assets/Audio/VO_LVL3_A_07.ogg" id="46_o58id"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://c458xm3ggkwr4" path="res://assets/Audio/VO_LVL3_B_07.ogg" id="47_nnla5"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://baqoi2xxqf8a" path="res://assets/Audio/VO_LVL3_A_08.ogg" id="48_0bwp0"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://bvowo08vjagqv" path="res://assets/Audio/VO_LVL3_B_08.ogg" id="49_jftfk"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://c77svqi6fj683" path="res://assets/Audio/VO_LVL3_A_09.ogg" id="50_llwo8"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://d0lfg1am27eou" path="res://assets/Audio/VO_LVL3_B_09.ogg" id="51_s8chb"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://c1wkrw3fdj2rr" path="res://assets/Audio/VO_LVL3_A_10.ogg" id="52_roruu"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://cy0solmf5ni63" path="res://assets/Audio/VO_LVL3_B_10.ogg" id="53_w43jt"]
|
||||||
|
|
||||||
[sub_resource type="TileSetAtlasSource" id="TileSetAtlasSource_nyh47"]
|
[sub_resource type="TileSetAtlasSource" id="TileSetAtlasSource_nyh47"]
|
||||||
texture = ExtResource("3_vefux")
|
texture = ExtResource("3_vefux")
|
||||||
@ -2215,24 +2264,185 @@ sources/0 = SubResource("TileSetAtlasSource_nyh47")
|
|||||||
sources/1 = SubResource("TileSetAtlasSource_aepdt")
|
sources/1 = SubResource("TileSetAtlasSource_aepdt")
|
||||||
sources/2 = SubResource("TileSetAtlasSource_m8pkg")
|
sources/2 = SubResource("TileSetAtlasSource_m8pkg")
|
||||||
|
|
||||||
|
[sub_resource type="AtlasTexture" id="AtlasTexture_bwlf0"]
|
||||||
|
atlas = ExtResource("12_o1p8b")
|
||||||
|
region = Rect2(288, 0, 16, 32)
|
||||||
|
|
||||||
|
[sub_resource type="AtlasTexture" id="AtlasTexture_7ac63"]
|
||||||
|
atlas = ExtResource("12_o1p8b")
|
||||||
|
region = Rect2(304, 0, 16, 32)
|
||||||
|
|
||||||
|
[sub_resource type="AtlasTexture" id="AtlasTexture_b2nvp"]
|
||||||
|
atlas = ExtResource("12_o1p8b")
|
||||||
|
region = Rect2(320, 0, 16, 32)
|
||||||
|
|
||||||
|
[sub_resource type="AtlasTexture" id="AtlasTexture_qv2s2"]
|
||||||
|
atlas = ExtResource("12_o1p8b")
|
||||||
|
region = Rect2(336, 0, 16, 32)
|
||||||
|
|
||||||
|
[sub_resource type="AtlasTexture" id="AtlasTexture_hrl3v"]
|
||||||
|
atlas = ExtResource("12_o1p8b")
|
||||||
|
region = Rect2(352, 0, 16, 32)
|
||||||
|
|
||||||
|
[sub_resource type="AtlasTexture" id="AtlasTexture_34t5v"]
|
||||||
|
atlas = ExtResource("12_o1p8b")
|
||||||
|
region = Rect2(368, 0, 16, 32)
|
||||||
|
|
||||||
|
[sub_resource type="SpriteFrames" id="SpriteFrames_fcj1w"]
|
||||||
|
animations = [{
|
||||||
|
"frames": [{
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": SubResource("AtlasTexture_bwlf0")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": SubResource("AtlasTexture_7ac63")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": SubResource("AtlasTexture_b2nvp")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": SubResource("AtlasTexture_qv2s2")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": SubResource("AtlasTexture_hrl3v")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": SubResource("AtlasTexture_34t5v")
|
||||||
|
}],
|
||||||
|
"loop": true,
|
||||||
|
"name": &"idle",
|
||||||
|
"speed": 4.0
|
||||||
|
}]
|
||||||
|
|
||||||
|
[sub_resource type="AtlasTexture" id="AtlasTexture_fcj1w"]
|
||||||
|
atlas = ExtResource("11_bwlf0")
|
||||||
|
region = Rect2(0, 0, 24, 24)
|
||||||
|
|
||||||
|
[sub_resource type="AtlasTexture" id="AtlasTexture_mlc6d"]
|
||||||
|
atlas = ExtResource("11_bwlf0")
|
||||||
|
region = Rect2(24, 0, 24, 24)
|
||||||
|
|
||||||
|
[sub_resource type="AtlasTexture" id="AtlasTexture_koa6v"]
|
||||||
|
atlas = ExtResource("11_bwlf0")
|
||||||
|
region = Rect2(48, 0, 24, 24)
|
||||||
|
|
||||||
|
[sub_resource type="AtlasTexture" id="AtlasTexture_mmift"]
|
||||||
|
atlas = ExtResource("11_bwlf0")
|
||||||
|
region = Rect2(72, 0, 24, 24)
|
||||||
|
|
||||||
|
[sub_resource type="SpriteFrames" id="SpriteFrames_tnfmx"]
|
||||||
|
animations = [{
|
||||||
|
"frames": [{
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": SubResource("AtlasTexture_fcj1w")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": SubResource("AtlasTexture_mlc6d")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": SubResource("AtlasTexture_koa6v")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": SubResource("AtlasTexture_mmift")
|
||||||
|
}],
|
||||||
|
"loop": true,
|
||||||
|
"name": &"idle",
|
||||||
|
"speed": 4.0
|
||||||
|
}]
|
||||||
|
|
||||||
[sub_resource type="CircleShape2D" id="CircleShape2D_m8pkg"]
|
[sub_resource type="CircleShape2D" id="CircleShape2D_m8pkg"]
|
||||||
radius = 8.0
|
radius = 8.0
|
||||||
|
|
||||||
|
[sub_resource type="AudioStreamRandomizer" id="AudioStreamRandomizer_jetft"]
|
||||||
|
streams_count = 3
|
||||||
|
stream_0/stream = ExtResource("31_7oook")
|
||||||
|
stream_1/stream = ExtResource("32_yqvmc")
|
||||||
|
stream_2/stream = ExtResource("33_ola0d")
|
||||||
|
|
||||||
|
[sub_resource type="AudioStreamRandomizer" id="AudioStreamRandomizer_w3s5w"]
|
||||||
|
streams_count = 3
|
||||||
|
stream_0/stream = ExtResource("15_jetft")
|
||||||
|
stream_1/stream = ExtResource("16_o22xi")
|
||||||
|
stream_2/stream = ExtResource("17_xiu81")
|
||||||
|
|
||||||
|
[sub_resource type="AudioStreamRandomizer" id="AudioStreamRandomizer_rls46"]
|
||||||
|
streams_count = 19
|
||||||
|
stream_0/stream = ExtResource("12_5m8q7")
|
||||||
|
stream_1/stream = ExtResource("13_58lim")
|
||||||
|
stream_2/stream = ExtResource("23_r2kko")
|
||||||
|
stream_3/stream = ExtResource("24_2fsse")
|
||||||
|
stream_4/stream = ExtResource("25_80hkr")
|
||||||
|
stream_5/stream = ExtResource("26_y8eoe")
|
||||||
|
stream_6/stream = ExtResource("27_j5nbx")
|
||||||
|
stream_7/stream = ExtResource("28_qo7xd")
|
||||||
|
stream_8/stream = ExtResource("29_5a11c")
|
||||||
|
stream_9/stream = ExtResource("30_21lqy")
|
||||||
|
stream_10/stream = ExtResource("14_mvenc")
|
||||||
|
stream_11/stream = ExtResource("15_8buf1")
|
||||||
|
stream_12/stream = ExtResource("16_24pah")
|
||||||
|
stream_13/stream = ExtResource("17_tw0ei")
|
||||||
|
stream_14/stream = ExtResource("18_vb2ul")
|
||||||
|
stream_15/stream = ExtResource("19_lq6rh")
|
||||||
|
stream_16/stream = ExtResource("20_6nmir")
|
||||||
|
stream_17/stream = ExtResource("21_dg0mp")
|
||||||
|
stream_18/stream = ExtResource("22_oxqxs")
|
||||||
|
|
||||||
|
[sub_resource type="AudioStreamRandomizer" id="AudioStreamRandomizer_aj3yh"]
|
||||||
|
streams_count = 2
|
||||||
|
stream_0/stream = ExtResource("34_yqvmc")
|
||||||
|
stream_1/stream = ExtResource("35_ola0d")
|
||||||
|
|
||||||
|
[sub_resource type="AudioStreamRandomizer" id="AudioStreamRandomizer_av0r7"]
|
||||||
|
streams_count = 2
|
||||||
|
stream_0/stream = ExtResource("36_rls46")
|
||||||
|
stream_1/stream = ExtResource("37_jetft")
|
||||||
|
|
||||||
|
[sub_resource type="AudioStreamRandomizer" id="AudioStreamRandomizer_daj5o"]
|
||||||
|
streams_count = 2
|
||||||
|
stream_0/stream = ExtResource("38_o22xi")
|
||||||
|
stream_1/stream = ExtResource("39_xiu81")
|
||||||
|
|
||||||
|
[sub_resource type="AudioStreamRandomizer" id="AudioStreamRandomizer_ywe6s"]
|
||||||
|
streams_count = 2
|
||||||
|
stream_0/stream = ExtResource("40_w3s5w")
|
||||||
|
stream_1/stream = ExtResource("41_ixshy")
|
||||||
|
|
||||||
|
[sub_resource type="AudioStreamRandomizer" id="AudioStreamRandomizer_sdgl5"]
|
||||||
|
streams_count = 2
|
||||||
|
stream_0/stream = ExtResource("42_6r2xh")
|
||||||
|
stream_1/stream = ExtResource("43_41wf1")
|
||||||
|
|
||||||
|
[sub_resource type="AudioStreamRandomizer" id="AudioStreamRandomizer_5y4f4"]
|
||||||
|
streams_count = 2
|
||||||
|
stream_0/stream = ExtResource("44_x6h78")
|
||||||
|
stream_1/stream = ExtResource("45_5tmip")
|
||||||
|
|
||||||
|
[sub_resource type="AudioStreamRandomizer" id="AudioStreamRandomizer_7lxjq"]
|
||||||
|
streams_count = 2
|
||||||
|
stream_0/stream = ExtResource("46_o58id")
|
||||||
|
stream_1/stream = ExtResource("47_nnla5")
|
||||||
|
|
||||||
|
[sub_resource type="AudioStreamRandomizer" id="AudioStreamRandomizer_qglry"]
|
||||||
|
streams_count = 2
|
||||||
|
stream_0/stream = ExtResource("48_0bwp0")
|
||||||
|
stream_1/stream = ExtResource("49_jftfk")
|
||||||
|
|
||||||
|
[sub_resource type="AudioStreamRandomizer" id="AudioStreamRandomizer_ynj43"]
|
||||||
|
streams_count = 2
|
||||||
|
stream_0/stream = ExtResource("50_llwo8")
|
||||||
|
stream_1/stream = ExtResource("51_s8chb")
|
||||||
|
|
||||||
|
[sub_resource type="AudioStreamRandomizer" id="AudioStreamRandomizer_1xngy"]
|
||||||
|
streams_count = 2
|
||||||
|
stream_0/stream = ExtResource("52_roruu")
|
||||||
|
stream_1/stream = ExtResource("53_w43jt")
|
||||||
|
|
||||||
[node name="Main" type="Node2D"]
|
[node name="Main" type="Node2D"]
|
||||||
script = ExtResource("1_cad5s")
|
script = ExtResource("1_cad5s")
|
||||||
"golé" = "uid://cgql2prrr5cj7"
|
"golé" = "uid://cgql2prrr5cj7"
|
||||||
|
next_level = "uid://c677s7iscqwpf"
|
||||||
base_mode = ExtResource("2_1lxr4")
|
base_mode = ExtResource("2_1lxr4")
|
||||||
|
|
||||||
[node name="Ambiance" type="AudioStreamPlayer2D" parent="."]
|
|
||||||
stream = ExtResource("3_5bw7o")
|
|
||||||
autoplay = true
|
|
||||||
bus = &"Ambiance"
|
|
||||||
|
|
||||||
[node name="Music" type="AudioStreamPlayer2D" parent="."]
|
|
||||||
stream = ExtResource("4_o1p8b")
|
|
||||||
autoplay = true
|
|
||||||
bus = &"Music"
|
|
||||||
|
|
||||||
[node name="CanvasModulate" type="CanvasModulate" parent="."]
|
[node name="CanvasModulate" type="CanvasModulate" parent="."]
|
||||||
color = Color(0.402604, 0.402604, 0.402604, 1)
|
color = Color(0.402604, 0.402604, 0.402604, 1)
|
||||||
|
|
||||||
@ -2248,65 +2458,186 @@ tile_set = SubResource("TileSet_hpoax")
|
|||||||
tile_map_data = PackedByteArray("AAAHAA4AAAAAABAAAAAMAAgAAAALAAYAAAAMAAkAAAALAAcAAAAMAAoAAAALAAgAAAANAAgAAAAMAAYAAAANAAkAAAAMAAcAAAANAAoAAAAMAAgAAAAOAAgAAAANAAYAAAAOAAkAAAANAAcAAAAOAAoAAAANAAgAAAAPAAgAAAAOAAYAAAAPAAkAAAAOAAcAAAAPAAoAAAAOAAgAAAAMAAcAAAALAAYAAAANAAcAAAAMAAYAAAAOAAcAAAANAAYAAAAPAAcAAAAOAAYAAAAMAAYAAAALAAYAAAANAAYAAAAMAAYAAAAOAAYAAAANAAYAAAAPAAYAAAAOAAYAAAAMAAUAAAALAAYAAAANAAUAAAAMAAYAAAAOAAUAAAANAAYAAAAPAAUAAAAOAAYAAAATAAgAAAAHABEAAAAUAAgAAAAIABEAAAAVAAgAAAAJABEAAAAWAAgAAAAKABEAAAATAAYAAAAHAA8AAAATAAcAAAAHABAAAAAUAAYAAAAIAA8AAAAUAAcAAAAIABAAAAAVAAYAAAAJAA8AAAAVAAcAAAAJABAAAAAWAAYAAAAKAA8AAAAWAAcAAAAKABAAAAAaAAUAAAALAAYAAAAaAAYAAAALAAYAAAAaAAcAAAALAAYAAAAaAAgAAAALAAYAAAAaAAkAAAALAAcAAAAbAAUAAAAMAAYAAAAbAAYAAAAMAAYAAAAbAAcAAAAMAAYAAAAbAAgAAAAMAAYAAAAbAAkAAAAMAAcAAAAcAAUAAAANAAYAAAAcAAYAAAANAAYAAAAcAAcAAAANAAYAAAAcAAgAAAANAAYAAAAcAAkAAAANAAcAAAAdAAUAAAAOAAYAAAAdAAYAAAAOAAYAAAAdAAcAAAAOAAYAAAAdAAgAAAAOAAYAAAAdAAkAAAAOAAcAAAASAAkAAAAHAA0AAAASAAoAAAAHAA4AAAATAAkAAAAIAA0AAAATAAoAAAAIAA4AAAAUAAkAAAAIAA0AAAAUAAoAAAAIAA4AAAAVAAkAAAAIAA0AAAAVAAoAAAAIAA4AAAAWAAkAAAAIAA0AAAAWAAoAAAAIAA4AAAAXAAkAAAAJAA0AAAAXAAoAAAAJAA4AAAAQAAYAAAAHAA0AAAAQAAcAAAAHAA4AAAARAAYAAAAJAA0AAAARAAcAAAAJAA4AAAAYAAYAAAAHAA0AAAAYAAcAAAAHAA4AAAAZAAYAAAAJAA0AAAAZAAcAAAAJAA4AAAASAAYAAAAHABUAAAASAAcAAAAHABYAAAAXAAUAAAAGABUAAAAXAAYAAAAGABYAAAAeAA0AAAAFACYAAAAeAA4AAAAFACcAAAAfAA0AAAAGACYAAAAfAA4AAAAGACcAAAAeAA8AAAAFACYAAAAeABAAAAAFACcAAAAfAA8AAAAGACYAAAAfABAAAAAGACcAAAAdAA0AAAAFACgAAAAdAA4AAAAFACkAAAAdAA8AAAAFACgAAAAdABAAAAAFACkAAAAKAAsAAAAJAEwAAAAKAAwAAAAJAE0AAAAKAA0AAAAJAE4AAAALAAsAAAAKAEwAAAALAAwAAAAKAE0AAAALAA0AAAAKAE4AAAAKAA4AAAAJAEwAAAAKAA8AAAAJAE0AAAAKABAAAAAJAE4AAAALAA4AAAAKAEwAAAALAA8AAAAKAE0AAAALABAAAAAKAE4AAAAMAAwAAAANAEsAAAAMAA0AAAANAEwAAAAMAAQAAAALAAYAAAANAAQAAAAMAAYAAAAOAAQAAAANAAYAAAAPAAQAAAAOAAYAAAAMAAMAAAALAAYAAAANAAMAAAAMAAYAAAAOAAMAAAANAAYAAAAPAAMAAAAOAAYAAAAaAAQAAAALAAYAAAAbAAQAAAAMAAYAAAAcAAQAAAANAAYAAAAdAAQAAAAOAAYAAAAaAAMAAAALAAYAAAAbAAMAAAAMAAYAAAAcAAMAAAANAAYAAAAdAAMAAAAOAAYAAAAMAAIAAAAFAAEAAAANAAIAAAAGAAEAAAAOAAIAAAAHAAEAAAAPAAIAAAAIAAEAAAAaAAIAAAAFAAEAAAAbAAIAAAAGAAEAAAAcAAIAAAAHAAEAAAAdAAIAAAAIAAEAAAAeAPz/AgAPAA0AAAAOAPn/AAAMACgAAAAOAPr/AAAMACkAAAANAPn/AAAMACgAAAANAPr/AAAMACkAAAAXAP//AAAHAC0AAAAXAAAAAAAHAC4AAAAXAAEAAAAHAC8AAAAYAP//AAAIAC0AAAAYAAAAAAAIAC4AAAAYAAEAAAAIAC8AAAAZAP//AAAJAC0AAAAZAAAAAAAJAC4AAAAZAAEAAAAJAC8AAAAWAAAAAAAFACwAAAAWAAEAAAAFACwAAAAaAAEAAAAFACwAAAA=")
|
tile_map_data = PackedByteArray("AAAHAA4AAAAAABAAAAAMAAgAAAALAAYAAAAMAAkAAAALAAcAAAAMAAoAAAALAAgAAAANAAgAAAAMAAYAAAANAAkAAAAMAAcAAAANAAoAAAAMAAgAAAAOAAgAAAANAAYAAAAOAAkAAAANAAcAAAAOAAoAAAANAAgAAAAPAAgAAAAOAAYAAAAPAAkAAAAOAAcAAAAPAAoAAAAOAAgAAAAMAAcAAAALAAYAAAANAAcAAAAMAAYAAAAOAAcAAAANAAYAAAAPAAcAAAAOAAYAAAAMAAYAAAALAAYAAAANAAYAAAAMAAYAAAAOAAYAAAANAAYAAAAPAAYAAAAOAAYAAAAMAAUAAAALAAYAAAANAAUAAAAMAAYAAAAOAAUAAAANAAYAAAAPAAUAAAAOAAYAAAATAAgAAAAHABEAAAAUAAgAAAAIABEAAAAVAAgAAAAJABEAAAAWAAgAAAAKABEAAAATAAYAAAAHAA8AAAATAAcAAAAHABAAAAAUAAYAAAAIAA8AAAAUAAcAAAAIABAAAAAVAAYAAAAJAA8AAAAVAAcAAAAJABAAAAAWAAYAAAAKAA8AAAAWAAcAAAAKABAAAAAaAAUAAAALAAYAAAAaAAYAAAALAAYAAAAaAAcAAAALAAYAAAAaAAgAAAALAAYAAAAaAAkAAAALAAcAAAAbAAUAAAAMAAYAAAAbAAYAAAAMAAYAAAAbAAcAAAAMAAYAAAAbAAgAAAAMAAYAAAAbAAkAAAAMAAcAAAAcAAUAAAANAAYAAAAcAAYAAAANAAYAAAAcAAcAAAANAAYAAAAcAAgAAAANAAYAAAAcAAkAAAANAAcAAAAdAAUAAAAOAAYAAAAdAAYAAAAOAAYAAAAdAAcAAAAOAAYAAAAdAAgAAAAOAAYAAAAdAAkAAAAOAAcAAAASAAkAAAAHAA0AAAASAAoAAAAHAA4AAAATAAkAAAAIAA0AAAATAAoAAAAIAA4AAAAUAAkAAAAIAA0AAAAUAAoAAAAIAA4AAAAVAAkAAAAIAA0AAAAVAAoAAAAIAA4AAAAWAAkAAAAIAA0AAAAWAAoAAAAIAA4AAAAXAAkAAAAJAA0AAAAXAAoAAAAJAA4AAAAQAAYAAAAHAA0AAAAQAAcAAAAHAA4AAAARAAYAAAAJAA0AAAARAAcAAAAJAA4AAAAYAAYAAAAHAA0AAAAYAAcAAAAHAA4AAAAZAAYAAAAJAA0AAAAZAAcAAAAJAA4AAAASAAYAAAAHABUAAAASAAcAAAAHABYAAAAXAAUAAAAGABUAAAAXAAYAAAAGABYAAAAeAA0AAAAFACYAAAAeAA4AAAAFACcAAAAfAA0AAAAGACYAAAAfAA4AAAAGACcAAAAeAA8AAAAFACYAAAAeABAAAAAFACcAAAAfAA8AAAAGACYAAAAfABAAAAAGACcAAAAdAA0AAAAFACgAAAAdAA4AAAAFACkAAAAdAA8AAAAFACgAAAAdABAAAAAFACkAAAAKAAsAAAAJAEwAAAAKAAwAAAAJAE0AAAAKAA0AAAAJAE4AAAALAAsAAAAKAEwAAAALAAwAAAAKAE0AAAALAA0AAAAKAE4AAAAKAA4AAAAJAEwAAAAKAA8AAAAJAE0AAAAKABAAAAAJAE4AAAALAA4AAAAKAEwAAAALAA8AAAAKAE0AAAALABAAAAAKAE4AAAAMAAwAAAANAEsAAAAMAA0AAAANAEwAAAAMAAQAAAALAAYAAAANAAQAAAAMAAYAAAAOAAQAAAANAAYAAAAPAAQAAAAOAAYAAAAMAAMAAAALAAYAAAANAAMAAAAMAAYAAAAOAAMAAAANAAYAAAAPAAMAAAAOAAYAAAAaAAQAAAALAAYAAAAbAAQAAAAMAAYAAAAcAAQAAAANAAYAAAAdAAQAAAAOAAYAAAAaAAMAAAALAAYAAAAbAAMAAAAMAAYAAAAcAAMAAAANAAYAAAAdAAMAAAAOAAYAAAAMAAIAAAAFAAEAAAANAAIAAAAGAAEAAAAOAAIAAAAHAAEAAAAPAAIAAAAIAAEAAAAaAAIAAAAFAAEAAAAbAAIAAAAGAAEAAAAcAAIAAAAHAAEAAAAdAAIAAAAIAAEAAAAeAPz/AgAPAA0AAAAOAPn/AAAMACgAAAAOAPr/AAAMACkAAAANAPn/AAAMACgAAAANAPr/AAAMACkAAAAXAP//AAAHAC0AAAAXAAAAAAAHAC4AAAAXAAEAAAAHAC8AAAAYAP//AAAIAC0AAAAYAAAAAAAIAC4AAAAYAAEAAAAIAC8AAAAZAP//AAAJAC0AAAAZAAAAAAAJAC4AAAAZAAEAAAAJAC8AAAAWAAAAAAAFACwAAAAWAAEAAAAFACwAAAAaAAEAAAAFACwAAAA=")
|
||||||
tile_set = SubResource("TileSet_hpoax")
|
tile_set = SubResource("TileSet_hpoax")
|
||||||
|
|
||||||
[node name="WrongDoor" parent="." instance=ExtResource("6_bwlf0")]
|
[node name="GetOutDoors" type="Node2D" parent="."]
|
||||||
position = Vector2(176, -167)
|
position = Vector2(176, -167)
|
||||||
message = "entrer dans la poste ?"
|
|
||||||
|
[node name="WrongDoor" parent="GetOutDoors" instance=ExtResource("6_bwlf0")]
|
||||||
|
message = "Prendre la porte de secours ?"
|
||||||
interact_text = "porte"
|
interact_text = "porte"
|
||||||
event = "wrong"
|
event = "wrong"
|
||||||
|
|
||||||
[node name="Sprite2D" type="Sprite2D" parent="WrongDoor"]
|
[node name="Sprite2D" type="Sprite2D" parent="GetOutDoors/WrongDoor"]
|
||||||
texture = ExtResource("8_b2nvp")
|
texture = ExtResource("8_b2nvp")
|
||||||
region_enabled = true
|
region_enabled = true
|
||||||
region_rect = Rect2(255, 170, 16, 16)
|
region_rect = Rect2(255, 170, 16, 16)
|
||||||
|
|
||||||
[node name="PointLight2D9" type="PointLight2D" parent="WrongDoor"]
|
[node name="PointLight2D9" type="PointLight2D" parent="GetOutDoors/WrongDoor"]
|
||||||
scale = Vector2(0.198204, 0.195312)
|
scale = Vector2(0.198204, 0.195312)
|
||||||
energy = 0.3
|
energy = 0.3
|
||||||
texture = ExtResource("7_7ac63")
|
texture = ExtResource("7_7ac63")
|
||||||
|
|
||||||
[node name="WrongTabouret" parent="." instance=ExtResource("6_bwlf0")]
|
[node name="RightDoor" parent="GetOutDoors" instance=ExtResource("6_bwlf0")]
|
||||||
position = Vector2(369, -14)
|
message = "Prendre la porte de secours ?"
|
||||||
message = "Vous inspectez le tabouret, il est ordinaire. Vous, en revanche, attirez les regards..."
|
|
||||||
interact_text = "tabouret"
|
|
||||||
event = "wrong"
|
|
||||||
is_item = true
|
|
||||||
|
|
||||||
[node name="Sprite2D" type="Sprite2D" parent="WrongTabouret"]
|
|
||||||
texture = ExtResource("3_vefux")
|
|
||||||
region_enabled = true
|
|
||||||
region_rect = Rect2(80, 704, 16, 16)
|
|
||||||
|
|
||||||
[node name="PointLight2D9" type="PointLight2D" parent="WrongTabouret"]
|
|
||||||
scale = Vector2(0.198204, 0.195312)
|
|
||||||
energy = 0.3
|
|
||||||
texture = ExtResource("7_7ac63")
|
|
||||||
|
|
||||||
[node name="StaticBody2D" type="StaticBody2D" parent="WrongTabouret"]
|
|
||||||
|
|
||||||
[node name="CollisionShape2D2" type="CollisionShape2D" parent="WrongTabouret/StaticBody2D"]
|
|
||||||
shape = SubResource("CircleShape2D_m8pkg")
|
|
||||||
|
|
||||||
[node name="RightDoor" parent="." instance=ExtResource("6_bwlf0")]
|
|
||||||
position = Vector2(328, -167)
|
|
||||||
message = "Entrer dans l'hotel ?"
|
|
||||||
interact_text = "porte"
|
interact_text = "porte"
|
||||||
event = "right"
|
event = "right"
|
||||||
|
|
||||||
[node name="Sprite2D" type="Sprite2D" parent="RightDoor"]
|
[node name="Sprite2D" type="Sprite2D" parent="GetOutDoors/RightDoor"]
|
||||||
texture = ExtResource("8_b2nvp")
|
texture = ExtResource("8_b2nvp")
|
||||||
region_enabled = true
|
region_enabled = true
|
||||||
region_rect = Rect2(255, 170, 16, 16)
|
region_rect = Rect2(255, 170, 16, 16)
|
||||||
|
|
||||||
[node name="PointLight2D8" type="PointLight2D" parent="RightDoor"]
|
[node name="PointLight2D8" type="PointLight2D" parent="GetOutDoors/RightDoor"]
|
||||||
position = Vector2(3.05176e-05, 0)
|
position = Vector2(3.05176e-05, 0)
|
||||||
scale = Vector2(0.198204, 0.195312)
|
scale = Vector2(0.198204, 0.195312)
|
||||||
energy = 0.5
|
energy = 0.5
|
||||||
texture = ExtResource("7_7ac63")
|
texture = ExtResource("7_7ac63")
|
||||||
|
|
||||||
|
[node name="RightPrise" parent="." instance=ExtResource("6_bwlf0")]
|
||||||
|
position = Vector2(369, -14)
|
||||||
|
message = "Vous utilisez la prise disponible pour faire un court circuit."
|
||||||
|
interact_text = "prise"
|
||||||
|
event = "right"
|
||||||
|
is_item = true
|
||||||
|
|
||||||
|
[node name="Sprite2D" type="Sprite2D" parent="RightPrise"]
|
||||||
|
texture = ExtResource("11_5bw7o")
|
||||||
|
region_rect = Rect2(80, 704, 16, 16)
|
||||||
|
|
||||||
|
[node name="PointLight2D9" type="PointLight2D" parent="RightPrise"]
|
||||||
|
scale = Vector2(0.198204, 0.195312)
|
||||||
|
energy = 0.3
|
||||||
|
texture = ExtResource("7_7ac63")
|
||||||
|
|
||||||
|
[node name="Hack" type="Node2D" parent="."]
|
||||||
|
position = Vector2(292, -17)
|
||||||
|
|
||||||
|
[node name="AnimatedSprite2D" type="AnimatedSprite2D" parent="Hack"]
|
||||||
|
sprite_frames = SubResource("SpriteFrames_fcj1w")
|
||||||
|
animation = &"idle"
|
||||||
|
autoplay = "idle"
|
||||||
|
frame_progress = 0.457516
|
||||||
|
|
||||||
|
[node name="AnimatedSprite2D2" type="AnimatedSprite2D" parent="Hack"]
|
||||||
|
position = Vector2(-11, 14)
|
||||||
|
sprite_frames = SubResource("SpriteFrames_tnfmx")
|
||||||
|
animation = &"idle"
|
||||||
|
autoplay = "idle"
|
||||||
|
frame_progress = 0.502363
|
||||||
|
|
||||||
|
[node name="StaticBody2D" type="StaticBody2D" parent="Hack"]
|
||||||
|
|
||||||
|
[node name="CollisionShape2D2" type="CollisionShape2D" parent="Hack/StaticBody2D"]
|
||||||
|
shape = SubResource("CircleShape2D_m8pkg")
|
||||||
|
|
||||||
|
[node name="PointLight2D9" type="PointLight2D" parent="Hack"]
|
||||||
|
scale = Vector2(0.198204, 0.195312)
|
||||||
|
energy = 0.3
|
||||||
|
texture = ExtResource("7_7ac63")
|
||||||
|
|
||||||
|
[node name="WrongHack" parent="Hack" instance=ExtResource("6_bwlf0")]
|
||||||
|
unique_name_in_owner = true
|
||||||
|
message = "Ne nous dérangez pas, on est en pleine conversation!"
|
||||||
|
interact_text = "pirater"
|
||||||
|
event = "wrong"
|
||||||
|
is_item = true
|
||||||
|
|
||||||
|
[node name="RightHack" parent="Hack" instance=ExtResource("6_bwlf0")]
|
||||||
|
unique_name_in_owner = true
|
||||||
|
message = "Vous piratez la CEO de Onid! C'est le moment de décoller."
|
||||||
|
interact_text = "pirater"
|
||||||
|
event = "right"
|
||||||
|
is_item = true
|
||||||
|
|
||||||
|
[node name="VOTropProche" type="AudioStreamPlayer2D" parent="Hack"]
|
||||||
|
stream = SubResource("AudioStreamRandomizer_jetft")
|
||||||
|
bus = &"VoiceOver"
|
||||||
|
|
||||||
|
[node name="VOPriseTiree" type="AudioStreamPlayer2D" parent="Hack"]
|
||||||
|
stream = SubResource("AudioStreamRandomizer_w3s5w")
|
||||||
|
bus = &"VoiceOver"
|
||||||
|
|
||||||
|
[node name="VOInterjection" type="AudioStreamPlayer2D" parent="Hack"]
|
||||||
|
stream = SubResource("AudioStreamRandomizer_rls46")
|
||||||
|
bus = &"VoiceOver"
|
||||||
|
|
||||||
|
[node name="VOPlayer1" type="AudioStreamPlayer2D" parent="Hack"]
|
||||||
|
stream = SubResource("AudioStreamRandomizer_aj3yh")
|
||||||
|
bus = &"VoiceOver"
|
||||||
|
|
||||||
|
[node name="VOPlayer2" type="AudioStreamPlayer2D" parent="Hack"]
|
||||||
|
stream = SubResource("AudioStreamRandomizer_av0r7")
|
||||||
|
bus = &"VoiceOver"
|
||||||
|
|
||||||
|
[node name="VOPlayer3" type="AudioStreamPlayer2D" parent="Hack"]
|
||||||
|
stream = SubResource("AudioStreamRandomizer_daj5o")
|
||||||
|
bus = &"VoiceOver"
|
||||||
|
|
||||||
|
[node name="VOPlayer4" type="AudioStreamPlayer2D" parent="Hack"]
|
||||||
|
stream = SubResource("AudioStreamRandomizer_ywe6s")
|
||||||
|
bus = &"VoiceOver"
|
||||||
|
|
||||||
|
[node name="VOPlayer5" type="AudioStreamPlayer2D" parent="Hack"]
|
||||||
|
stream = SubResource("AudioStreamRandomizer_sdgl5")
|
||||||
|
bus = &"VoiceOver"
|
||||||
|
|
||||||
|
[node name="VOPlayer6" type="AudioStreamPlayer2D" parent="Hack"]
|
||||||
|
stream = SubResource("AudioStreamRandomizer_5y4f4")
|
||||||
|
bus = &"VoiceOver"
|
||||||
|
|
||||||
|
[node name="VOPlayer7" type="AudioStreamPlayer2D" parent="Hack"]
|
||||||
|
stream = SubResource("AudioStreamRandomizer_7lxjq")
|
||||||
|
bus = &"VoiceOver"
|
||||||
|
|
||||||
|
[node name="VOPlayer8" type="AudioStreamPlayer2D" parent="Hack"]
|
||||||
|
stream = SubResource("AudioStreamRandomizer_qglry")
|
||||||
|
bus = &"VoiceOver"
|
||||||
|
|
||||||
|
[node name="VOPlayer9" type="AudioStreamPlayer2D" parent="Hack"]
|
||||||
|
stream = SubResource("AudioStreamRandomizer_ynj43")
|
||||||
|
bus = &"VoiceOver"
|
||||||
|
|
||||||
|
[node name="VOPlayer10" type="AudioStreamPlayer2D" parent="Hack"]
|
||||||
|
stream = SubResource("AudioStreamRandomizer_1xngy")
|
||||||
|
bus = &"VoiceOver"
|
||||||
|
|
||||||
[node name="Player" parent="." instance=ExtResource("9_qv2s2")]
|
[node name="Player" parent="." instance=ExtResource("9_qv2s2")]
|
||||||
position = Vector2(344, 277)
|
position = Vector2(344, 277)
|
||||||
walk_speed = 100.0
|
walk_speed = 100.0
|
||||||
|
|
||||||
[connection signal="event_triggered" from="WrongDoor" to="." method="_on_wrong_door_event_triggered"]
|
[node name="Ambiance" type="AudioStreamPlayer2D" parent="Player"]
|
||||||
[connection signal="event_triggered" from="WrongTabouret" to="." method="_on_interactible_triggered"]
|
stream = ExtResource("3_5bw7o")
|
||||||
[connection signal="event_triggered" from="RightDoor" to="." method="_on_right_door_event_triggered"]
|
autoplay = true
|
||||||
|
bus = &"Ambiance"
|
||||||
|
|
||||||
|
[node name="Music" type="AudioStreamPlayer2D" parent="Player"]
|
||||||
|
stream = ExtResource("4_o1p8b")
|
||||||
|
autoplay = true
|
||||||
|
bus = &"Music"
|
||||||
|
|
||||||
|
[node name="Interact" type="AudioStreamPlayer2D" parent="Player"]
|
||||||
|
stream = ExtResource("15_7ac63")
|
||||||
|
|
||||||
|
[node name="Lights" type="Node2D" parent="."]
|
||||||
|
|
||||||
|
[node name="PointLight2D" type="PointLight2D" parent="Lights"]
|
||||||
|
position = Vector2(236, -43)
|
||||||
|
texture = ExtResource("7_7ac63")
|
||||||
|
|
||||||
|
[node name="PointLight2D2" type="PointLight2D" parent="Lights"]
|
||||||
|
position = Vector2(342, -15)
|
||||||
|
texture = ExtResource("7_7ac63")
|
||||||
|
|
||||||
|
[node name="PointLight2D3" type="PointLight2D" parent="Lights"]
|
||||||
|
position = Vector2(468, -6)
|
||||||
|
texture = ExtResource("7_7ac63")
|
||||||
|
|
||||||
|
[node name="TimerBetweenVO" type="Timer" parent="."]
|
||||||
|
wait_time = 0.2
|
||||||
|
autostart = true
|
||||||
|
|
||||||
|
[connection signal="event_confirmed" from="GetOutDoors/WrongDoor" to="." method="_on_wrong_door_event_triggered"]
|
||||||
|
[connection signal="event_confirmed" from="GetOutDoors/RightDoor" to="." method="_on_right_door_event_triggered"]
|
||||||
|
[connection signal="event_triggered" from="RightPrise" to="." method="_on_prise_interacted"]
|
||||||
|
[connection signal="event_triggered" from="Hack/WrongHack" to="." method="_on_failed_hack"]
|
||||||
|
[connection signal="event_triggered" from="Hack/RightHack" to="." method="_on_successful_hack"]
|
||||||
|
[connection signal="timeout" from="TimerBetweenVO" to="." method="_on_timer_between_vo_timeout"]
|
||||||
|
2642
scenes/indoors/last.tscn82889820894.tmp
Normal file
2642
scenes/indoors/last.tscn82889820894.tmp
Normal file
File diff suppressed because one or more lines are too long
2642
scenes/indoors/last.tscn82897242723.tmp
Normal file
2642
scenes/indoors/last.tscn82897242723.tmp
Normal file
File diff suppressed because one or more lines are too long
@ -20,6 +20,18 @@ signal event_confirmed(event_id: String)
|
|||||||
@onready var ok_button: Button = %OkButton
|
@onready var ok_button: Button = %OkButton
|
||||||
|
|
||||||
|
|
||||||
|
func activate() -> void:
|
||||||
|
visible = true
|
||||||
|
monitorable = true
|
||||||
|
monitoring = true
|
||||||
|
|
||||||
|
|
||||||
|
func deactivate() -> void:
|
||||||
|
visible = false
|
||||||
|
monitorable = false
|
||||||
|
monitoring = false
|
||||||
|
|
||||||
|
|
||||||
# Called when the node enters the scene tree for the first time.
|
# Called when the node enters the scene tree for the first time.
|
||||||
func _ready() -> void:
|
func _ready() -> void:
|
||||||
rich_text_label.visible = false
|
rich_text_label.visible = false
|
||||||
|
@ -24,11 +24,26 @@ var current_info = 0
|
|||||||
@onready var vo_player_11: AudioStreamPlayer2D = $RightDoor/VOPlayer11
|
@onready var vo_player_11: AudioStreamPlayer2D = $RightDoor/VOPlayer11
|
||||||
@onready var vo_player_12: AudioStreamPlayer2D = $RightDoor/VOPlayer12
|
@onready var vo_player_12: AudioStreamPlayer2D = $RightDoor/VOPlayer12
|
||||||
@onready var vo_player_13: AudioStreamPlayer2D = $RightDoor/VOPlayer13
|
@onready var vo_player_13: AudioStreamPlayer2D = $RightDoor/VOPlayer13
|
||||||
|
var vo_players: Array[AudioStreamPlayer2D] = []
|
||||||
|
|
||||||
# Called when the node enters the scene tree for the first time.
|
# Called when the node enters the scene tree for the first time.
|
||||||
func _ready() -> void:
|
func _ready() -> void:
|
||||||
GUIDE.enable_mapping_context(base_mode)
|
GUIDE.enable_mapping_context(base_mode)
|
||||||
|
|
||||||
|
vo_players.append(vo_player_1)
|
||||||
|
vo_players.append(vo_player_2)
|
||||||
|
vo_players.append(vo_player_3)
|
||||||
|
vo_players.append(vo_player_4)
|
||||||
|
vo_players.append(vo_player_5)
|
||||||
|
vo_players.append(vo_player_6)
|
||||||
|
vo_players.append(vo_player_7)
|
||||||
|
vo_players.append(vo_player_8)
|
||||||
|
vo_players.append(vo_player_9)
|
||||||
|
vo_players.append(vo_player_10)
|
||||||
|
vo_players.append(vo_player_11)
|
||||||
|
vo_players.append(vo_player_12)
|
||||||
|
vo_players.append(vo_player_13)
|
||||||
|
|
||||||
|
|
||||||
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
||||||
func _process(delta: float) -> void:
|
func _process(delta: float) -> void:
|
||||||
@ -54,36 +69,10 @@ func _on_timer_between_vo_timeout() -> void:
|
|||||||
is_interjection_next = not is_interjection_next
|
is_interjection_next = not is_interjection_next
|
||||||
return
|
return
|
||||||
|
|
||||||
if current_info > 13:
|
|
||||||
|
if current_info >= len(vo_players):
|
||||||
return
|
return
|
||||||
|
|
||||||
print("info")
|
vo_players[current_info].play()
|
||||||
if current_info == 0:
|
|
||||||
vo_player_1.play()
|
|
||||||
if current_info == 1:
|
|
||||||
vo_player_2.play()
|
|
||||||
if current_info == 2:
|
|
||||||
vo_player_3.play()
|
|
||||||
if current_info == 3:
|
|
||||||
vo_player_4.play()
|
|
||||||
if current_info == 4:
|
|
||||||
vo_player_5.play()
|
|
||||||
if current_info == 5:
|
|
||||||
vo_player_6.play()
|
|
||||||
if current_info == 6:
|
|
||||||
vo_player_7.play()
|
|
||||||
if current_info == 7:
|
|
||||||
vo_player_8.play()
|
|
||||||
if current_info == 8:
|
|
||||||
vo_player_9.play()
|
|
||||||
if current_info == 9:
|
|
||||||
vo_player_10.play()
|
|
||||||
if current_info == 10:
|
|
||||||
vo_player_11.play()
|
|
||||||
if current_info == 11:
|
|
||||||
vo_player_12.play()
|
|
||||||
if current_info == 12:
|
|
||||||
vo_player_13.play()
|
|
||||||
|
|
||||||
current_info += 1
|
current_info += 1
|
||||||
is_interjection_next = not is_interjection_next
|
is_interjection_next = not is_interjection_next
|
||||||
|
132
scenes/text_wrappers/success.tscn
Normal file
132
scenes/text_wrappers/success.tscn
Normal file
@ -0,0 +1,132 @@
|
|||||||
|
[gd_scene load_steps=5 format=3 uid="uid://c677s7iscqwpf"]
|
||||||
|
|
||||||
|
[ext_resource type="PackedScene" uid="uid://bhhphcagggc1" path="res://template/scenes/credits/scrolling_credits.tscn" id="1_rvkw6"]
|
||||||
|
[ext_resource type="Script" uid="uid://bwr3tliac4mo2" path="res://scenes/text_wrappers/text_wrapper.gd" id="2_wp36u"]
|
||||||
|
[ext_resource type="PackedScene" uid="uid://bkcsjsk2ciff" path="res://addons/maaacks_menus_template/base/scenes/music_players/background_music_player.tscn" id="9_p2twt"]
|
||||||
|
[ext_resource type="Script" uid="uid://1nf36h0gms3q" path="res://addons/maaacks_menus_template/base/scripts/capture_focus.gd" id="10_4ecgc"]
|
||||||
|
|
||||||
|
[node name="Gole" instance=ExtResource("1_rvkw6")]
|
||||||
|
script = ExtResource("2_wp36u")
|
||||||
|
scene_to_trigger = "uid://domqqvcqatme5"
|
||||||
|
|
||||||
|
[node name="FailedAudio" type="AudioStreamPlayer2D" parent="." index="0"]
|
||||||
|
bus = &"VoiceOver"
|
||||||
|
|
||||||
|
[node name="AHAAudio" type="AudioStreamPlayer2D" parent="." index="1"]
|
||||||
|
autoplay = true
|
||||||
|
bus = &"VoiceOver"
|
||||||
|
|
||||||
|
[node name="BackgroundMusicPlayer" parent="." index="2" instance=ExtResource("9_p2twt")]
|
||||||
|
bus = &"Cinematique"
|
||||||
|
|
||||||
|
[node name="BackgroundColor" type="ColorRect" parent="." index="3"]
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
color = Color(0, 0, 0, 1)
|
||||||
|
|
||||||
|
[node name="BackgroundTextureRect" type="TextureRect" parent="." index="4"]
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
expand_mode = 1
|
||||||
|
stretch_mode = 5
|
||||||
|
|
||||||
|
[node name="ScrollContainer" parent="." index="5"]
|
||||||
|
visible = false
|
||||||
|
scroll_vertical = 0
|
||||||
|
|
||||||
|
[node name="CenterContainer" type="CenterContainer" parent="." index="6"]
|
||||||
|
layout_mode = 0
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
size_flags_horizontal = 3
|
||||||
|
size_flags_vertical = 3
|
||||||
|
mouse_filter = 2
|
||||||
|
|
||||||
|
[node name="VBoxContainer" type="VBoxContainer" parent="CenterContainer" index="0"]
|
||||||
|
custom_minimum_size = Vector2(600, 0)
|
||||||
|
layout_mode = 2
|
||||||
|
|
||||||
|
[node name="Message" type="Label" parent="CenterContainer/VBoxContainer" index="0"]
|
||||||
|
unique_name_in_owner = true
|
||||||
|
custom_minimum_size = Vector2(360, 0)
|
||||||
|
layout_mode = 2
|
||||||
|
size_flags_horizontal = 3
|
||||||
|
size_flags_vertical = 3
|
||||||
|
text = "__CALL IN PROGRESS__
|
||||||
|
---
|
||||||
|
__HANDSHAKE OVER__
|
||||||
|
__FINGERPRINT: NO-MECANIC__
|
||||||
|
/!\\ CONNEXION SECURE /!\\
|
||||||
|
---
|
||||||
|
VOUS AVEZ RÉUSSI!
|
||||||
|
"
|
||||||
|
horizontal_alignment = 1
|
||||||
|
vertical_alignment = 1
|
||||||
|
autowrap_mode = 3
|
||||||
|
|
||||||
|
[node name="CenterContainer" type="CenterContainer" parent="CenterContainer/VBoxContainer" index="1"]
|
||||||
|
layout_mode = 2
|
||||||
|
size_flags_horizontal = 3
|
||||||
|
size_flags_vertical = 3
|
||||||
|
|
||||||
|
[node name="HBoxContainer" type="HBoxContainer" parent="CenterContainer/VBoxContainer/CenterContainer" index="0"]
|
||||||
|
custom_minimum_size = Vector2(256, 0)
|
||||||
|
layout_mode = 2
|
||||||
|
size_flags_vertical = 3
|
||||||
|
theme_override_constants/separation = 16
|
||||||
|
script = ExtResource("10_4ecgc")
|
||||||
|
|
||||||
|
[node name="AcceptButton1" type="Button" parent="CenterContainer/VBoxContainer/CenterContainer/HBoxContainer" index="0"]
|
||||||
|
unique_name_in_owner = true
|
||||||
|
layout_mode = 2
|
||||||
|
size_flags_horizontal = 3
|
||||||
|
size_flags_vertical = 3
|
||||||
|
text = "TROP FORT DINO"
|
||||||
|
|
||||||
|
[node name="AcceptButton2" type="Button" parent="CenterContainer/VBoxContainer/CenterContainer/HBoxContainer" index="1"]
|
||||||
|
unique_name_in_owner = true
|
||||||
|
layout_mode = 2
|
||||||
|
size_flags_horizontal = 3
|
||||||
|
size_flags_vertical = 3
|
||||||
|
text = "JE SUIS UN-E ESPION-NE"
|
||||||
|
|
||||||
|
[node name="EndMessagePanel" type="Panel" parent="CenterContainer" index="1"]
|
||||||
|
unique_name_in_owner = true
|
||||||
|
visible = false
|
||||||
|
custom_minimum_size = Vector2(360, 120)
|
||||||
|
layout_mode = 2
|
||||||
|
|
||||||
|
[node name="StartConnexion" type="Timer" parent="." index="7"]
|
||||||
|
wait_time = 0.5
|
||||||
|
one_shot = true
|
||||||
|
autostart = true
|
||||||
|
|
||||||
|
[node name="FurtherConnexion" type="Timer" parent="." index="8"]
|
||||||
|
wait_time = 0.5
|
||||||
|
one_shot = true
|
||||||
|
|
||||||
|
[node name="TextStart" type="Timer" parent="." index="9"]
|
||||||
|
one_shot = true
|
||||||
|
|
||||||
|
[node name="TimeBetweenWords" type="Timer" parent="." index="10"]
|
||||||
|
wait_time = 0.15
|
||||||
|
|
||||||
|
[node name="TimeBeforeShowButtons" type="Timer" parent="." index="11"]
|
||||||
|
wait_time = 2.0
|
||||||
|
one_shot = true
|
||||||
|
|
||||||
|
[connection signal="pressed" from="CenterContainer/VBoxContainer/CenterContainer/HBoxContainer/AcceptButton1" to="." method="start_mission"]
|
||||||
|
[connection signal="pressed" from="CenterContainer/VBoxContainer/CenterContainer/HBoxContainer/AcceptButton2" to="." method="start_mission"]
|
||||||
|
[connection signal="timeout" from="StartConnexion" to="." method="_on_start_connexion_timeout"]
|
||||||
|
[connection signal="timeout" from="FurtherConnexion" to="." method="_on_further_connexion_timeout"]
|
||||||
|
[connection signal="timeout" from="TextStart" to="." method="_on_text_start_timeout"]
|
||||||
|
[connection signal="timeout" from="TimeBetweenWords" to="." method="_on_time_between_words_timeout"]
|
||||||
|
[connection signal="timeout" from="TimeBeforeShowButtons" to="." method="_on_time_before_show_buttons_timeout"]
|
Reference in New Issue
Block a user