Initial semi working version

This commit is contained in:
Isaac Shoebottom 2024-06-26 23:09:42 -03:00
commit 44e747bf41
1080 changed files with 15821 additions and 0 deletions

2
.gitattributes vendored Normal file
View File

@ -0,0 +1,2 @@
# Normalize EOL for all files that Git considers text files.
* text=auto eol=lf

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
# Godot 4+ specific ignores
.godot/

3
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,3 @@
{
"godotTools.editorPath.godot4": "c:\\Users\\Isaac\\scoop\\apps\\godot-mono\\current\\godot-mono.exe"
}

19
ChordController.gd Normal file
View File

@ -0,0 +1,19 @@
extends Node
# Add asset here
var ChordPlayer: AudioStreamPlayer
var ChordAudio: AudioStreamOggVorbis
# Called when the node enters the scene tree for the first time.
func _ready():
ChordPlayer = get_node("/root/Control/ChordPlayer")
var resource_string = "res://audio/%s/%s-chord.wav" % [self.name, self.name]
var resource = load(resource_string)
ChordAudio = resource
self.connect("pressed", self.button_pressed)
func button_pressed():
# Play chord
ChordPlayer.stream = ChordAudio
ChordPlayer.play()
Global.chord_changed.emit(self.name)

3
Global.gd Normal file
View File

@ -0,0 +1,3 @@
extends Node
signal chord_changed(chord: String)

20
NoteController.gd Normal file
View File

@ -0,0 +1,20 @@
extends Node
var NotePlayer: AudioStreamPlayer
var NoteAudio: AudioStreamOggVorbis
# Called when the node enters the scene tree for the first time.
func _ready():
NotePlayer = get_node("/root/Control/NotePlayer")
Global.chord_changed.connect(chord_changed)
self.connect("pressed", self.button_pressed)
func button_pressed():
# Play chord
NotePlayer.stream = NoteAudio
NotePlayer.play()
func chord_changed(chord):
var resource_string = "res://audio/%s/%s%s.wav" % [chord, chord, self.name]
var resource = load(resource_string)
NoteAudio = resource

384
Omnichord.tscn Normal file
View File

