Compare commits

..

9 Commits

Author SHA1 Message Date
8338ce3dd9 trying to change the autoload class name and extends order to fix release issue
Some checks failed
Create tag and build when new code gets to main / BumpTag (push) Successful in 12s
Create tag and build when new code gets to main / Export (push) Has been cancelled
2025-10-27 10:14:11 +01:00
39f45d418f trying to add a console to release
All checks were successful
Create tag and build when new code gets to main / BumpTag (push) Successful in 12s
Create tag and build when new code gets to main / Export (push) Successful in 7m32s
2025-10-27 09:49:52 +01:00
4e756da1ba trying simpler self made menus to fix selection and focus issues on build
All checks were successful
Create tag and build when new code gets to main / BumpTag (push) Successful in 13s
Create tag and build when new code gets to main / Export (push) Successful in 7m49s
2025-10-27 09:32:58 +01:00
919236a388 tentatives de fixer cette ui de mort
All checks were successful
Create tag and build when new code gets to main / BumpTag (push) Successful in 12s
Create tag and build when new code gets to main / Export (push) Successful in 8m12s
2025-10-26 19:06:37 +01:00
ef33336975 menus and settings
All checks were successful
Create tag and build when new code gets to main / BumpTag (push) Successful in 13s
Create tag and build when new code gets to main / Export (push) Successful in 8m15s
2025-10-23 15:21:33 +02:00
916ff1921c dash drop indicators
All checks were successful
Create tag and build when new code gets to main / BumpTag (push) Successful in 13s
Create tag and build when new code gets to main / Export (push) Successful in 8m13s
2025-10-20 11:42:14 +02:00
70e3f70bcc dash indicators
All checks were successful
Create tag and build when new code gets to main / BumpTag (push) Successful in 12s
Create tag and build when new code gets to main / Export (push) Successful in 8m25s
2025-10-17 16:53:23 +02:00
417d9f5a6b changed main scene
All checks were successful
Create tag and build when new code gets to main / BumpTag (push) Successful in 14s
Create tag and build when new code gets to main / Export (push) Successful in 9m35s
2025-10-16 17:17:13 +02:00
591993a1f2 textures
All checks were successful
Create tag and build when new code gets to main / BumpTag (push) Successful in 15s
Create tag and build when new code gets to main / Export (push) Successful in 8m38s
2025-10-16 11:27:55 +02:00
186 changed files with 3605 additions and 108 deletions

View File

@@ -1,6 +1,20 @@
[gd_scene load_steps=2 format=3 uid="uid://cc37235kj4384"]
[gd_scene load_steps=6 format=3 uid="uid://cc37235kj4384"]
[ext_resource type="Script" uid="uid://b5oej1q4h7jvh" path="res://addons/maaacks_game_template/base/scripts/ui_sound_controller.gd" id="1_dmagn"]
[ext_resource type="AudioStream" uid="uid://d0iuat23cm2yd" path="res://assets/audio/kenney_ui-audio/mouseclick1.ogg" id="2_7f8wo"]
[ext_resource type="AudioStream" uid="uid://skgtkftvx1gn" path="res://assets/audio/kenney_ui-audio/switch20.ogg" id="3_nvwb3"]
[ext_resource type="AudioStream" uid="uid://dybdbi28p8a7o" path="res://assets/audio/kenney_ui-audio/switch3.ogg" id="4_e13bv"]
[ext_resource type="AudioStream" uid="uid://o3wvigf0nhg" path="res://assets/audio/kenney_ui-audio/switch4.ogg" id="5_42wer"]
[node name="ProjectUISoundController" type="Node"]
script = ExtResource("1_dmagn")
button_hovered = ExtResource("2_7f8wo")
button_focused = ExtResource("2_7f8wo")
button_pressed = ExtResource("3_nvwb3")
tab_hovered = ExtResource("2_7f8wo")
tab_selected = ExtResource("3_nvwb3")
slider_hovered = ExtResource("2_7f8wo")
slider_focused = ExtResource("2_7f8wo")
slider_drag_started = ExtResource("4_e13bv")
slider_drag_ended = ExtResource("5_42wer")
line_hovered = ExtResource("2_7f8wo")

