Compare commits
70 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c6559d593a | |||
| e32dac9e6e | |||
| 30b4d1a2eb | |||
| 2fa4ce68e7 | |||
| 80e533d98e | |||
| 0e3e258fd3 | |||
| c7991198ea | |||
| 1a4b2f4c19 | |||
| 52a9c3f120 | |||
| 2301884418 | |||
| 04054cfeae | |||
| 66be7838bb | |||
| 1eb65d1520 | |||
| f2a39316ba | |||
| fffd8c947b | |||
| a1d57d6a1a | |||
| 941205af2b | |||
| 6c2ad89687 | |||
| 59494f9e98 | |||
| 510246c341 | |||
| b184bcdea5 | |||
| cf52af4237 | |||
| e0fc301414 | |||
| b792e8721c | |||
| 2e2df4ff50 | |||
| a84e0ecfb3 | |||
| f828c1d786 | |||
| a98785abec | |||
| 7c4e541446 | |||
| 7d31d17034 | |||
| 2ff8cc74cc | |||
| fabafbb35b | |||
| 0b0163a0ac | |||
| 5b3d6c9f19 | |||
| ac14352e7f | |||
| 27130257c9 | |||
| e70a2e7537 | |||
| 6051588f24 | |||
| c895dfe9a0 | |||
| 1ea3945cf6 | |||
| 29d9f44142 | |||
| 31b7b5ea0c | |||
| 78ab2cc637 | |||
| fd16342aca | |||
| 2d3a1b0d4c | |||
| 1c7abeb0d9 | |||
| 97828ecdda | |||
| 9d8877cc67 | |||
| fd7b55452b | |||
| 1cafe6e96d | |||
| ea8821b41a | |||
| 8338ce3dd9 | |||
| 39f45d418f | |||
| 4e756da1ba | |||
| 919236a388 | |||
| ef33336975 | |||
| 916ff1921c | |||
| 70e3f70bcc | |||
| 417d9f5a6b | |||
| 591993a1f2 | |||
| e39620ce52 | |||
| 7312b2b22b | |||
| 45e8ac2f3c | |||
| 46bea7ba14 | |||
| c35ce49669 | |||
| c1e8235895 | |||
| 1813973daa | |||
| 7b036c5889 | |||
| 88d20431ce | |||
| d15542e4ed |
@@ -40,7 +40,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
needs: BumpTag
|
||||
container:
|
||||
image: barichello/godot-ci:mono-4.4.1
|
||||
image: barichello/godot-ci:mono-4.5
|
||||
|
||||
steps:
|
||||
- name: Install node, curl and zip
|
||||
@@ -54,22 +54,12 @@ jobs:
|
||||
- name: Import resources and build solution
|
||||
run: |
|
||||
godot --headless --editor --build-solutions --quit --import --path $PWD
|
||||
|
||||
- name: Build Windows
|
||||
run: |
|
||||
mkdir -v -p build/windows
|
||||
godot --headless --verbose --build-solutions --import --export-release "Windows Desktop" build/windows/${{ env.GAME_NAME }}.exe
|
||||
godot --headless --verbose --build-solutions --export-release "Windows Desktop" build/windows/${{ env.GAME_NAME }}.exe
|
||||
zip -r Windows.zip build/windows
|
||||
- name: Linux Build
|
||||
run: |
|
||||
mkdir -v -p build/linux
|
||||
godot --headless --verbose --export-release "Linux/X11" build/linux/${{ env.GAME_NAME }}.x86_64
|
||||
zip -r Linux.zip build/linux
|
||||
- name: Mac Build
|
||||
run: |
|
||||
mkdir -v -p build/mac
|
||||
godot --headless --verbose --export-release "macOS" build/mac/${{ env.GAME_NAME }}.zip
|
||||
zip -r Mac.zip build/mac
|
||||
|
||||
- name: Upload to Itch
|
||||
uses: KikimoraGames/itch-publish@v0.0.3
|
||||
with:
|
||||
@@ -79,6 +69,27 @@ jobs:
|
||||
buildNumber: ${{ needs.BumpTag.outputs.tag_name }}
|
||||
gameData: Windows.zip
|
||||
buildChannel: windows
|
||||
|
||||
- name: Build Windows ARM
|
||||
run: |
|
||||
mkdir -v -p build/windowsArm
|
||||
godot --headless --verbose --build-solutions --export-release "Windows ARM" build/windowsArm/${{ env.GAME_NAME }}.exe
|
||||
zip -r WindowsArm.zip build/windowsArm
|
||||
- name: Upload to Itch
|
||||
uses: KikimoraGames/itch-publish@v0.0.3
|
||||
with:
|
||||
butlerApiKey: ${{ secrets.BUTLER_TOKEN }}
|
||||
itchUsername: ${{ env.ITCHIO_USERNAME }}
|
||||
itchGameId: ${{ env.ITCHIO_GAMEID }}
|
||||
buildNumber: ${{ needs.BumpTag.outputs.tag_name }}
|
||||
gameData: WindowsArm.zip
|
||||
buildChannel: windows-arm
|
||||
|
||||
- name: Linux Build
|
||||
run: |
|
||||
mkdir -v -p build/linux
|
||||
godot --headless --verbose --export-release "Linux/X11" build/linux/${{ env.GAME_NAME }}.x86_64
|
||||
zip -r Linux.zip build/linux
|
||||
- name: Upload to Itch
|
||||
uses: KikimoraGames/itch-publish@v0.0.3
|
||||
with:
|
||||
@@ -87,7 +98,13 @@ jobs:
|
||||
itchGameId: ${{ env.ITCHIO_GAMEID }}
|
||||
buildNumber: ${{ needs.BumpTag.outputs.tag_name }}
|
||||
gameData: Linux.zip
|
||||
buildChannel: linux
|
||||
buildChannel: linux
|
||||
|
||||
- name: Mac Build
|
||||
run: |
|
||||
mkdir -v -p build/mac
|
||||
godot --headless --verbose --export-release "macOS" build/mac/${{ env.GAME_NAME }}.zip
|
||||
zip -r Mac.zip build/mac
|
||||
- name: Upload to Itch
|
||||
uses: KikimoraGames/itch-publish@v0.0.3
|
||||
with:
|
||||
|
||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -10,6 +10,7 @@
|
||||
.import/
|
||||
|
||||
/builds
|
||||
/communication
|
||||
|
||||
# Imported translations (automatically generated from CSV files)
|
||||
*.translation
|
||||
@@ -1,4 +1,4 @@
|
||||
<Project Sdk="Godot.NET.Sdk/4.4.1">
|
||||
<Project Sdk="Godot.NET.Sdk/4.5.0">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<EnableDynamicLoading>true</EnableDynamicLoading>
|
||||
|
||||
131
Movement tests.csproj.old
Normal file
131
Movement tests.csproj.old
Normal file
@@ -0,0 +1,131 @@
|
||||
<Project Sdk="Godot.NET.Sdk/4.4.1">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<EnableDynamicLoading>true</EnableDynamicLoading>
|
||||
<RootNamespace>Movementtests</RootNamespace>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="export_presets.cfg" />
|
||||
<Content Include="menus\assets\git_logo\Git-Logo-2Color.png" />
|
||||
<Content Include="menus\assets\git_logo\Git-Logo-2Color.png.import" />
|
||||
<Content Include="menus\assets\git_logo\LICENSE.txt" />
|
||||
<Content Include="menus\assets\godot_engine_logo\LICENSE.txt" />
|
||||
<Content Include="menus\assets\godot_engine_logo\logo_vertical_color_dark.png" />
|
||||
<Content Include="menus\assets\godot_engine_logo\logo_vertical_color_dark.png.import" />
|
||||
<Content Include="menus\assets\icon.png" />
|
||||
<Content Include="menus\assets\icon.png.import" />
|
||||
<Content Include="menus\ATTRIBUTION.md" />
|
||||
<Content Include="menus\resources\themes\expedition.tres" />
|
||||
<Content Include="menus\resources\themes\gravity.tres" />
|
||||
<Content Include="menus\resources\themes\grow.tres" />
|
||||
<Content Include="menus\resources\themes\lab.tres" />
|
||||
<Content Include="menus\resources\themes\lore.tres" />
|
||||
<Content Include="menus\resources\themes\steal_this_theme.tres" />
|
||||
<Content Include="menus\scenes\credits\scrollable_credits.gd" />
|
||||
<Content Include="menus\scenes\credits\scrollable_credits.gd.uid" />
|
||||
<Content Include="menus\scenes\credits\scrollable_credits.tscn" />
|
||||
<Content Include="menus\scenes\credits\scrolling_credits.gd" />
|
||||
<Content Include="menus\scenes\credits\scrolling_credits.gd.uid" />
|
||||
<Content Include="menus\scenes\credits\scrolling_credits.tscn" />
|
||||
<Content Include="menus\scenes\end_credits\end_credits.gd" />
|
||||
<Content Include="menus\scenes\end_credits\end_credits.gd.uid" />
|
||||
<Content Include="menus\scenes\end_credits\end_credits.tscn" />
|
||||
<Content Include="menus\scenes\game_scene\configurable_sub_viewport.gd" />
|
||||
<Content Include="menus\scenes\game_scene\configurable_sub_viewport.gd.uid" />
|
||||
<Content Include="menus\scenes\game_scene\game_ui.tscn" />
|
||||
<Content Include="menus\scenes\game_scene\input_display_label.gd" />
|
||||
<Content Include="menus\scenes\game_scene\input_display_label.gd.uid" />
|
||||
<Content Include="menus\scenes\game_scene\levels\level.gd" />
|
||||
<Content Include="menus\scenes\game_scene\levels\level.gd.uid" />
|
||||
<Content Include="menus\scenes\game_scene\levels\level_1.tscn" />
|
||||
<Content Include="menus\scenes\game_scene\levels\level_2.tscn" />
|
||||
<Content Include="menus\scenes\game_scene\levels\level_3.tscn" />
|
||||
<Content Include="menus\scenes\game_scene\tutorials\tutorial_1.tscn" />
|
||||
<Content Include="menus\scenes\game_scene\tutorials\tutorial_2.tscn" />
|
||||
<Content Include="menus\scenes\game_scene\tutorials\tutorial_3.tscn" />
|
||||
<Content Include="menus\scenes\game_scene\tutorial_manager.gd" />
|
||||
<Content Include="menus\scenes\game_scene\tutorial_manager.gd.uid" />
|
||||
<Content Include="menus\scenes\loading_screen\level_loading_screen.tscn" />
|
||||
<Content Include="menus\scenes\loading_screen\loading_screen.gd" />
|
||||
<Content Include="menus\scenes\loading_screen\loading_screen.gd.uid" />
|
||||
<Content Include="menus\scenes\loading_screen\loading_screen.tscn" />
|
||||
<Content Include="menus\scenes\loading_screen\loading_screen_with_shader_caching.gd" />
|
||||
<Content Include="menus\scenes\loading_screen\loading_screen_with_shader_caching.gd.uid" />
|
||||
<Content Include="menus\scenes\loading_screen\loading_screen_with_shader_caching.tscn" />
|
||||
<Content Include="menus\scenes\menus\level_select_menu\level_select_menu.gd" />
|
||||
<Content Include="menus\scenes\menus\level_select_menu\level_select_menu.gd.uid" />
|
||||
<Content Include="menus\scenes\menus\level_select_menu\level_select_menu.tscn" />
|
||||
<Content Include="menus\scenes\menus\main_menu\main_menu.gd" />
|
||||
<Content Include="menus\scenes\menus\main_menu\main_menu.gd.uid" />
|
||||
<Content Include="menus\scenes\menus\main_menu\main_menu.tscn" />
|
||||
<Content Include="menus\scenes\menus\main_menu\main_menu_with_animations.gd" />
|
||||
<Content Include="menus\scenes\menus\main_menu\main_menu_with_animations.gd.uid" />
|
||||
<Content Include="menus\scenes\menus\main_menu\main_menu_with_animations.tscn" />
|
||||
<Content Include="menus\scenes\menus\options_menu\audio\audio_input_option_control.gd" />
|
||||
<Content Include="menus\scenes\menus\options_menu\audio\audio_input_option_control.gd.uid" />
|
||||
<Content Include="menus\scenes\menus\options_menu\audio\audio_input_option_control.tscn" />
|
||||
<Content Include="menus\scenes\menus\options_menu\audio\audio_options_menu.gd" />
|
||||
<Content Include="menus\scenes\menus\options_menu\audio\audio_options_menu.gd.uid" />
|
||||
<Content Include="menus\scenes\menus\options_menu\audio\audio_options_menu.tscn" />
|
||||
<Content Include="menus\scenes\menus\options_menu\game\game_options_menu.gd" />
|
||||
<Content Include="menus\scenes\menus\options_menu\game\game_options_menu.gd.uid" />
|
||||
<Content Include="menus\scenes\menus\options_menu\game\game_options_menu.tscn" />
|
||||
<Content Include="menus\scenes\menus\options_menu\game\reset_game_control\reset_game_control.gd" />
|
||||
<Content Include="menus\scenes\menus\options_menu\game\reset_game_control\reset_game_control.gd.uid" />
|
||||
<Content Include="menus\scenes\menus\options_menu\game\reset_game_control\reset_game_control.tscn" />
|
||||
<Content Include="menus\scenes\menus\options_menu\input\input_extras_menu.tscn" />
|
||||
<Content Include="menus\scenes\menus\options_menu\input\input_options_menu.gd" />
|
||||
<Content Include="menus\scenes\menus\options_menu\input\input_options_menu.gd.uid" />
|
||||
<Content Include="menus\scenes\menus\options_menu\input\input_options_menu.tscn" />
|
||||
<Content Include="menus\scenes\menus\options_menu\input\input_options_menu_with_mouse_sensitivity.tscn" />
|
||||
<Content Include="menus\scenes\menus\options_menu\master_options_menu.gd" />
|
||||
<Content Include="menus\scenes\menus\options_menu\master_options_menu.gd.uid" />
|
||||
<Content Include="menus\scenes\menus\options_menu\master_options_menu.tscn" />
|
||||
<Content Include="menus\scenes\menus\options_menu\master_options_menu_with_tabs.tscn" />
|
||||
<Content Include="menus\scenes\menus\options_menu\mini_options_menu.gd" />
|
||||
<Content Include="menus\scenes\menus\options_menu\mini_options_menu.gd.uid" />
|
||||
<Content Include="menus\scenes\menus\options_menu\mini_options_menu.tscn" />
|
||||
<Content Include="menus\scenes\menus\options_menu\mini_options_menu_with_reset.gd" />
|
||||
<Content Include="menus\scenes\menus\options_menu\mini_options_menu_with_reset.gd.uid" />
|
||||
<Content Include="menus\scenes\menus\options_menu\mini_options_menu_with_reset.tscn" />
|
||||
<Content Include="menus\scenes\menus\options_menu\video\video_options_menu.gd" />
|
||||
<Content Include="menus\scenes\menus\options_menu\video\video_options_menu.gd.uid" />
|
||||
<Content Include="menus\scenes\menus\options_menu\video\video_options_menu.tscn" />
|
||||
<Content Include="menus\scenes\menus\options_menu\video\video_options_menu_with_extras.tscn" />
|
||||
<Content Include="menus\scenes\opening\opening.gd" />
|
||||
<Content Include="menus\scenes\opening\opening.gd.uid" />
|
||||
<Content Include="menus\scenes\opening\opening.tscn" />
|
||||
<Content Include="menus\scenes\opening\opening_with_logo.tscn" />
|
||||
<Content Include="menus\scenes\overlaid_menus\game_won_menu.gd" />
|
||||
<Content Include="menus\scenes\overlaid_menus\game_won_menu.gd.uid" />
|
||||
<Content Include="menus\scenes\overlaid_menus\game_won_menu.tscn" />
|
||||
<Content Include="menus\scenes\overlaid_menus\level_lost_menu.gd" />
|
||||
<Content Include="menus\scenes\overlaid_menus\level_lost_menu.gd.uid" />
|
||||
<Content Include="menus\scenes\overlaid_menus\level_lost_menu.tscn" />
|
||||
<Content Include="menus\scenes\overlaid_menus\level_won_menu.gd" />
|
||||
<Content Include="menus\scenes\overlaid_menus\level_won_menu.gd.uid" />
|
||||
<Content Include="menus\scenes\overlaid_menus\level_won_menu.tscn" />
|
||||
<Content Include="menus\scenes\overlaid_menus\mini_options_overlaid_menu.tscn" />
|
||||
<Content Include="menus\scenes\overlaid_menus\overlaid_menu.gd" />
|
||||
<Content Include="menus\scenes\overlaid_menus\overlaid_menu.gd.uid" />
|
||||
<Content Include="menus\scenes\overlaid_menus\overlaid_menu.tscn" />
|
||||
<Content Include="menus\scenes\overlaid_menus\overlaid_menu_container.gd" />
|
||||
<Content Include="menus\scenes\overlaid_menus\overlaid_menu_container.gd.uid" />
|
||||
<Content Include="menus\scenes\overlaid_menus\overlaid_menu_container.tscn" />
|
||||
<Content Include="menus\scenes\overlaid_menus\pause_menu.gd" />
|
||||
<Content Include="menus\scenes\overlaid_menus\pause_menu.gd.uid" />
|
||||
<Content Include="menus\scenes\overlaid_menus\pause_menu.tscn" />
|
||||
<Content Include="menus\scripts\game_state.gd" />
|
||||
<Content Include="menus\scripts\game_state.gd.uid" />
|
||||
<Content Include="menus\scripts\level_list_and_state_manager.gd" />
|
||||
<Content Include="menus\scripts\level_list_and_state_manager.gd.uid" />
|
||||
<Content Include="menus\scripts\level_state.gd" />
|
||||
<Content Include="menus\scripts\level_state.gd.uid" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Folder Include="addons\" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="RustyOptions" Version="0.10.1" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -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")
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -6,11 +6,15 @@ extends Control
|
||||
@export var options_packed_scene : PackedScene
|
||||
@export var credits_packed_scene : PackedScene
|
||||
|
||||
@export var menu_context : GUIDEMappingContext
|
||||
@export var back_action : GUIDEAction
|
||||
|
||||
var options_scene
|
||||
var credits_scene
|
||||
var sub_menu
|
||||
|
||||
func load_game_scene() -> void:
|
||||
GUIDE.disable_mapping_context(menu_context)
|
||||
SceneLoader.load_scene(game_scene_path)
|
||||
|
||||
func new_game() -> void:
|
||||
@@ -73,7 +77,12 @@ func _ready() -> void:
|
||||
_add_or_hide_options()
|
||||
_add_or_hide_credits()
|
||||
_hide_new_game_if_unset()
|
||||
|
||||
_setup_inputs()
|
||||
|
||||
func _setup_inputs() -> void:
|
||||
GUIDE.enable_mapping_context(menu_context)
|
||||
back_action.triggered.connect(_on_back_button_pressed)
|
||||
|
||||
func _on_new_game_button_pressed() -> void:
|
||||
new_game()
|
||||
|
||||
|
||||
@@ -4,7 +4,24 @@ 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
|
||||
|
||||
var is_listening_to_inputs = true
|
||||
|
||||
func _enter_tree() -> void:
|
||||
super._enter_tree()
|
||||
previous_mapping_contexts = GUIDE.get_enabled_mapping_contexts()
|
||||
for previous_context in previous_mapping_contexts:
|
||||
GUIDE.disable_mapping_context(previous_context)
|
||||
GUIDE.enable_mapping_context(menu_context)
|
||||
|
||||
func _exit_tree() -> void:
|
||||
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:
|
||||
@@ -29,10 +46,15 @@ func open_options_menu() -> void:
|
||||
var options_scene := options_packed_scene.instantiate()
|
||||
add_child(options_scene)
|
||||
_disable_focus.call_deferred()
|
||||
is_listening_to_inputs = false
|
||||
await options_scene.tree_exiting
|
||||
is_listening_to_inputs = true
|
||||
_enable_focus.call_deferred()
|
||||
|
||||
func _handle_cancel_input() -> void:
|
||||
if not is_listening_to_inputs:
|
||||
return
|
||||
|
||||
if popup_open != null:
|
||||
close_popup()
|
||||
else:
|
||||
@@ -54,6 +76,8 @@ func _ready() -> void:
|
||||
_hide_exit_for_web()
|
||||
_hide_options_if_unset()
|
||||
_hide_main_menu_if_unset()
|
||||
|
||||
back_action.triggered.connect(_handle_cancel_input)
|
||||
|
||||
func _on_restart_button_pressed() -> void:
|
||||
%ConfirmRestart.popup_centered()
|
||||
@@ -79,3 +103,5 @@ func _on_confirm_main_menu_confirmed() -> void:
|
||||
|
||||
func _on_confirm_exit_confirmed() -> void:
|
||||
get_tree().quit()
|
||||
|
||||
|
||||
|
||||
@@ -11,6 +11,10 @@ extends Control
|
||||
process_mode = PROCESS_MODE_INHERIT
|
||||
@export var makes_mouse_visible : bool = true
|
||||
|
||||
@export var back_action : GUIDEAction
|
||||
|
||||
signal menu_closing
|
||||
|
||||
var _initial_pause_state : bool = false
|
||||
var _initial_focus_mode : FocusMode = FOCUS_ALL
|
||||
var _initial_mouse_mode : Input.MouseMode
|
||||
@@ -18,6 +22,7 @@ var _initial_focus_control
|
||||
var _scene_tree : SceneTree
|
||||
|
||||
func close() -> void:
|
||||
menu_closing.emit()
|
||||
_scene_tree.paused = _initial_pause_state
|
||||
Input.set_mouse_mode(_initial_mouse_mode)
|
||||
if is_instance_valid(_initial_focus_control) and _initial_focus_control.is_inside_tree():
|
||||
@@ -29,13 +34,14 @@ func _handle_cancel_input() -> void:
|
||||
close()
|
||||
|
||||
func _unhandled_input(event : InputEvent) -> void:
|
||||
return
|
||||
if event.is_action_pressed("ui_cancel"):
|
||||
_handle_cancel_input()
|
||||
get_viewport().set_input_as_handled()
|
||||
|
||||
func _on_close_button_pressed() -> void:
|
||||
close()
|
||||
|
||||
|
||||
func _enter_tree() -> void:
|
||||
_scene_tree = get_tree()
|
||||
_initial_pause_state = _scene_tree.paused
|
||||
|
||||
@@ -12,3 +12,11 @@ extends OverlaidMenu
|
||||
if menu_scene:
|
||||
var _instance = menu_scene.instantiate()
|
||||
%MenuContainer.add_child(_instance)
|
||||
|
||||
func blocking_close() -> void:
|
||||
get_viewport().set_input_as_handled()
|
||||
super.close()
|
||||
|
||||
func _ready() -> void:
|
||||
back_action.triggered.connect(blocking_close)
|
||||
|
||||
|
||||
@@ -2,17 +2,32 @@ 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 var player : CharacterBody3D
|
||||
|
||||
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()
|
||||
@export_group("Inputs")
|
||||
@export var pause:GUIDEAction
|
||||
|
||||
var menu_already_open = false
|
||||
|
||||
func _ready() -> void:
|
||||
pause.triggered.connect(on_input_pause)
|
||||
|
||||
func on_input_pause():
|
||||
if menu_already_open:
|
||||
return
|
||||
|
||||
menu_already_open = true
|
||||
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()
|
||||
|
||||
current_menu.menu_closing.connect(player.LoadSettings)
|
||||
|
||||
get_tree().current_scene.call_deferred("add_child", current_menu)
|
||||
await current_menu.tree_exited
|
||||
menu_already_open = false
|
||||
if is_inside_tree() and _initial_focus_control:
|
||||
_initial_focus_control.grab_focus()
|
||||
|
||||
BIN
assets/audio/ambiance/637083__nox_sound__ambiance_nature_night_cricket_calm_loop_stereo.wav
(Stored with Git LFS)
Normal file
BIN
assets/audio/ambiance/637083__nox_sound__ambiance_nature_night_cricket_calm_loop_stereo.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@@ -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
|
||||
BIN
assets/audio/kenney_ui-audio.zip
Normal file
BIN
assets/audio/kenney_ui-audio.zip
Normal file
Binary file not shown.
BIN
assets/audio/kenney_ui-audio/click1.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/click1.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/click1.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/click1.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/click2.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/click2.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/click2.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/click2.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/click3.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/click3.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/click3.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/click3.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/click4.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/click4.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/click4.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/click4.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/click5.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/click5.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/click5.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/click5.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/mouseclick1.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/mouseclick1.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/mouseclick1.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/mouseclick1.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/mouserelease1.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/mouserelease1.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/mouserelease1.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/mouserelease1.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/rollover1.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/rollover1.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/rollover1.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/rollover1.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/rollover2.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/rollover2.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/rollover2.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/rollover2.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/rollover3.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/rollover3.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/rollover3.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/rollover3.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/rollover4.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/rollover4.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/rollover4.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/rollover4.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/rollover5.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/rollover5.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/rollover5.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/rollover5.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/rollover6.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/rollover6.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/rollover6.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/rollover6.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/switch1.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/switch1.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/switch1.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/switch1.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/switch10.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/switch10.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/switch10.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/switch10.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/switch11.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/switch11.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/switch11.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/switch11.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/switch12.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/switch12.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/switch12.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/switch12.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/switch13.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/switch13.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/switch13.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/switch13.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/switch14.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/switch14.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/switch14.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/switch14.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/switch15.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/switch15.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/switch15.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/switch15.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/switch16.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/switch16.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/switch16.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/switch16.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/switch17.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/switch17.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/switch17.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/switch17.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/switch18.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/switch18.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/switch18.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/switch18.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/switch19.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/switch19.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/switch19.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/switch19.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/switch2.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/switch2.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/switch2.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/switch2.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/switch20.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/switch20.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/switch20.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/switch20.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/switch21.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/switch21.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/switch21.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/switch21.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/switch22.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/switch22.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/switch22.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/switch22.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/switch23.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/switch23.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/switch23.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/switch23.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/switch24.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/switch24.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/switch24.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/switch24.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/switch25.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/switch25.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/switch25.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/switch25.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/switch26.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/switch26.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/switch26.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/switch26.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/switch27.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/switch27.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/switch27.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/switch27.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/switch28.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/switch28.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/switch28.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/switch28.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/switch29.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/switch29.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/switch29.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/switch29.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/switch3.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/switch3.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/switch3.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/switch3.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/switch30.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/switch30.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/switch30.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/switch30.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/switch31.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/switch31.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/switch31.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/switch31.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/switch32.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/switch32.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/switch32.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/switch32.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/switch33.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/switch33.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/switch33.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/switch33.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/switch34.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/switch34.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/switch34.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/switch34.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/switch35.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/switch35.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/switch35.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/switch35.ogg.import
Normal 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
|
||||
BIN
assets/audio/kenney_ui-audio/switch36.ogg
Normal file
BIN
assets/audio/kenney_ui-audio/switch36.ogg
Normal file
Binary file not shown.
19
assets/audio/kenney_ui-audio/switch36.ogg.import
Normal file
19
assets/audio/kenney_ui-audio/switch36.ogg.import
Normal 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
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user