@ -0,0 +1,384 @@
[gd_scene load_steps=4 format=3 uid="uid://b4fgp0mhbgkfw"]
[ext_resource type="Script" path="res://RhythmController.gd" id="1_judyc"]
[ext_resource type="Script" path="res://ChordController.gd" id="2_ha4gq"]
[ext_resource type="Script" path="res://NoteController.gd" id="2_w8g0m"]
[node name="Control" type="Control"]
layout_mode = 3
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
size_flags_horizontal = 4
size_flags_vertical = 4
[node name="NotePlayer" type="AudioStreamPlayer" parent="."]
max_polyphony = 2
[node name="ChordPlayer" type="AudioStreamPlayer" parent="."]
[node name="RhythmPlayer" type="AudioStreamPlayer" parent="."]
[node name="Player" type="HBoxContainer" parent="."]
layout_mode = 1
anchors_preset = 8
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
offset_left = -250.0
offset_top = -68.0
offset_right = 250.0
offset_bottom = 68.0
grow_horizontal = 2
grow_vertical = 2
[node name="Rhythm" type="GridContainer" parent="Player"]
layout_mode = 2
size_flags_horizontal = 4
size_flags_vertical = 8
columns = 2
[node name="rock" type="Button" parent="Player/Rhythm"]
layout_mode = 2
text = "Rock"
script = ExtResource("1_judyc")
[node name="waltz" type="Button" parent="Player/Rhythm"]
layout_mode = 2
text = "Waltz"
script = ExtResource("1_judyc")
[node name="slowrock" type="Button" parent="Player/Rhythm"]
layout_mode = 2
text = "Slow Rock"
script = ExtResource("1_judyc")
[node name="latin" type="Button" parent="Player/Rhythm"]
layout_mode = 2
text = "Latin"
script = ExtResource("1_judyc")
[node name="foxtrot" type="Button" parent="Player/Rhythm"]
layout_mode = 2
text = "Fox Trot"
script = ExtResource("1_judyc")
[node name="swing" type="Button" parent="Player/Rhythm"]
layout_mode = 2
text = "Swing"
script = ExtResource("1_judyc")
[node name="Chords" type="GridContainer" parent="Player"]
layout_mode = 2
columns = 10
[node name="Corner" type="Control" parent="Player/Chords"]
layout_mode = 2
[node name="Eb" type="Label" parent="Player/Chords"]
layout_mode = 2
text = "Eb"
[node name="Bb" type="Label" parent="Player/Chords"]
layout_mode = 2
text = "Bb"
[node name="F" type="Label" parent="Player/Chords"]
layout_mode = 2
text = "F"
[node name="C" type="Label" parent="Player/Chords"]
layout_mode = 2
text = "C"
[node name="G" type="Label" parent="Player/Chords"]
layout_mode = 2
text = "G"
[node name="D" type="Label" parent="Player/Chords"]
layout_mode = 2
text = "D"
[node name="A" type="Label" parent="Player/Chords"]
layout_mode = 2
text = "A"
[node name="E" type="Label" parent="Player/Chords"]
layout_mode = 2
text = "E"
[node name="B" type="Label" parent="Player/Chords"]
layout_mode = 2
text = "B"
[node name="Major" type="Label" parent="Player/Chords"]
layout_mode = 2
text = "Major"
[node name="eb" type="Button" parent="Player/Chords"]
layout_mode = 2
size_flags_horizontal = 6
size_flags_vertical = 6
text = "Q"
script = ExtResource("2_ha4gq")
[node name="bb" type="Button" parent="Player/Chords"]
layout_mode = 2
size_flags_horizontal = 6
size_flags_vertical = 6
text = "W"
script = ExtResource("2_ha4gq")
[node name="f" type="Button" parent="Player/Chords"]
layout_mode = 2
size_flags_horizontal = 6
size_flags_vertical = 6
text = "E"
script = ExtResource("2_ha4gq")
[node name="c" type="Button" parent="Player/Chords"]
layout_mode = 2
size_flags_horizontal = 6
size_flags_vertical = 6
text = "R "
script = ExtResource("2_ha4gq")
[node name="g" type="Button" parent="Player/Chords"]
layout_mode = 2
size_flags_horizontal = 6
size_flags_vertical = 6
text = "T"
script = ExtResource("2_ha4gq")
[node name="d" type="Button" parent="Player/Chords"]
layout_mode = 2
size_flags_horizontal = 6
size_flags_vertical = 6
text = "Y"
script = ExtResource("2_ha4gq")
[node name="a" type="Button" parent="Player/Chords"]
layout_mode = 2
size_flags_horizontal = 6
size_flags_vertical = 6
text = "U"
script = ExtResource("2_ha4gq")
[node name="e" type="Button" parent="Player/Chords"]
layout_mode = 2
size_flags_horizontal = 6
size_flags_vertical = 6
text = "I"
script = ExtResource("2_ha4gq")
[node name="b" type="Button" parent="Player/Chords"]
layout_mode = 2
size_flags_horizontal = 6
size_flags_vertical = 6
text = "O"
script = ExtResource("2_ha4gq")
[node name="Minor" type="Label" parent="Player/Chords"]
layout_mode = 2
text = "Minor
"
[node name="ebm" type="Button" parent="Player/Chords"]
layout_mode = 2
size_flags_horizontal = 6
size_flags_vertical = 6
text = "A"
script = ExtResource("2_ha4gq")
[node name="bbm" type="Button" parent="Player/Chords"]
layout_mode = 2
size_flags_horizontal = 6
size_flags_vertical = 6
text = "S"
script = ExtResource("2_ha4gq")
[node name="fm" type="Button" parent="Player/Chords"]
layout_mode = 2
size_flags_horizontal = 6
size_flags_vertical = 6
text = "D"
script = ExtResource("2_ha4gq")
[node name="cm" type="Button" parent="Player/Chords"]
layout_mode = 2
size_flags_horizontal = 6
size_flags_vertical = 6
text = "F"
script = ExtResource("2_ha4gq")
[node name="gm" type="Button" parent="Player/Chords"]
layout_mode = 2
size_flags_horizontal = 6
size_flags_vertical = 6
text = "G"
script = ExtResource("2_ha4gq")
[node name="dm" type="Button" parent="Player/Chords"]
layout_mode = 2
size_flags_horizontal = 6
size_flags_vertical = 6
text = "H"
script = ExtResource("2_ha4gq")
[node name="am" type="Button" parent="Player/Chords"]
layout_mode = 2
size_flags_horizontal = 6
size_flags_vertical = 6
text = "J"
script = ExtResource("2_ha4gq")
[node name="em" type="Button" parent="Player/Chords"]
layout_mode = 2
size_flags_horizontal = 6
size_flags_vertical = 6
text = "K"
script = ExtResource("2_ha4gq")
[node name="bm" type="Button" parent="Player/Chords"]
layout_mode = 2
size_flags_horizontal = 6
size_flags_vertical = 6
text = "L"
script = ExtResource("2_ha4gq")
[node name="7th" type="Label" parent="Player/Chords"]
layout_mode = 2
text = "7th
"
[node name="eb7" type="Button" parent="Player/Chords"]
layout_mode = 2
size_flags_horizontal = 6
size_flags_vertical = 6
text = "Z"
script = ExtResource("2_ha4gq")
[node name="bb7" type="Button" parent="Player/Chords"]
layout_mode = 2
size_flags_horizontal = 6
size_flags_vertical = 6
text = "X"
script = ExtResource("2_ha4gq")
[node name="f7" type="Button" parent="Player/Chords"]
layout_mode = 2
size_flags_horizontal = 6
size_flags_vertical = 6
text = "C"
script = ExtResource("2_ha4gq")
[node name="c7" type="Button" parent="Player/Chords"]
layout_mode = 2
size_flags_horizontal = 6
size_flags_vertical = 6
text = "V"
script = ExtResource("2_ha4gq")
[node name="g7" type="Button" parent="Player/Chords"]
layout_mode = 2
size_flags_horizontal = 6
size_flags_vertical = 6
text = "B"
script = ExtResource("2_ha4gq")
[node name="d7" type="Button" parent="Player/Chords"]
layout_mode = 2
size_flags_horizontal = 6
size_flags_vertical = 6
text = "N"
script = ExtResource("2_ha4gq")
[node name="a7" type="Button" parent="Player/Chords"]
layout_mode = 2
size_flags_horizontal = 6
size_flags_vertical = 6
text = "M"
script = ExtResource("2_ha4gq")
[node name="e7" type="Button" parent="Player/Chords"]
layout_mode = 2
size_flags_horizontal = 6
size_flags_vertical = 6
text = ","
script = ExtResource("2_ha4gq")
[node name="b7" type="Button" parent="Player/Chords"]
layout_mode = 2
size_flags_horizontal = 6
size_flags_vertical = 6
text = "."
script = ExtResource("2_ha4gq")
[node name="Notes" type="GridContainer" parent="Player"]
layout_mode = 2
size_flags_horizontal = 4
size_flags_vertical = 8
columns = 3
[node name="11" type="Button" parent="Player/Notes"]
layout_mode = 2
text = "/"
script = ExtResource("2_w8g0m")
[node name="10" type="Button" parent="Player/Notes"]
layout_mode = 2
text = "*"
script = ExtResource("2_w8g0m")
[node name="9" type="Button" parent="Player/Notes"]
layout_mode = 2
text = "-"
script = ExtResource("2_w8g0m")
[node name="6" type="Button" parent="Player/Notes"]
layout_mode = 2
text = "7"
script = ExtResource("2_w8g0m")
[node name="7" type="Button" parent="Player/Notes"]
layout_mode = 2
text = "8"
script = ExtResource("2_w8g0m")
[node name="8" type="Button" parent="Player/Notes"]
layout_mode = 2
text = "9"
script = ExtResource("2_w8g0m")
[node name="3" type="Button" parent="Player/Notes"]
layout_mode = 2
text = "4"
script = ExtResource("2_w8g0m")
[node name="4" type="Button" parent="Player/Notes"]
layout_mode = 2
text = "5"
script = ExtResource("2_w8g0m")
[node name="5" type="Button" parent="Player/Notes"]
layout_mode = 2
text = "6"
script = ExtResource("2_w8g0m")
[node name="0" type="Button" parent="Player/Notes"]
layout_mode = 2
text = "1"
script = ExtResource("2_w8g0m")
[node name="1" type="Button" parent="Player/Notes"]
layout_mode = 2
text = "2"
script = ExtResource("2_w8g0m")
[node name="2" type="Button" parent="Player/Notes"]
layout_mode = 2
text = "3"
script = ExtResource("2_w8g0m")