View File

@@ -1,5 +1,5 @@
class_name SceneLoaderClass
extends Node
class_name SceneLoaderClass
## Autoload class for loading scenes with an optional loading screen.
signal scene_loaded

View File

@@ -4,7 +4,21 @@ extends OverlaidMenu
@export var options_packed_scene : PackedScene
@export_file("*.tscn") var main_menu_scene : String
@export var menu_context : GUIDEMappingContext
var popup_open : Node
var previous_mapping_contexts : Array
func on_enter_tree() -> void:
pass
#previous_mapping_contexts = GUIDE.get_enabled_mapping_contexts()
#GUIDE.enable_mapping_context(menu_context)
func on_exit_tree() -> void:
pass
#GUIDE.disable_mapping_context(menu_context)
#for previous_context in previous_mapping_contexts:
#GUIDE.enable_mapping_context(previous_context)
func close_popup() -> void:
if popup_open != null:

View File

@@ -2,17 +2,28 @@ class_name PauseMenuController
extends Node
## Node for opening a pause menu when detecting a 'ui_cancel' event.
@export var pause_menu_packed : PackedScene
@export var focused_viewport : Viewport
@export_group("Inputs")
@export var base_mode:GUIDEMappingContext
@export var pause:GUIDEAction
func _ready() -> void:
# GUIDE.enable_mapping_context(base_mode)
pause.triggered.connect(on_input_pause)
func on_input_pause():
if not focused_viewport:
focused_viewport = get_viewport()
var _initial_focus_control = focused_viewport.gui_get_focus_owner()
var current_menu = pause_menu_packed.instantiate()
get_tree().current_scene.call_deferred("add_child", current_menu)
await current_menu.tree_exited
if is_inside_tree() and _initial_focus_control:
_initial_focus_control.grab_focus()
func _unhandled_input(event : InputEvent) -> void:
if event.is_action_pressed("ui_cancel"):
if not focused_viewport:
focused_viewport = get_viewport()
var _initial_focus_control = focused_viewport.gui_get_focus_owner()
var current_menu = pause_menu_packed.instantiate()
get_tree().current_scene.call_deferred("add_child", current_menu)
await current_menu.tree_exited
if is_inside_tree() and _initial_focus_control:
_initial_focus_control.grab_focus()
pass

View File

@@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://f8cvr5s041ej"
path="res://.godot/imported/637083__nox_sound__ambiance_nature_night_cricket_calm_loop_stereo.wav-2e700b8c124a9677672d20eb38b6b815.sample"
[deps]
source_file="res://assets/audio/ambiance/637083__nox_sound__ambiance_nature_night_cricket_calm_loop_stereo.wav"
dest_files=["res://.godot/imported/637083__nox_sound__ambiance_nature_night_cricket_calm_loop_stereo.wav-2e700b8c124a9677672d20eb38b6b815.sample"]
[params]
force/8_bit=false
force/mono=false
force/max_rate=false
force/max_rate_hz=44100
edit/trim=false
edit/normalize=false
edit/loop_mode=2
edit/loop_begin=0
edit/loop_end=-1
compress/mode=2

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://cl6h0mjha1nx6"
path="res://.godot/imported/click1.ogg-e43207507bdf9996dc6eee9d8de2d6ae.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/click1.ogg"
dest_files=["res://.godot/imported/click1.ogg-e43207507bdf9996dc6eee9d8de2d6ae.oggvorbisstr"]
[params]
loop=false
loop_offset=0.0
bpm=0.0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://dwlx1fle7occu"
path="res://.godot/imported/click2.ogg-cc6f77c66c2a5c5fb2b99a8dcacf5dbb.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/click2.ogg"
dest_files=["res://.godot/imported/click2.ogg-cc6f77c66c2a5c5fb2b99a8dcacf5dbb.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://d1lxvmeu7xqhc"
path="res://.godot/imported/click3.ogg-53ec2ad3446a1599306ba5fb69f83ef6.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/click3.ogg"
dest_files=["res://.godot/imported/click3.ogg-53ec2ad3446a1599306ba5fb69f83ef6.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://v4b7r86gw4jv"
path="res://.godot/imported/click4.ogg-578b6508ba2c2082ae1380997e4a7d4b.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/click4.ogg"
dest_files=["res://.godot/imported/click4.ogg-578b6508ba2c2082ae1380997e4a7d4b.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://bi8dejhv7sow8"
path="res://.godot/imported/click5.ogg-c58aa7f0d158cbf4264b42d0b73f63a0.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/click5.ogg"
dest_files=["res://.godot/imported/click5.ogg-c58aa7f0d158cbf4264b42d0b73f63a0.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://d0iuat23cm2yd"
path="res://.godot/imported/mouseclick1.ogg-4cb23de28f1184f8690200698d0db0a0.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/mouseclick1.ogg"
dest_files=["res://.godot/imported/mouseclick1.ogg-4cb23de28f1184f8690200698d0db0a0.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://c3m0rgi6i5m64"
path="res://.godot/imported/mouserelease1.ogg-aa3af07b09ea13ea295da153698ca257.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/mouserelease1.ogg"
dest_files=["res://.godot/imported/mouserelease1.ogg-aa3af07b09ea13ea295da153698ca257.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://ccwsi7fn6iuyi"
path="res://.godot/imported/rollover1.ogg-573772d4df2f7b01e70366ab1ff70f0a.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/rollover1.ogg"
dest_files=["res://.godot/imported/rollover1.ogg-573772d4df2f7b01e70366ab1ff70f0a.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://duwbtggblpjr7"
path="res://.godot/imported/rollover2.ogg-10e5be71249d57bb88d3e8f876eafa29.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/rollover2.ogg"
dest_files=["res://.godot/imported/rollover2.ogg-10e5be71249d57bb88d3e8f876eafa29.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://chaebu4sj7tyu"
path="res://.godot/imported/rollover3.ogg-fd33b122537c769a7bf3909c83d3c93d.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/rollover3.ogg"
dest_files=["res://.godot/imported/rollover3.ogg-fd33b122537c769a7bf3909c83d3c93d.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://b2vep0mcavvxe"
path="res://.godot/imported/rollover4.ogg-145aadee75ad5532dc3cac53b84ebc25.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/rollover4.ogg"
dest_files=["res://.godot/imported/rollover4.ogg-145aadee75ad5532dc3cac53b84ebc25.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://d0uwts21x0jag"
path="res://.godot/imported/rollover5.ogg-2dd3bd022e4f8e41b87f62179f4793c4.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/rollover5.ogg"
dest_files=["res://.godot/imported/rollover5.ogg-2dd3bd022e4f8e41b87f62179f4793c4.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://b48d8rxg8wlt5"
path="res://.godot/imported/rollover6.ogg-373eb402fd4162819ce38aa92f28bc1a.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/rollover6.ogg"
dest_files=["res://.godot/imported/rollover6.ogg-373eb402fd4162819ce38aa92f28bc1a.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://ccmrm6u1yuw85"
path="res://.godot/imported/switch1.ogg-75dc9faf898d639de0a49ae458eb46ca.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/switch1.ogg"
dest_files=["res://.godot/imported/switch1.ogg-75dc9faf898d639de0a49ae458eb46ca.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://bpw83da80rqba"
path="res://.godot/imported/switch10.ogg-e0700eb727673f65ad2a154a0b179f7e.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/switch10.ogg"
dest_files=["res://.godot/imported/switch10.ogg-e0700eb727673f65ad2a154a0b179f7e.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://bnmoxyho0k1xw"
path="res://.godot/imported/switch11.ogg-171e5ab339b098e2cd6f2b86251650aa.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/switch11.ogg"
dest_files=["res://.godot/imported/switch11.ogg-171e5ab339b098e2cd6f2b86251650aa.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://d3a70bxs4d73m"
path="res://.godot/imported/switch12.ogg-19b8fd47adeb2fdba03c0f85b92680c5.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/switch12.ogg"
dest_files=["res://.godot/imported/switch12.ogg-19b8fd47adeb2fdba03c0f85b92680c5.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://edx7v3d1ghqr"
path="res://.godot/imported/switch13.ogg-280233c5aed9d2e2a0da13be705ea723.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/switch13.ogg"
dest_files=["res://.godot/imported/switch13.ogg-280233c5aed9d2e2a0da13be705ea723.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://sj1hwfpmunyh"
path="res://.godot/imported/switch14.ogg-066e5a73769d89d43c987be5f89217dc.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/switch14.ogg"
dest_files=["res://.godot/imported/switch14.ogg-066e5a73769d89d43c987be5f89217dc.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://dev37gtb8t4w"
path="res://.godot/imported/switch15.ogg-fe81387c978a8360fa2e91609b967b85.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/switch15.ogg"
dest_files=["res://.godot/imported/switch15.ogg-fe81387c978a8360fa2e91609b967b85.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://b7hb0obkwicb5"
path="res://.godot/imported/switch16.ogg-9d5085e26599492512d54326451d8859.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/switch16.ogg"
dest_files=["res://.godot/imported/switch16.ogg-9d5085e26599492512d54326451d8859.oggvorbisstr"]
[params]
loop=false
loop_offset=0.0
bpm=0.0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://d3p0rv5i32n22"
path="res://.godot/imported/switch17.ogg-dcaa770d48d58ecec9c7372cc890a174.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/switch17.ogg"
dest_files=["res://.godot/imported/switch17.ogg-dcaa770d48d58ecec9c7372cc890a174.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://dfwh2tidppb4k"
path="res://.godot/imported/switch18.ogg-d51344c7c796b8d70997cad6d2bea5b8.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/switch18.ogg"
dest_files=["res://.godot/imported/switch18.ogg-d51344c7c796b8d70997cad6d2bea5b8.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://c0nmmligmxgpi"
path="res://.godot/imported/switch19.ogg-a223608b7d6d38bffdd500f18977d519.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/switch19.ogg"
dest_files=["res://.godot/imported/switch19.ogg-a223608b7d6d38bffdd500f18977d519.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://cditcf50xd4gg"
path="res://.godot/imported/switch2.ogg-4fd694310e8288830d31b03f1b0d11ba.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/switch2.ogg"
dest_files=["res://.godot/imported/switch2.ogg-4fd694310e8288830d31b03f1b0d11ba.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://skgtkftvx1gn"
path="res://.godot/imported/switch20.ogg-47315ee94a76214ca4683c19918734ec.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/switch20.ogg"
dest_files=["res://.godot/imported/switch20.ogg-47315ee94a76214ca4683c19918734ec.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://5rdt8u6yq0v1"
path="res://.godot/imported/switch21.ogg-e9fe6b5d36ab829ebf253640c695aa9b.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/switch21.ogg"
dest_files=["res://.godot/imported/switch21.ogg-e9fe6b5d36ab829ebf253640c695aa9b.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://cgk3ifnqeytaa"
path="res://.godot/imported/switch22.ogg-ed3d9f36c51ed4c5780e2ca4b386a3b9.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/switch22.ogg"
dest_files=["res://.godot/imported/switch22.ogg-ed3d9f36c51ed4c5780e2ca4b386a3b9.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://ba5ubcnk2yhq5"
path="res://.godot/imported/switch23.ogg-94c91e4abdf950ab9e048f954fc900ef.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/switch23.ogg"
dest_files=["res://.godot/imported/switch23.ogg-94c91e4abdf950ab9e048f954fc900ef.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://dgfshgucfe1m1"
path="res://.godot/imported/switch24.ogg-ad495a9cfeed3613e34b109133b92e4d.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/switch24.ogg"
dest_files=["res://.godot/imported/switch24.ogg-ad495a9cfeed3613e34b109133b92e4d.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://cg3y0kih0tfey"
path="res://.godot/imported/switch25.ogg-64c51c35f9024953e0952eeea23d2b9c.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/switch25.ogg"
dest_files=["res://.godot/imported/switch25.ogg-64c51c35f9024953e0952eeea23d2b9c.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://cfqsx460nfu8k"
path="res://.godot/imported/switch26.ogg-29b41241ffe4984b23b605990f8b0727.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/switch26.ogg"
dest_files=["res://.godot/imported/switch26.ogg-29b41241ffe4984b23b605990f8b0727.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://dbbqcwxety62q"
path="res://.godot/imported/switch27.ogg-30e386c677da42fd31af914863efe755.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/switch27.ogg"
dest_files=["res://.godot/imported/switch27.ogg-30e386c677da42fd31af914863efe755.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://denenycp6mv64"
path="res://.godot/imported/switch28.ogg-84c179ff833510072b3b24e27467b090.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/switch28.ogg"
dest_files=["res://.godot/imported/switch28.ogg-84c179ff833510072b3b24e27467b090.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://b2062jp3dkcw5"
path="res://.godot/imported/switch29.ogg-417404c3b10f26d0ce501e94c2327797.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/switch29.ogg"
dest_files=["res://.godot/imported/switch29.ogg-417404c3b10f26d0ce501e94c2327797.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://dybdbi28p8a7o"
path="res://.godot/imported/switch3.ogg-5f016c805cd42acd9104e13edc372e2e.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/switch3.ogg"
dest_files=["res://.godot/imported/switch3.ogg-5f016c805cd42acd9104e13edc372e2e.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://cpnsss5vn540j"
path="res://.godot/imported/switch30.ogg-7f2d2d494cd800e224a37bda1f0bb782.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/switch30.ogg"
dest_files=["res://.godot/imported/switch30.ogg-7f2d2d494cd800e224a37bda1f0bb782.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://urkvduoelh14"
path="res://.godot/imported/switch31.ogg-b7bbbc3b1b9da5a16d97260cc4c8885b.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/switch31.ogg"
dest_files=["res://.godot/imported/switch31.ogg-b7bbbc3b1b9da5a16d97260cc4c8885b.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://ceygrd2i00746"
path="res://.godot/imported/switch32.ogg-5c6488feb02359df92bfb7243519a05f.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/switch32.ogg"
dest_files=["res://.godot/imported/switch32.ogg-5c6488feb02359df92bfb7243519a05f.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://bq3xgtn4nw1hm"
path="res://.godot/imported/switch33.ogg-eef53e29449d23422d601e1a873a80b4.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/switch33.ogg"
dest_files=["res://.godot/imported/switch33.ogg-eef53e29449d23422d601e1a873a80b4.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://do8n0ftcri3xd"
path="res://.godot/imported/switch34.ogg-39d3fc8f252cc51ff77a099dbcd88b37.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/switch34.ogg"
dest_files=["res://.godot/imported/switch34.ogg-39d3fc8f252cc51ff77a099dbcd88b37.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://c45dcxenvu6sx"
path="res://.godot/imported/switch35.ogg-15dd654f4422881550b3f3deed2bfb6a.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/switch35.ogg"
dest_files=["res://.godot/imported/switch35.ogg-15dd654f4422881550b3f3deed2bfb6a.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://s5xf2ixxndll"
path="res://.godot/imported/switch36.ogg-e5684c7c329beae9328b654e199781ca.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/switch36.ogg"
dest_files=["res://.godot/imported/switch36.ogg-e5684c7c329beae9328b654e199781ca.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://b5ls74fcv5gf1"
path="res://.godot/imported/switch37.ogg-4f931d2870bee498dcee0c212ebfaa65.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/switch37.ogg"
dest_files=["res://.godot/imported/switch37.ogg-4f931d2870bee498dcee0c212ebfaa65.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://ccfy8lifr607x"
path="res://.godot/imported/switch38.ogg-07a45c0583de2ec78a2eb32a69bf756f.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/switch38.ogg"
dest_files=["res://.godot/imported/switch38.ogg-07a45c0583de2ec78a2eb32a69bf756f.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

View File

@@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://o3wvigf0nhg"
path="res://.godot/imported/switch4.ogg-19535b483d8ef45adfedd0795181f83f.oggvorbisstr"
[deps]
source_file="res://assets/audio/kenney_ui-audio/switch4.ogg"
dest_files=["res://.godot/imported/switch4.ogg-19535b483d8ef45adfedd0795181f83f.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More