18
RhythmController.gd Normal file
View File

@ -0,0 +1,18 @@
extends Node
# Add asset here
var RhythmPlayer: AudioStreamPlayer
var RhythmAudio: AudioStreamOggVorbis
# Called when the node enters the scene tree for the first time.
func _ready():
RhythmPlayer = get_node("/root/Control/RhythmPlayer")
var resource_string = "res://audio/rhythm/%s.ogg" % self.name
var resource = load(resource_string)
RhythmAudio = resource
self.connect("pressed", self.button_pressed)
func button_pressed():
# Play chord
RhythmPlayer.stream = RhythmAudio
RhythmPlayer.play()

BIN
audio/a/a-chord.ogg Normal file

Binary file not shown.

View File

@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://dws26x5iyj3aw"
path="res://.godot/imported/a-chord.ogg-22f58ccf540f33f24c2ad66d8c083d19.oggvorbisstr"
[deps]
source_file="res://audio/a/a-chord.ogg"
dest_files=["res://.godot/imported/a-chord.ogg-22f58ccf540f33f24c2ad66d8c083d19.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

View File

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://biffo4tm0ecv7"
path="res://.godot/imported/a-chord.wav-1d2590a0ffddfdac94b078509c8a2301.sample"
[deps]
source_file="res://audio/a/a-chord.wav"
dest_files=["res://.godot/imported/a-chord.wav-1d2590a0ffddfdac94b078509c8a2301.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=0
edit/loop_begin=0
edit/loop_end=-1
compress/mode=0

BIN
audio/a/a0.ogg Normal file

Binary file not shown.

19
audio/a/a0.ogg.import Normal file
View File

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

24
audio/a/a0.wav.import Normal file
View File

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://cll25jfjlkufg"
path="res://.godot/imported/a0.wav-e9ec3f0d30664b3d374f5a6e477cc862.sample"
[deps]
source_file="res://audio/a/a0.wav"
dest_files=["res://.godot/imported/a0.wav-e9ec3f0d30664b3d374f5a6e477cc862.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=0
edit/loop_begin=0
edit/loop_end=-1
compress/mode=0

BIN
audio/a/a1.ogg Normal file

Binary file not shown.

19
audio/a/a1.ogg.import Normal file
View File

@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://bt5358w1u8ms2"
path="res://.godot/imported/a1.ogg-8fb81651945db553632c34bc3c5c9937.oggvorbisstr"
[deps]
source_file="res://audio/a/a1.ogg"
dest_files=["res://.godot/imported/a1.ogg-8fb81651945db553632c34bc3c5c9937.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

24
audio/a/a1.wav.import Normal file
View File

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://cn254ke6qtcbk"
path="res://.godot/imported/a1.wav-2ac9b39ccaafb66fba2cec01490b32fa.sample"
[deps]
source_file="res://audio/a/a1.wav"
dest_files=["res://.godot/imported/a1.wav-2ac9b39ccaafb66fba2cec01490b32fa.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=0
edit/loop_begin=0
edit/loop_end=-1
compress/mode=0

BIN
audio/a/a10.ogg Normal file

Binary file not shown.

19
audio/a/a10.ogg.import Normal file
View File

@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://d14g4l0xo3v0d"
path="res://.godot/imported/a10.ogg-685ee364ecc2e673cdf3532b6b4ec041.oggvorbisstr"
[deps]
source_file="res://audio/a/a10.ogg"
dest_files=["res://.godot/imported/a10.ogg-685ee364ecc2e673cdf3532b6b4ec041.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

24
audio/a/a10.wav.import Normal file
View File

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://vacl7t3l2jfn"
path="res://.godot/imported/a10.wav-ac83940cff858c525c565ff98942be13.sample"
[deps]
source_file="res://audio/a/a10.wav"
dest_files=["res://.godot/imported/a10.wav-ac83940cff858c525c565ff98942be13.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=0
edit/loop_begin=0
edit/loop_end=-1
compress/mode=0

BIN
audio/a/a11.ogg Normal file

Binary file not shown.

19
audio/a/a11.ogg.import Normal file
View File

@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://degfdlcuoed2f"
path="res://.godot/imported/a11.ogg-9a340b43d09470449794b6f9c80bc3f8.oggvorbisstr"
[deps]
source_file="res://audio/a/a11.ogg"
dest_files=["res://.godot/imported/a11.ogg-9a340b43d09470449794b6f9c80bc3f8.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

24
audio/a/a11.wav.import Normal file
View File

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://birkyobpin4ak"
path="res://.godot/imported/a11.wav-c92a9f3e28806bf4d1fa64551fc2bc73.sample"
[deps]
source_file="res://audio/a/a11.wav"
dest_files=["res://.godot/imported/a11.wav-c92a9f3e28806bf4d1fa64551fc2bc73.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=0
edit/loop_begin=0
edit/loop_end=-1
compress/mode=0

BIN
audio/a/a2.ogg Normal file

Binary file not shown.

19
audio/a/a2.ogg.import Normal file
View File

@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://dysetwdxs1m8v"
path="res://.godot/imported/a2.ogg-453d86e88b96ee3a17a0b3f5646c8624.oggvorbisstr"
[deps]
source_file="res://audio/a/a2.ogg"
dest_files=["res://.godot/imported/a2.ogg-453d86e88b96ee3a17a0b3f5646c8624.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

24
audio/a/a2.wav.import Normal file
View File

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://cqxp01b4m6vdv"
path="res://.godot/imported/a2.wav-82e41b7b56560b91c9815cc090f94941.sample"
[deps]
source_file="res://audio/a/a2.wav"
dest_files=["res://.godot/imported/a2.wav-82e41b7b56560b91c9815cc090f94941.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=0
edit/loop_begin=0
edit/loop_end=-1
compress/mode=0

BIN
audio/a/a3.ogg Normal file

Binary file not shown.

19
audio/a/a3.ogg.import Normal file
View File

@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://bt4teshh1b1qc"
path="res://.godot/imported/a3.ogg-690907f0c56e48c6efffae33eeebf4a2.oggvorbisstr"
[deps]
source_file="res://audio/a/a3.ogg"
dest_files=["res://.godot/imported/a3.ogg-690907f0c56e48c6efffae33eeebf4a2.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

24
audio/a/a3.wav.import Normal file
View File

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://3qlqh062pmms"
path="res://.godot/imported/a3.wav-eae69148e5293730d234c8918ccc0d0c.sample"
[deps]
source_file="res://audio/a/a3.wav"
dest_files=["res://.godot/imported/a3.wav-eae69148e5293730d234c8918ccc0d0c.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=0
edit/loop_begin=0
edit/loop_end=-1
compress/mode=0

BIN
audio/a/a4.ogg Normal file

Binary file not shown.

19
audio/a/a4.ogg.import Normal file
View File

@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://cv1lq4lxt1pa6"
path="res://.godot/imported/a4.ogg-6948d007fa1ae0a80b7c94cdd0827913.oggvorbisstr"
[deps]
source_file="res://audio/a/a4.ogg"
dest_files=["res://.godot/imported/a4.ogg-6948d007fa1ae0a80b7c94cdd0827913.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

24
audio/a/a4.wav.import Normal file
View File

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://c3sowpsxlijig"
path="res://.godot/imported/a4.wav-f8131d3f70d5a5ddcb7e73df805238ee.sample"
[deps]
source_file="res://audio/a/a4.wav"
dest_files=["res://.godot/imported/a4.wav-f8131d3f70d5a5ddcb7e73df805238ee.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=0
edit/loop_begin=0
edit/loop_end=-1
compress/mode=0

BIN
audio/a/a5.ogg Normal file

Binary file not shown.

19
audio/a/a5.ogg.import Normal file
View File

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

24
audio/a/a5.wav.import Normal file
View File

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://do6y8kg5p7tby"
path="res://.godot/imported/a5.wav-9839abeec859ff4c42a2e884e5726b24.sample"
[deps]
source_file="res://audio/a/a5.wav"
dest_files=["res://.godot/imported/a5.wav-9839abeec859ff4c42a2e884e5726b24.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=0
edit/loop_begin=0
edit/loop_end=-1
compress/mode=0

BIN
audio/a/a6.ogg Normal file

Binary file not shown.

19
audio/a/a6.ogg.import Normal file
View File

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

24
audio/a/a6.wav.import Normal file
View File

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://q2xqbnaesbqg"
path="res://.godot/imported/a6.wav-a8e733aa4c2a8de37343be8aceba02c6.sample"
[deps]
source_file="res://audio/a/a6.wav"
dest_files=["res://.godot/imported/a6.wav-a8e733aa4c2a8de37343be8aceba02c6.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=0
edit/loop_begin=0
edit/loop_end=-1
compress/mode=0

BIN
audio/a/a7.ogg Normal file

Binary file not shown.

19
audio/a/a7.ogg.import Normal file
View File

@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://ca3gpj2yvyqox"
path="res://.godot/imported/a7.ogg-79f37c9cba154e8e1e15d08f5645d80b.oggvorbisstr"
[deps]
source_file="res://audio/a/a7.ogg"
dest_files=["res://.godot/imported/a7.ogg-79f37c9cba154e8e1e15d08f5645d80b.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

24
audio/a/a7.wav.import Normal file
View File

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://cdxtiin8f5dhy"
path="res://.godot/imported/a7.wav-d7c5dfb7259a675e70ca29fd451bc271.sample"
[deps]
source_file="res://audio/a/a7.wav"
dest_files=["res://.godot/imported/a7.wav-d7c5dfb7259a675e70ca29fd451bc271.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=0
edit/loop_begin=0
edit/loop_end=-1
compress/mode=0

BIN
audio/a/a8.ogg Normal file

Binary file not shown.

19
audio/a/a8.ogg.import Normal file
View File

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

24
audio/a/a8.wav.import Normal file
View File

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://b3ygcrumwa4el"
path="res://.godot/imported/a8.wav-88db8c7d7f8023d95a75a80e261f0f60.sample"
[deps]
source_file="res://audio/a/a8.wav"
dest_files=["res://.godot/imported/a8.wav-88db8c7d7f8023d95a75a80e261f0f60.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=0
edit/loop_begin=0
edit/loop_end=-1
compress/mode=0

BIN
audio/a/a9.ogg Normal file

Binary file not shown.

19
audio/a/a9.ogg.import Normal file
View File

@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://b3eei1itgf6e"
path="res://.godot/imported/a9.ogg-81b79f2398895e82754e1b87434cd209.oggvorbisstr"
[deps]
source_file="res://audio/a/a9.ogg"
dest_files=["res://.godot/imported/a9.ogg-81b79f2398895e82754e1b87434cd209.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

24
audio/a/a9.wav.import Normal file
View File

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://cphfj4a33vhny"
path="res://.godot/imported/a9.wav-4af9d0253d3cf607e12ec8fb997e540d.sample"
[deps]
source_file="res://audio/a/a9.wav"
dest_files=["res://.godot/imported/a9.wav-4af9d0253d3cf607e12ec8fb997e540d.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=0
edit/loop_begin=0
edit/loop_end=-1
compress/mode=0

BIN
audio/a7/a7-chord.ogg Normal file

Binary file not shown.

View File

@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://t4govfa11042"
path="res://.godot/imported/a7-chord.ogg-07690ac1376f7d8605f92f8ef77eef61.oggvorbisstr"
[deps]
source_file="res://audio/a7/a7-chord.ogg"
dest_files=["res://.godot/imported/a7-chord.ogg-07690ac1376f7d8605f92f8ef77eef61.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

View File

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://dg5k5saj3s7wq"
path="res://.godot/imported/a7-chord.wav-7b96f964d1ca1b9cb322070e264cafd3.sample"
[deps]
source_file="res://audio/a7/a7-chord.wav"
dest_files=["res://.godot/imported/a7-chord.wav-7b96f964d1ca1b9cb322070e264cafd3.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=0
edit/loop_begin=0
edit/loop_end=-1
compress/mode=0

BIN
audio/a7/a70.ogg Normal file

Binary file not shown.

19
audio/a7/a70.ogg.import Normal file
View File

@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://f81rtcmv1hbf"
path="res://.godot/imported/a70.ogg-78828fd06658961451f23ce5fdf42454.oggvorbisstr"
[deps]
source_file="res://audio/a7/a70.ogg"
dest_files=["res://.godot/imported/a70.ogg-78828fd06658961451f23ce5fdf42454.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

24
audio/a7/a70.wav.import Normal file
View File

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://cdv5vb7npuue4"
path="res://.godot/imported/a70.wav-212f6c5cde704d98cb30d13f6ecff464.sample"
[deps]
source_file="res://audio/a7/a70.wav"
dest_files=["res://.godot/imported/a70.wav-212f6c5cde704d98cb30d13f6ecff464.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=0
edit/loop_begin=0
edit/loop_end=-1
compress/mode=0

BIN
audio/a7/a71.ogg Normal file

Binary file not shown.

19
audio/a7/a71.ogg.import Normal file
View File

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

24
audio/a7/a71.wav.import Normal file
View File

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://d0nvbisc26pnd"
path="res://.godot/imported/a71.wav-892e2923a637d9b4d582ee33a58a9c0d.sample"
[deps]
source_file="res://audio/a7/a71.wav"
dest_files=["res://.godot/imported/a71.wav-892e2923a637d9b4d582ee33a58a9c0d.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=0
edit/loop_begin=0
edit/loop_end=-1
compress/mode=0

BIN
audio/a7/a710.ogg Normal file

Binary file not shown.

19
audio/a7/a710.ogg.import Normal file
View File

@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://mwy3wgnxuvck"
path="res://.godot/imported/a710.ogg-139e584e97bd9e70525fc82bf5da9640.oggvorbisstr"
[deps]
source_file="res://audio/a7/a710.ogg"
dest_files=["res://.godot/imported/a710.ogg-139e584e97bd9e70525fc82bf5da9640.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

24
audio/a7/a710.wav.import Normal file
View File

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://c7owyuc1b6j4r"
path="res://.godot/imported/a710.wav-8ed39a4278f15bcefce6a5a4fb09952b.sample"
[deps]
source_file="res://audio/a7/a710.wav"
dest_files=["res://.godot/imported/a710.wav-8ed39a4278f15bcefce6a5a4fb09952b.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=0
edit/loop_begin=0
edit/loop_end=-1
compress/mode=0

BIN
audio/a7/a711.ogg Normal file

Binary file not shown.

19
audio/a7/a711.ogg.import Normal file
View File

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

24
audio/a7/a711.wav.import Normal file
View File

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://cyww0d4ycyss5"
path="res://.godot/imported/a711.wav-712033c4092e0896a6b5ffe109c9525a.sample"
[deps]
source_file="res://audio/a7/a711.wav"
dest_files=["res://.godot/imported/a711.wav-712033c4092e0896a6b5ffe109c9525a.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=0
edit/loop_begin=0
edit/loop_end=-1
compress/mode=0

BIN
audio/a7/a72.ogg Normal file

Binary file not shown.

19
audio/a7/a72.ogg.import Normal file
View File

@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://bpf6wtfkq1hn6"
path="res://.godot/imported/a72.ogg-8949ecf26babab4e886aa1c725d472b0.oggvorbisstr"
[deps]
source_file="res://audio/a7/a72.ogg"
dest_files=["res://.godot/imported/a72.ogg-8949ecf26babab4e886aa1c725d472b0.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

24
audio/a7/a72.wav.import Normal file
View File

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://dwl6sxfkmk2rc"
path="res://.godot/imported/a72.wav-430065aa7b995c7fe951a0a83baf4809.sample"
[deps]
source_file="res://audio/a7/a72.wav"
dest_files=["res://.godot/imported/a72.wav-430065aa7b995c7fe951a0a83baf4809.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=0
edit/loop_begin=0
edit/loop_end=-1
compress/mode=0

BIN
audio/a7/a73.ogg Normal file

Binary file not shown.

19
audio/a7/a73.ogg.import Normal file
View File

@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://catf3wlbelqok"
path="res://.godot/imported/a73.ogg-253e2ecc3c31155bbab3311918463691.oggvorbisstr"
[deps]
source_file="res://audio/a7/a73.ogg"
dest_files=["res://.godot/imported/a73.ogg-253e2ecc3c31155bbab3311918463691.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

24
audio/a7/a73.wav.import Normal file
View File

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://b7p4ab2mrsqh8"
path="res://.godot/imported/a73.wav-aef21e93c3632a50bdb12d12ff8af027.sample"
[deps]
source_file="res://audio/a7/a73.wav"
dest_files=["res://.godot/imported/a73.wav-aef21e93c3632a50bdb12d12ff8af027.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=0
edit/loop_begin=0
edit/loop_end=-1
compress/mode=0

BIN
audio/a7/a74.ogg Normal file

Binary file not shown.

19
audio/a7/a74.ogg.import Normal file
View File

@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://2acwk2r7havi"
path="res://.godot/imported/a74.ogg-94c677d6d5ca6a096696d243d81e6390.oggvorbisstr"
[deps]
source_file="res://audio/a7/a74.ogg"
dest_files=["res://.godot/imported/a74.ogg-94c677d6d5ca6a096696d243d81e6390.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

24
audio/a7/a74.wav.import Normal file
View File

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://dk4jb7e4maojn"
path="res://.godot/imported/a74.wav-f1774f0a53453e159ef2faa92f150d69.sample"
[deps]
source_file="res://audio/a7/a74.wav"
dest_files=["res://.godot/imported/a74.wav-f1774f0a53453e159ef2faa92f150d69.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=0
edit/loop_begin=0
edit/loop_end=-1
compress/mode=0

BIN
audio/a7/a75.ogg Normal file

Binary file not shown.

19
audio/a7/a75.ogg.import Normal file
View File

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

24
audio/a7/a75.wav.import Normal file
View File

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://bqrkvq4k57cib"
path="res://.godot/imported/a75.wav-a0e2afc909140e5e385ffab65610dd57.sample"
[deps]
source_file="res://audio/a7/a75.wav"
dest_files=["res://.godot/imported/a75.wav-a0e2afc909140e5e385ffab65610dd57.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=0
edit/loop_begin=0
edit/loop_end=-1
compress/mode=0

BIN
audio/a7/a76.ogg Normal file

Binary file not shown.

19
audio/a7/a76.ogg.import Normal file
View File

@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://87qg0wxu2nv7"
path="res://.godot/imported/a76.ogg-ff1f70a68d20885b765d8942856bc1ee.oggvorbisstr"
[deps]
source_file="res://audio/a7/a76.ogg"
dest_files=["res://.godot/imported/a76.ogg-ff1f70a68d20885b765d8942856bc1ee.oggvorbisstr"]
[params]
loop=false
loop_offset=0
bpm=0
beat_count=0
bar_beats=4

24
audio/a7/a76.wav.import Normal file
View File

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://tmk847kd8puq"
path="res://.godot/imported/a76.wav-cdee535d2859455b507cb726abc25670.sample"
[deps]
source_file="res://audio/a7/a76.wav"
dest_files=["res://.godot/imported/a76.wav-cdee535d2859455b507cb726abc25670.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=0
edit/loop_begin=0
edit/loop_end=-1
compress/mode=0

BIN
audio/a7/a77.ogg Normal file

Binary file not shown.

19
audio/a7/a77.ogg.import Normal file
View File

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

24
audio/a7/a77.wav.import Normal file
View File

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://cmn1ria0o0lx4"
path="res://.godot/imported/a77.wav-ed19025ed919a633ae7a053af5ed9bf1.sample"
[deps]
source_file="res://audio/a7/a77.wav"
dest_files=["res://.godot/imported/a77.wav-ed19025ed919a633ae7a053af5ed9bf1.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=0
edit/loop_begin=0
edit/loop_end=-1
compress/mode=0

BIN
audio/a7/a78.ogg Normal file

Binary file not shown.

19
audio/a7/a78.ogg.import Normal file
View File

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

24
audio/a7/a78.wav.import Normal file
View File

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://b3sk6xvlveihg"
path="res://.godot/imported/a78.wav-61743b96bd43c1cee0ed089072f0ac8a.sample"
[deps]
source_file="res://audio/a7/a78.wav"
dest_files=["res://.godot/imported/a78.wav-61743b96bd43c1cee0ed089072f0ac8a.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=0
edit/loop_begin=0
edit/loop_end=-1
compress/mode=0

BIN
audio/a7/a79.ogg Normal file

Binary file not shown.

19
audio/a7/a79.ogg.import Normal file
View File

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

24
audio/a7/a79.wav.import Normal file
View File

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://d2svq5i2gi480"
path="res://.godot/imported/a79.wav-4a58de60931f213c228fdfa819e13fe3.sample"
[deps]
source_file="res://audio/a7/a79.wav"
dest_files=["res://.godot/imported/a79.wav-4a58de60931f213c228fdfa819e13fe3.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=0
edit/loop_begin=0
edit/loop_end=-1
compress/mode=0

BIN
audio/am/am-chord.ogg Normal file

Binary file not shown.

View File

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

View File

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://c8gcuh2q3ubt0"
path="res://.godot/imported/am-chord.wav-e8c02eec84a4bac82e5b44300facca25.sample"
[deps]
source_file="res://audio/am/am-chord.wav"
dest_files=["res://.godot/imported/am-chord.wav-e8c02eec84a4bac82e5b44300facca25.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=0
edit/loop_begin=0
edit/loop_end=-1
compress/mode=0

BIN
audio/am/am0.ogg Normal file

Binary file not shown.

19
audio/am/am0.ogg.import Normal file
View File

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

24
audio/am/am0.wav.import Normal file
View File

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://casv8mewh14vn"
path="res://.godot/imported/am0.wav-173bd74289c1bc2f4a860f4fcdd3da54.sample"
[deps]
source_file="res://audio/am/am0.wav"
dest_files=["res://.godot/imported/am0.wav-173bd74289c1bc2f4a860f4fcdd3da54.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=0
edit/loop_begin=0
edit/loop_end=-1
compress/mode=0

BIN
audio/am/am1.ogg Normal file

Binary file not shown.

19
audio/am/am1.ogg.import Normal file
View File

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

24
audio/am/am1.wav.import Normal file
View File

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://cq6ntvwvcqgrr"
path="res://.godot/imported/am1.wav-940b6a646dcfc68d939fd7fdb835f006.sample"
[deps]
source_file="res://audio/am/am1.wav"
dest_files=["res://.godot/imported/am1.wav-940b6a646dcfc68d939fd7fdb835f006.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=0
edit/loop_begin=0
edit/loop_end=-1
compress/mode=0

BIN
audio/am/am10.ogg Normal file

Binary file not shown.

19
audio/am/am10.ogg.import Normal file
View File

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

24
audio/am/am10.wav.import Normal file
View File

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://cnipxyxc7hv05"
path="res://.godot/imported/am10.wav-36dea8f8f8b62493730155a6111ba1b1.sample"
[deps]
source_file="res://audio/am/am10.wav"
dest_files=["res://.godot/imported/am10.wav-36dea8f8f8b62493730155a6111ba1b1.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=0
edit/loop_begin=0
edit/loop_end=-1
compress/mode=0

BIN
audio/am/am11.ogg Normal file

Binary file not shown.

19
audio/am/am11.ogg.import Normal file
View File

@ -0,0 +1,19 @@
[remap]
importer="oggvorbisstr"
type="AudioStreamOggVorbis"
uid="uid://cnh3hddqj3ejy"
path="res://.godot/imported/am11.ogg-30067332a7002b542f23ee90a7639bc7.oggvorbisstr"
[deps]
source_file="res://audio/am/am11.ogg"
dest_files=["res://.godot/imported/am11.ogg-30067332a7002b542f23ee90a7639bc7.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