claude godot 4 port
This commit is contained in:
@@ -1 +1,3 @@
|
||||
.godot/
|
||||
.import/
|
||||
.import.godot3-backup/
|
||||
|
||||
@@ -6,91 +6,94 @@
|
||||
## is treated as a separate tab. You might also want to hide
|
||||
## the horizontal scroll bar at the bottom, as it does nothing
|
||||
|
||||
@tool
|
||||
extends ScrollContainer
|
||||
|
||||
signal tab_switched(tab)
|
||||
|
||||
onready var tabs_holder := MarginContainer.new()
|
||||
onready var children := get_children()
|
||||
onready var sizex := rect_size.x
|
||||
@onready var tabs_holder := MarginContainer.new()
|
||||
@onready var _initial_children := get_children()
|
||||
@onready var sizex: float = size.x
|
||||
|
||||
export(int) var current_tab = 0
|
||||
export(float) var swipe_threshold = 128.0
|
||||
export(bool) var smooth_switch = true
|
||||
export(float) var switch_power = 5.0
|
||||
@export var current_tab: int = 0
|
||||
@export var swipe_threshold: float = 128.0
|
||||
@export var smooth_switch: bool = true
|
||||
@export var switch_power: float = 5.0
|
||||
|
||||
var children: Array = []
|
||||
var scroll_velocity := Vector2.ZERO
|
||||
var scrolling := false
|
||||
var target_scroll := 0.0
|
||||
var current_scroll := 0.0
|
||||
var prev_on_tab := false
|
||||
var drag_init_pos := Vector2.ZERO
|
||||
var scrolling := false
|
||||
var target_scroll: float = 0.0
|
||||
var current_scroll: float = 0.0
|
||||
var prev_on_tab := false
|
||||
var drag_init_pos := Vector2.ZERO
|
||||
var swipe_threshold_reached := false
|
||||
var scrolled_with_wheel := false
|
||||
|
||||
func _ready() -> void:
|
||||
# add a tab holder to the container and move all the children to it
|
||||
add_child(tabs_holder)
|
||||
for child in children:
|
||||
for child in _initial_children:
|
||||
if(child is ScrollBar): continue
|
||||
remove_child(child)
|
||||
tabs_holder.add_child(child)
|
||||
child.mouse_filter = Control.MOUSE_FILTER_PASS
|
||||
children = tabs_holder.get_children()
|
||||
|
||||
|
||||
# adjust all the properties of the containers
|
||||
scroll_vertical_enabled = false
|
||||
scroll_horizontal_enabled = true
|
||||
tabs_holder.size_flags_vertical = 3
|
||||
vertical_scroll_mode = ScrollContainer.SCROLL_MODE_DISABLED
|
||||
horizontal_scroll_mode = ScrollContainer.SCROLL_MODE_AUTO
|
||||
tabs_holder.size_flags_vertical = Control.SIZE_EXPAND_FILL
|
||||
tabs_holder.mouse_filter = Control.MOUSE_FILTER_PASS
|
||||
|
||||
|
||||
# connect required signals
|
||||
get_tree().get_root().connect("size_changed", self, "resize")
|
||||
tabs_holder.connect("sort_children", self, "resize")
|
||||
connect("gui_input", self, "_manage_input")
|
||||
get_tree().get_root().size_changed.connect(resize)
|
||||
tabs_holder.sort_children.connect(resize)
|
||||
gui_input.connect(_manage_input)
|
||||
resize()
|
||||
switch_tab()
|
||||
update_target_scroll(true)
|
||||
|
||||
|
||||
func _process(delta: float) -> void:
|
||||
if scrolling:
|
||||
current_scroll = scroll_horizontal
|
||||
else:
|
||||
# smoothly scroll to the current tab
|
||||
if prev_on_tab or scrolled_with_wheel: current_scroll = target_scroll
|
||||
else: current_scroll += (target_scroll - scroll_horizontal) * 8.0 * delta
|
||||
if prev_on_tab or scrolled_with_wheel:
|
||||
current_scroll = target_scroll
|
||||
else:
|
||||
current_scroll += (target_scroll - scroll_horizontal) * 8.0 * delta
|
||||
scroll_horizontal = current_scroll
|
||||
|
||||
|
||||
# prevent actual mouse wheel scrolling
|
||||
prev_on_tab = abs(current_scroll - target_scroll) < 1
|
||||
|
||||
|
||||
func resize() -> void:
|
||||
# handle window resizing
|
||||
sizex = rect_size.x
|
||||
tabs_holder.rect_min_size.x = sizex * children.size()
|
||||
|
||||
sizex = size.x
|
||||
tabs_holder.custom_minimum_size.x = sizex * children.size()
|
||||
|
||||
var childi := 0
|
||||
for child in children:
|
||||
child.rect_size.x = sizex
|
||||
child.rect_position.x = sizex * childi
|
||||
child.size.x = sizex
|
||||
child.position.x = sizex * childi
|
||||
childi += 1
|
||||
|
||||
|
||||
update_target_scroll(true)
|
||||
|
||||
|
||||
func _manage_input(event: InputEvent) -> void:
|
||||
if event is InputEventMouseButton:
|
||||
# when the drag is stopped, end scrolling
|
||||
if event.button_index in [BUTTON_WHEEL_UP, BUTTON_WHEEL_DOWN, BUTTON_WHEEL_LEFT, BUTTON_WHEEL_RIGHT]:
|
||||
if event.button_index in [MOUSE_BUTTON_WHEEL_UP, MOUSE_BUTTON_WHEEL_DOWN, MOUSE_BUTTON_WHEEL_LEFT, MOUSE_BUTTON_WHEEL_RIGHT]:
|
||||
scrolled_with_wheel = true
|
||||
|
||||
|
||||
elif event is InputEventScreenDrag:
|
||||
scroll_velocity = event.relative
|
||||
|
||||
|
||||
# check for swipe threshold
|
||||
if not swipe_threshold_reached:
|
||||
#scroll_horizontal = target_scroll
|
||||
var diff = abs(drag_init_pos.x - event.position.x)
|
||||
if diff > swipe_threshold:
|
||||
if diff > swipe_threshold:
|
||||
swipe_threshold_reached = true
|
||||
else:
|
||||
scroll_horizontal = target_scroll
|
||||
@@ -98,7 +101,7 @@ func _manage_input(event: InputEvent) -> void:
|
||||
# fake scroll, because for some reason, real scrolling stops
|
||||
current_scroll -= event.relative.x
|
||||
scroll_horizontal = current_scroll
|
||||
|
||||
|
||||
elif event is InputEventScreenTouch:
|
||||
if event.is_pressed():
|
||||
scrolling = true
|
||||
@@ -107,28 +110,28 @@ func _manage_input(event: InputEvent) -> void:
|
||||
scrolled_with_wheel = false
|
||||
else:
|
||||
end_scroll()
|
||||
|
||||
|
||||
func end_scroll() -> void:
|
||||
# calculate current tab, based on the horizontal scroll and the drag velocity
|
||||
# calculate current tab, based on the horizontal scroll and the drag velocity
|
||||
# and then switch to it
|
||||
current_tab = int(clamp(round((scroll_horizontal - min(scroll_velocity.x * switch_power, sizex)) / sizex), 0, children.size()-1))
|
||||
current_tab = int(clamp(round((scroll_horizontal - min(scroll_velocity.x * switch_power, sizex)) / sizex), 0, children.size() - 1))
|
||||
switch_tab()
|
||||
scroll_velocity = Vector2.ZERO
|
||||
scrolling = false
|
||||
|
||||
func update_target_scroll(instant:bool=false) -> void:
|
||||
|
||||
func update_target_scroll(instant: bool = false) -> void:
|
||||
# calculate horizontal scrolling required to fully switch to a single tab, with no overlaps
|
||||
# if instant is true, also update the current scroll
|
||||
target_scroll = current_tab * sizex
|
||||
if instant:
|
||||
if instant:
|
||||
current_scroll = target_scroll
|
||||
scroll_horizontal = current_scroll
|
||||
scroll_horizontal = int(current_scroll)
|
||||
else:
|
||||
prev_on_tab = false
|
||||
|
||||
func switch_tab(tab:int=-1) -> void:
|
||||
if tab >= 0:
|
||||
|
||||
func switch_tab(tab: int = -1) -> void:
|
||||
if tab >= 0:
|
||||
current_tab = tab
|
||||
scrolled_with_wheel = false
|
||||
update_target_scroll(!smooth_switch)
|
||||
emit_signal("tab_switched", current_tab)
|
||||
tab_switched.emit(current_tab)
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
uid://ci1vctgruq15r
|
||||
@@ -1,8 +1,9 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/class-icon.svg-c87135634ec50ad20a48fb432e8b6f1f.stex"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bovq2qx32oqyb"
|
||||
path="res://.godot/imported/class-icon.svg-c87135634ec50ad20a48fb432e8b6f1f.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
@@ -10,26 +11,33 @@ metadata={
|
||||
[deps]
|
||||
|
||||
source_file="res://addons/BetterTabContainer/class-icon.svg"
|
||||
dest_files=[ "res://.import/class-icon.svg-c87135634ec50ad20a48fb432e8b6f1f.stex" ]
|
||||
dest_files=["res://.godot/imported/class-icon.svg-c87135634ec50ad20a48fb432e8b6f1f.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_mode=0
|
||||
compress/bptc_ldr=0
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
flags/repeat=0
|
||||
flags/filter=true
|
||||
flags/mipmaps=false
|
||||
flags/anisotropic=false
|
||||
flags/srgb=2
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/HDR_as_SRGB=false
|
||||
process/invert_color=false
|
||||
process/normal_map_invert_y=false
|
||||
stream=false
|
||||
size_limit=0
|
||||
detect_3d=true
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
svg/scale=1.0
|
||||
editor/scale_with_editor_scale=false
|
||||
editor/convert_colors_with_editor_theme=false
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
tool
|
||||
@tool
|
||||
extends EditorPlugin
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
uid://iimqt42rdljf
|
||||
+30
-34
@@ -1,80 +1,76 @@
|
||||
@tool
|
||||
extends Node
|
||||
class_name WeatherAPINode
|
||||
tool
|
||||
|
||||
signal received_current(json)
|
||||
signal received_forecast(json)
|
||||
|
||||
export var api_key:String
|
||||
export var location:String = "Amsterdam"
|
||||
@export var api_key: String
|
||||
@export var location: String = "Amsterdam"
|
||||
|
||||
export var base_url := "http://api.weatherapi.com/v1/" setget set_base_url
|
||||
@export var base_url: String = "http://api.weatherapi.com/v1/":
|
||||
set = set_base_url
|
||||
var http = HTTPRequest.new()
|
||||
|
||||
var current_history := []
|
||||
var forecast_history := []
|
||||
|
||||
func set_base_url(newurl:String):
|
||||
func set_base_url(newurl: String):
|
||||
if not newurl.begins_with('http://') and not newurl.begins_with('https://'):
|
||||
newurl = 'http://'+newurl
|
||||
newurl = 'http://' + newurl
|
||||
if !newurl.ends_with('/'):
|
||||
newurl += '/'
|
||||
base_url = newurl
|
||||
|
||||
func _ready():
|
||||
add_child(http)
|
||||
http.connect("request_completed", self, "_on_http_response")
|
||||
|
||||
func get_current(include_air_quality:=false):
|
||||
func get_current(include_air_quality: bool = false):
|
||||
var url = _form_url('current.json', {'aqi': 'yes' if include_air_quality else 'no'})
|
||||
print(url)
|
||||
var out = yield(_wait_on_request(url), "completed")
|
||||
var out = await _wait_on_request(url)
|
||||
if out[0]:
|
||||
current_history.append(out)
|
||||
out = JSON.parse(out[-1]).result
|
||||
emit_signal("received_current",out)
|
||||
return out
|
||||
var parsed = JSON.parse_string(out[-1])
|
||||
received_current.emit(parsed)
|
||||
return parsed
|
||||
else:
|
||||
print("no answer")
|
||||
return out[1]
|
||||
|
||||
func _bool2YN(b:bool):
|
||||
func _bool2YN(b: bool):
|
||||
return 'yes' if b else 'no'
|
||||
|
||||
func get_forecast(days:=1, include_air_quality:=false, alerts:=false):
|
||||
var url = _form_url('current.json', {'aqi': _bool2YN(include_air_quality), 'days':days, 'alerts':_bool2YN(alerts)})
|
||||
var out = yield(_wait_on_request(url), "completed")
|
||||
func get_forecast(days: int = 1, include_air_quality: bool = false, alerts: bool = false):
|
||||
var url = _form_url('current.json', {'aqi': _bool2YN(include_air_quality), 'days': days, 'alerts': _bool2YN(alerts)})
|
||||
var out = await _wait_on_request(url)
|
||||
if out[0]:
|
||||
out = JSON.parse(out[-1]).result
|
||||
current_history.append(out)
|
||||
forecast_history.append(out)
|
||||
emit_signal("received_forecast",out)
|
||||
emit_signal("received_current",out)
|
||||
return out
|
||||
var parsed = JSON.parse_string(out[-1])
|
||||
current_history.append(parsed)
|
||||
forecast_history.append(parsed)
|
||||
received_forecast.emit(parsed)
|
||||
received_current.emit(parsed)
|
||||
return parsed
|
||||
else:
|
||||
return out[1]
|
||||
|
||||
func _wait_on_request(url)->Array:
|
||||
func _wait_on_request(url) -> Array:
|
||||
# Returns:
|
||||
# when answered: [http was answered<bool>, result, response_code, headers, raw_body, utf8_body]
|
||||
# when not answered: [false, error]
|
||||
var err = http.request(url)
|
||||
if err == OK:
|
||||
var out = yield(http, "request_completed")
|
||||
out.append(out[-1].get_string_from_utf8())
|
||||
return [true] + out
|
||||
yield()
|
||||
var result = await http.request_completed
|
||||
result.append(result[-1].get_string_from_utf8())
|
||||
return [true] + result
|
||||
return [false, err]
|
||||
|
||||
func _form_url(endpoint:='current.json', args:={}):
|
||||
func _form_url(endpoint: String = 'current.json', args: Dictionary = {}):
|
||||
if endpoint.ends_with('/'):
|
||||
endpoint = endpoint.substr(0,len(endpoint))
|
||||
endpoint = endpoint.substr(0, len(endpoint))
|
||||
var out = base_url + endpoint
|
||||
out += '?key='+api_key
|
||||
out += '&q='+location
|
||||
out += '?key=' + api_key
|
||||
out += '&q=' + location
|
||||
for key in args:
|
||||
out += '&{0}={1}'.format([key, args[key]])
|
||||
return out
|
||||
|
||||
func _on_http_response(result: int, response_code: int, headers: PoolStringArray, body: PoolByteArray):
|
||||
pass
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
uid://cdts80k64rgos
|
||||
@@ -0,0 +1 @@
|
||||
uid://dbo4hxroi7ggj
|
||||
@@ -1,4 +1,4 @@
|
||||
tool
|
||||
@tool
|
||||
extends EditorPlugin
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
uid://bs1adwqasxy73
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_greet_goodmorning.mp3-43bb343eaeb6171483443517ad3de787.mp3str"
|
||||
uid="uid://dl3w8jkewd7v8"
|
||||
path="res://.godot/imported/voc_en_greet_goodmorning.mp3-43bb343eaeb6171483443517ad3de787.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/greet/voc_en_greet_goodmorning.mp3"
|
||||
dest_files=[ "res://.import/voc_en_greet_goodmorning.mp3-43bb343eaeb6171483443517ad3de787.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_greet_goodmorning.mp3-43bb343eaeb6171483443517ad3de787.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_greet_hello.mp3-9b1cd90ecf9648174c69637c8567ba5b.mp3str"
|
||||
uid="uid://gbah3adojpr7"
|
||||
path="res://.godot/imported/voc_en_greet_hello.mp3-9b1cd90ecf9648174c69637c8567ba5b.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/greet/voc_en_greet_hello.mp3"
|
||||
dest_files=[ "res://.import/voc_en_greet_hello.mp3-9b1cd90ecf9648174c69637c8567ba5b.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_greet_hello.mp3-9b1cd90ecf9648174c69637c8567ba5b.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_its.mp3-86a4d76dabfa6f1f58b5e07f29fc506e.mp3str"
|
||||
uid="uid://ckdj3tqvhwa5p"
|
||||
path="res://.godot/imported/voc_en_its.mp3-86a4d76dabfa6f1f58b5e07f29fc506e.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/misc/voc_en_its.mp3"
|
||||
dest_files=[ "res://.import/voc_en_its.mp3-86a4d76dabfa6f1f58b5e07f29fc506e.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_its.mp3-86a4d76dabfa6f1f58b5e07f29fc506e.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -1,13 +1,14 @@
|
||||
[remap]
|
||||
|
||||
importer="wav"
|
||||
type="AudioStreamSample"
|
||||
path="res://.import/music_cloudy.wav-c911d26fadd7a38e6a5e90d91afa13fa.sample"
|
||||
type="AudioStreamWAV"
|
||||
uid="uid://bsw0r1gen1o0j"
|
||||
path="res://.godot/imported/music_cloudy.wav-c911d26fadd7a38e6a5e90d91afa13fa.sample"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/music/music_cloudy.wav"
|
||||
dest_files=[ "res://.import/music_cloudy.wav-c911d26fadd7a38e6a5e90d91afa13fa.sample" ]
|
||||
dest_files=["res://.godot/imported/music_cloudy.wav-c911d26fadd7a38e6a5e90d91afa13fa.sample"]
|
||||
|
||||
[params]
|
||||
|
||||
|
||||
@@ -1,13 +1,14 @@
|
||||
[remap]
|
||||
|
||||
importer="wav"
|
||||
type="AudioStreamSample"
|
||||
path="res://.import/music_foggy.wav-c89345b8667eca3befa71edba52972d4.sample"
|
||||
type="AudioStreamWAV"
|
||||
uid="uid://41o7diypr4er"
|
||||
path="res://.godot/imported/music_foggy.wav-c89345b8667eca3befa71edba52972d4.sample"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/music/music_foggy.wav"
|
||||
dest_files=[ "res://.import/music_foggy.wav-c89345b8667eca3befa71edba52972d4.sample" ]
|
||||
dest_files=["res://.godot/imported/music_foggy.wav-c89345b8667eca3befa71edba52972d4.sample"]
|
||||
|
||||
[params]
|
||||
|
||||
|
||||
@@ -1,13 +1,14 @@
|
||||
[remap]
|
||||
|
||||
importer="wav"
|
||||
type="AudioStreamSample"
|
||||
path="res://.import/music_partlycloudy.wav-b19ae3933a42c7a0c91d0b16837d8c59.sample"
|
||||
type="AudioStreamWAV"
|
||||
uid="uid://bs7w034pjeuio"
|
||||
path="res://.godot/imported/music_partlycloudy.wav-b19ae3933a42c7a0c91d0b16837d8c59.sample"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/music/music_partlycloudy.wav"
|
||||
dest_files=[ "res://.import/music_partlycloudy.wav-b19ae3933a42c7a0c91d0b16837d8c59.sample" ]
|
||||
dest_files=["res://.godot/imported/music_partlycloudy.wav-b19ae3933a42c7a0c91d0b16837d8c59.sample"]
|
||||
|
||||
[params]
|
||||
|
||||
|
||||
@@ -1,13 +1,14 @@
|
||||
[remap]
|
||||
|
||||
importer="wav"
|
||||
type="AudioStreamSample"
|
||||
path="res://.import/music_rainy.wav-fe2d7f68d832531bd3c61589cc597aba.sample"
|
||||
type="AudioStreamWAV"
|
||||
uid="uid://fcnyqnvlqsel"
|
||||
path="res://.godot/imported/music_rainy.wav-fe2d7f68d832531bd3c61589cc597aba.sample"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/music/music_rainy.wav"
|
||||
dest_files=[ "res://.import/music_rainy.wav-fe2d7f68d832531bd3c61589cc597aba.sample" ]
|
||||
dest_files=["res://.godot/imported/music_rainy.wav-fe2d7f68d832531bd3c61589cc597aba.sample"]
|
||||
|
||||
[params]
|
||||
|
||||
|
||||
@@ -1,13 +1,14 @@
|
||||
[remap]
|
||||
|
||||
importer="wav"
|
||||
type="AudioStreamSample"
|
||||
path="res://.import/music_snowy.wav-653b57fd13625471f091039e7bacaeaa.sample"
|
||||
type="AudioStreamWAV"
|
||||
uid="uid://busk0bm80uhoj"
|
||||
path="res://.godot/imported/music_snowy.wav-653b57fd13625471f091039e7bacaeaa.sample"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/music/music_snowy.wav"
|
||||
dest_files=[ "res://.import/music_snowy.wav-653b57fd13625471f091039e7bacaeaa.sample" ]
|
||||
dest_files=["res://.godot/imported/music_snowy.wav-653b57fd13625471f091039e7bacaeaa.sample"]
|
||||
|
||||
[params]
|
||||
|
||||
|
||||
@@ -1,13 +1,14 @@
|
||||
[remap]
|
||||
|
||||
importer="wav"
|
||||
type="AudioStreamSample"
|
||||
path="res://.import/music_stormy.wav-4c288062515c60b62f353b317dece083.sample"
|
||||
type="AudioStreamWAV"
|
||||
uid="uid://go7bff5t8um8"
|
||||
path="res://.godot/imported/music_stormy.wav-4c288062515c60b62f353b317dece083.sample"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/music/music_stormy.wav"
|
||||
dest_files=[ "res://.import/music_stormy.wav-4c288062515c60b62f353b317dece083.sample" ]
|
||||
dest_files=["res://.godot/imported/music_stormy.wav-4c288062515c60b62f353b317dece083.sample"]
|
||||
|
||||
[params]
|
||||
|
||||
|
||||
@@ -1,13 +1,14 @@
|
||||
[remap]
|
||||
|
||||
importer="wav"
|
||||
type="AudioStreamSample"
|
||||
path="res://.import/music_sunny.wav-334f6caecf26d491c9853df9de3ba0b1.sample"
|
||||
type="AudioStreamWAV"
|
||||
uid="uid://bhkccm68kcoa1"
|
||||
path="res://.godot/imported/music_sunny.wav-334f6caecf26d491c9853df9de3ba0b1.sample"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/music/music_sunny.wav"
|
||||
dest_files=[ "res://.import/music_sunny.wav-334f6caecf26d491c9853df9de3ba0b1.sample" ]
|
||||
dest_files=["res://.godot/imported/music_sunny.wav-334f6caecf26d491c9853df9de3ba0b1.sample"]
|
||||
|
||||
[params]
|
||||
|
||||
|
||||
@@ -1,13 +1,14 @@
|
||||
[remap]
|
||||
|
||||
importer="wav"
|
||||
type="AudioStreamSample"
|
||||
path="res://.import/music_unknown.wav-2460ce261bc74fd346e2ee84913f5d28.sample"
|
||||
type="AudioStreamWAV"
|
||||
uid="uid://bjr5g80fwfglr"
|
||||
path="res://.godot/imported/music_unknown.wav-2460ce261bc74fd346e2ee84913f5d28.sample"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/music/music_unknown.wav"
|
||||
dest_files=[ "res://.import/music_unknown.wav-2460ce261bc74fd346e2ee84913f5d28.sample" ]
|
||||
dest_files=["res://.godot/imported/music_unknown.wav-2460ce261bc74fd346e2ee84913f5d28.sample"]
|
||||
|
||||
[params]
|
||||
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_ampm_am.mp3-f004535b45c4707124a0bc26c42999da.mp3str"
|
||||
uid="uid://d1iblaaw6angg"
|
||||
path="res://.godot/imported/voc_en_ampm_am.mp3-f004535b45c4707124a0bc26c42999da.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/am pm/voc_en_ampm_am.mp3"
|
||||
dest_files=[ "res://.import/voc_en_ampm_am.mp3-f004535b45c4707124a0bc26c42999da.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_ampm_am.mp3-f004535b45c4707124a0bc26c42999da.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_ampm_pm.mp3-5546298d0c754e5bdfd197a9ba2d4d6a.mp3str"
|
||||
uid="uid://dlofsru6spwid"
|
||||
path="res://.godot/imported/voc_en_ampm_pm.mp3-5546298d0c754e5bdfd197a9ba2d4d6a.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/am pm/voc_en_ampm_pm.mp3"
|
||||
dest_files=[ "res://.import/voc_en_ampm_pm.mp3-5546298d0c754e5bdfd197a9ba2d4d6a.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_ampm_pm.mp3-5546298d0c754e5bdfd197a9ba2d4d6a.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_hour_01.mp3-78c44e06899be9873a80036c35a0232a.mp3str"
|
||||
uid="uid://bymkx666ehe00"
|
||||
path="res://.godot/imported/voc_en_hour_01.mp3-78c44e06899be9873a80036c35a0232a.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/hour/voc_en_hour_01.mp3"
|
||||
dest_files=[ "res://.import/voc_en_hour_01.mp3-78c44e06899be9873a80036c35a0232a.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_hour_01.mp3-78c44e06899be9873a80036c35a0232a.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_hour_02.mp3-2043ba9153517d7cef50843bb3073adb.mp3str"
|
||||
uid="uid://0atdclp2bp8p"
|
||||
path="res://.godot/imported/voc_en_hour_02.mp3-2043ba9153517d7cef50843bb3073adb.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/hour/voc_en_hour_02.mp3"
|
||||
dest_files=[ "res://.import/voc_en_hour_02.mp3-2043ba9153517d7cef50843bb3073adb.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_hour_02.mp3-2043ba9153517d7cef50843bb3073adb.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_hour_03.mp3-727c7e057f0efadbb7b55e4a9b8bb721.mp3str"
|
||||
uid="uid://dok1ddds3t21w"
|
||||
path="res://.godot/imported/voc_en_hour_03.mp3-727c7e057f0efadbb7b55e4a9b8bb721.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/hour/voc_en_hour_03.mp3"
|
||||
dest_files=[ "res://.import/voc_en_hour_03.mp3-727c7e057f0efadbb7b55e4a9b8bb721.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_hour_03.mp3-727c7e057f0efadbb7b55e4a9b8bb721.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_hour_04.mp3-3e8335ca292d75cbaeb050dba5617c17.mp3str"
|
||||
uid="uid://dujnp4n8qbaxt"
|
||||
path="res://.godot/imported/voc_en_hour_04.mp3-3e8335ca292d75cbaeb050dba5617c17.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/hour/voc_en_hour_04.mp3"
|
||||
dest_files=[ "res://.import/voc_en_hour_04.mp3-3e8335ca292d75cbaeb050dba5617c17.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_hour_04.mp3-3e8335ca292d75cbaeb050dba5617c17.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_hour_05.mp3-984c0e1bfc0d8169ca7dfae8abc9e1a3.mp3str"
|
||||
uid="uid://0uwqhxd20bes"
|
||||
path="res://.godot/imported/voc_en_hour_05.mp3-984c0e1bfc0d8169ca7dfae8abc9e1a3.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/hour/voc_en_hour_05.mp3"
|
||||
dest_files=[ "res://.import/voc_en_hour_05.mp3-984c0e1bfc0d8169ca7dfae8abc9e1a3.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_hour_05.mp3-984c0e1bfc0d8169ca7dfae8abc9e1a3.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_hour_06.mp3-e53110c6b8ee75c535ded3aa34a265be.mp3str"
|
||||
uid="uid://dc8i6v1a0hibe"
|
||||
path="res://.godot/imported/voc_en_hour_06.mp3-e53110c6b8ee75c535ded3aa34a265be.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/hour/voc_en_hour_06.mp3"
|
||||
dest_files=[ "res://.import/voc_en_hour_06.mp3-e53110c6b8ee75c535ded3aa34a265be.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_hour_06.mp3-e53110c6b8ee75c535ded3aa34a265be.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_hour_07.mp3-99c34c474e0d60d904f64ae345b028e9.mp3str"
|
||||
uid="uid://dj23ouoy36nnc"
|
||||
path="res://.godot/imported/voc_en_hour_07.mp3-99c34c474e0d60d904f64ae345b028e9.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/hour/voc_en_hour_07.mp3"
|
||||
dest_files=[ "res://.import/voc_en_hour_07.mp3-99c34c474e0d60d904f64ae345b028e9.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_hour_07.mp3-99c34c474e0d60d904f64ae345b028e9.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_hour_08.mp3-10fc5439c7a90d76fb07fc17f5097d39.mp3str"
|
||||
uid="uid://dltqda578os43"
|
||||
path="res://.godot/imported/voc_en_hour_08.mp3-10fc5439c7a90d76fb07fc17f5097d39.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/hour/voc_en_hour_08.mp3"
|
||||
dest_files=[ "res://.import/voc_en_hour_08.mp3-10fc5439c7a90d76fb07fc17f5097d39.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_hour_08.mp3-10fc5439c7a90d76fb07fc17f5097d39.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_hour_09.mp3-263bff37b0b5f681330d119b3f8d5444.mp3str"
|
||||
uid="uid://dpdveh6281efa"
|
||||
path="res://.godot/imported/voc_en_hour_09.mp3-263bff37b0b5f681330d119b3f8d5444.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/hour/voc_en_hour_09.mp3"
|
||||
dest_files=[ "res://.import/voc_en_hour_09.mp3-263bff37b0b5f681330d119b3f8d5444.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_hour_09.mp3-263bff37b0b5f681330d119b3f8d5444.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_hour_10.mp3-486ef4dc1eb344cac0eef3fba09529a2.mp3str"
|
||||
uid="uid://baytxfbgh2t4n"
|
||||
path="res://.godot/imported/voc_en_hour_10.mp3-486ef4dc1eb344cac0eef3fba09529a2.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/hour/voc_en_hour_10.mp3"
|
||||
dest_files=[ "res://.import/voc_en_hour_10.mp3-486ef4dc1eb344cac0eef3fba09529a2.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_hour_10.mp3-486ef4dc1eb344cac0eef3fba09529a2.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_hour_11.mp3-d15c41b010680664d06ba314bb85b6bc.mp3str"
|
||||
uid="uid://dv4yxey583stq"
|
||||
path="res://.godot/imported/voc_en_hour_11.mp3-d15c41b010680664d06ba314bb85b6bc.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/hour/voc_en_hour_11.mp3"
|
||||
dest_files=[ "res://.import/voc_en_hour_11.mp3-d15c41b010680664d06ba314bb85b6bc.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_hour_11.mp3-d15c41b010680664d06ba314bb85b6bc.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_hour_12.mp3-3bb9f481c09c8f8f31094add41386e90.mp3str"
|
||||
uid="uid://dw4nshdone52i"
|
||||
path="res://.godot/imported/voc_en_hour_12.mp3-3bb9f481c09c8f8f31094add41386e90.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/hour/voc_en_hour_12.mp3"
|
||||
dest_files=[ "res://.import/voc_en_hour_12.mp3-3bb9f481c09c8f8f31094add41386e90.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_hour_12.mp3-3bb9f481c09c8f8f31094add41386e90.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_00.mp3-62e06bbc7a2431a925ec91039133a971.mp3str"
|
||||
uid="uid://dnoec5ic0x414"
|
||||
path="res://.godot/imported/voc_en_min_00.mp3-62e06bbc7a2431a925ec91039133a971.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_00.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_00.mp3-62e06bbc7a2431a925ec91039133a971.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_00.mp3-62e06bbc7a2431a925ec91039133a971.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_01.mp3-c7d54799da5d2cbd85c9539bbad1af26.mp3str"
|
||||
uid="uid://0icdnhyfh32t"
|
||||
path="res://.godot/imported/voc_en_min_01.mp3-c7d54799da5d2cbd85c9539bbad1af26.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_01.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_01.mp3-c7d54799da5d2cbd85c9539bbad1af26.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_01.mp3-c7d54799da5d2cbd85c9539bbad1af26.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_02.mp3-2fc57478dfab7da03e81ac6dae673301.mp3str"
|
||||
uid="uid://btse5wwjtiy5c"
|
||||
path="res://.godot/imported/voc_en_min_02.mp3-2fc57478dfab7da03e81ac6dae673301.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_02.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_02.mp3-2fc57478dfab7da03e81ac6dae673301.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_02.mp3-2fc57478dfab7da03e81ac6dae673301.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_03.mp3-e7b0d4be5dd4e916ddec4ff650ffaf60.mp3str"
|
||||
uid="uid://dsbnelugeqvnu"
|
||||
path="res://.godot/imported/voc_en_min_03.mp3-e7b0d4be5dd4e916ddec4ff650ffaf60.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_03.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_03.mp3-e7b0d4be5dd4e916ddec4ff650ffaf60.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_03.mp3-e7b0d4be5dd4e916ddec4ff650ffaf60.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_04.mp3-485a24716f96138e05f786db81519f34.mp3str"
|
||||
uid="uid://cfsvngaw76t57"
|
||||
path="res://.godot/imported/voc_en_min_04.mp3-485a24716f96138e05f786db81519f34.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_04.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_04.mp3-485a24716f96138e05f786db81519f34.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_04.mp3-485a24716f96138e05f786db81519f34.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_05.mp3-7214f61fd72aeb99901c27170a75f4e5.mp3str"
|
||||
uid="uid://dxaixsrn3ioxa"
|
||||
path="res://.godot/imported/voc_en_min_05.mp3-7214f61fd72aeb99901c27170a75f4e5.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_05.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_05.mp3-7214f61fd72aeb99901c27170a75f4e5.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_05.mp3-7214f61fd72aeb99901c27170a75f4e5.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_06.mp3-43d0a69866e5785abbb32267683c9688.mp3str"
|
||||
uid="uid://bbhonlobgu660"
|
||||
path="res://.godot/imported/voc_en_min_06.mp3-43d0a69866e5785abbb32267683c9688.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_06.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_06.mp3-43d0a69866e5785abbb32267683c9688.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_06.mp3-43d0a69866e5785abbb32267683c9688.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_07.mp3-da8c612009dc6fc82bf1002e0d3280f7.mp3str"
|
||||
uid="uid://bknaqvv4wsld5"
|
||||
path="res://.godot/imported/voc_en_min_07.mp3-da8c612009dc6fc82bf1002e0d3280f7.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_07.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_07.mp3-da8c612009dc6fc82bf1002e0d3280f7.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_07.mp3-da8c612009dc6fc82bf1002e0d3280f7.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_08.mp3-e7b7da4a6a3d9b41cc75676b9d87a20a.mp3str"
|
||||
uid="uid://h6rfb2c8tnur"
|
||||
path="res://.godot/imported/voc_en_min_08.mp3-e7b7da4a6a3d9b41cc75676b9d87a20a.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_08.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_08.mp3-e7b7da4a6a3d9b41cc75676b9d87a20a.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_08.mp3-e7b7da4a6a3d9b41cc75676b9d87a20a.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_09.mp3-41a79d743a4ca71db99da592df262672.mp3str"
|
||||
uid="uid://fl3yobntvhvh"
|
||||
path="res://.godot/imported/voc_en_min_09.mp3-41a79d743a4ca71db99da592df262672.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_09.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_09.mp3-41a79d743a4ca71db99da592df262672.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_09.mp3-41a79d743a4ca71db99da592df262672.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_10.mp3-78842e268446d37ffd751807ad43fd97.mp3str"
|
||||
uid="uid://b60qm7iehl3em"
|
||||
path="res://.godot/imported/voc_en_min_10.mp3-78842e268446d37ffd751807ad43fd97.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_10.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_10.mp3-78842e268446d37ffd751807ad43fd97.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_10.mp3-78842e268446d37ffd751807ad43fd97.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_11.mp3-332b2c487e89ad71352595d1787295f4.mp3str"
|
||||
uid="uid://blyn7lo47da04"
|
||||
path="res://.godot/imported/voc_en_min_11.mp3-332b2c487e89ad71352595d1787295f4.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_11.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_11.mp3-332b2c487e89ad71352595d1787295f4.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_11.mp3-332b2c487e89ad71352595d1787295f4.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_12.mp3-06954c953f081a2f9925e2efd603e573.mp3str"
|
||||
uid="uid://bbbc68swk1j0s"
|
||||
path="res://.godot/imported/voc_en_min_12.mp3-06954c953f081a2f9925e2efd603e573.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_12.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_12.mp3-06954c953f081a2f9925e2efd603e573.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_12.mp3-06954c953f081a2f9925e2efd603e573.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_13.mp3-4be8b43dd27a01d3d3a46d7f17fee7fa.mp3str"
|
||||
uid="uid://c5rh607p7v3es"
|
||||
path="res://.godot/imported/voc_en_min_13.mp3-4be8b43dd27a01d3d3a46d7f17fee7fa.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_13.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_13.mp3-4be8b43dd27a01d3d3a46d7f17fee7fa.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_13.mp3-4be8b43dd27a01d3d3a46d7f17fee7fa.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_14.mp3-f3cd081b4e6518be35f36433ef515961.mp3str"
|
||||
uid="uid://bsskyhijonpvw"
|
||||
path="res://.godot/imported/voc_en_min_14.mp3-f3cd081b4e6518be35f36433ef515961.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_14.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_14.mp3-f3cd081b4e6518be35f36433ef515961.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_14.mp3-f3cd081b4e6518be35f36433ef515961.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_15.mp3-18d4573df9f62dbc147d8908437707e8.mp3str"
|
||||
uid="uid://ddwv5w0clhfcy"
|
||||
path="res://.godot/imported/voc_en_min_15.mp3-18d4573df9f62dbc147d8908437707e8.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_15.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_15.mp3-18d4573df9f62dbc147d8908437707e8.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_15.mp3-18d4573df9f62dbc147d8908437707e8.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_16.mp3-8bc7916001513a61656338f832f77251.mp3str"
|
||||
uid="uid://b20e1dekl47vy"
|
||||
path="res://.godot/imported/voc_en_min_16.mp3-8bc7916001513a61656338f832f77251.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_16.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_16.mp3-8bc7916001513a61656338f832f77251.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_16.mp3-8bc7916001513a61656338f832f77251.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_17.mp3-4bb422795ebee1d65929862299155bea.mp3str"
|
||||
uid="uid://tcv4vh2gdc2v"
|
||||
path="res://.godot/imported/voc_en_min_17.mp3-4bb422795ebee1d65929862299155bea.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_17.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_17.mp3-4bb422795ebee1d65929862299155bea.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_17.mp3-4bb422795ebee1d65929862299155bea.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_18.mp3-d69368ac7a164fc1f8a550f51063774c.mp3str"
|
||||
uid="uid://cuux1xxo6gajb"
|
||||
path="res://.godot/imported/voc_en_min_18.mp3-d69368ac7a164fc1f8a550f51063774c.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_18.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_18.mp3-d69368ac7a164fc1f8a550f51063774c.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_18.mp3-d69368ac7a164fc1f8a550f51063774c.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_19.mp3-0d258a9775bfd0f82a73b8f72ed2b072.mp3str"
|
||||
uid="uid://41yerrrdr8s2"
|
||||
path="res://.godot/imported/voc_en_min_19.mp3-0d258a9775bfd0f82a73b8f72ed2b072.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_19.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_19.mp3-0d258a9775bfd0f82a73b8f72ed2b072.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_19.mp3-0d258a9775bfd0f82a73b8f72ed2b072.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_20.mp3-ede5cebd155cc53aae0527b970f74731.mp3str"
|
||||
uid="uid://cyoiqwb40u3hg"
|
||||
path="res://.godot/imported/voc_en_min_20.mp3-ede5cebd155cc53aae0527b970f74731.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_20.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_20.mp3-ede5cebd155cc53aae0527b970f74731.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_20.mp3-ede5cebd155cc53aae0527b970f74731.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_21.mp3-54b81a230ab69668c2153d03002fb8ff.mp3str"
|
||||
uid="uid://bmhjd8h74mlh8"
|
||||
path="res://.godot/imported/voc_en_min_21.mp3-54b81a230ab69668c2153d03002fb8ff.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_21.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_21.mp3-54b81a230ab69668c2153d03002fb8ff.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_21.mp3-54b81a230ab69668c2153d03002fb8ff.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_22.mp3-9d9d380058e81621aae367d51e5936cf.mp3str"
|
||||
uid="uid://cdm0cg8qiqxj5"
|
||||
path="res://.godot/imported/voc_en_min_22.mp3-9d9d380058e81621aae367d51e5936cf.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_22.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_22.mp3-9d9d380058e81621aae367d51e5936cf.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_22.mp3-9d9d380058e81621aae367d51e5936cf.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_23.mp3-9633025b0ad368870e04839c13a2b196.mp3str"
|
||||
uid="uid://bj8bvq3ktjnkq"
|
||||
path="res://.godot/imported/voc_en_min_23.mp3-9633025b0ad368870e04839c13a2b196.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_23.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_23.mp3-9633025b0ad368870e04839c13a2b196.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_23.mp3-9633025b0ad368870e04839c13a2b196.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_24.mp3-ca673c9c1eabc88dfc1859146135e0ef.mp3str"
|
||||
uid="uid://dvrh5xteljeq8"
|
||||
path="res://.godot/imported/voc_en_min_24.mp3-ca673c9c1eabc88dfc1859146135e0ef.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_24.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_24.mp3-ca673c9c1eabc88dfc1859146135e0ef.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_24.mp3-ca673c9c1eabc88dfc1859146135e0ef.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_25.mp3-c2957fb350e6ace698542df101179495.mp3str"
|
||||
uid="uid://dpdqn42w4vhq6"
|
||||
path="res://.godot/imported/voc_en_min_25.mp3-c2957fb350e6ace698542df101179495.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_25.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_25.mp3-c2957fb350e6ace698542df101179495.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_25.mp3-c2957fb350e6ace698542df101179495.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_26.mp3-fff560c70913789d5bcc10414f7c2a91.mp3str"
|
||||
uid="uid://ctiasusmy561r"
|
||||
path="res://.godot/imported/voc_en_min_26.mp3-fff560c70913789d5bcc10414f7c2a91.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_26.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_26.mp3-fff560c70913789d5bcc10414f7c2a91.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_26.mp3-fff560c70913789d5bcc10414f7c2a91.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_27.mp3-a9dc7690be6ac2e2e99b998cfca05dfd.mp3str"
|
||||
uid="uid://bcp07peloqof5"
|
||||
path="res://.godot/imported/voc_en_min_27.mp3-a9dc7690be6ac2e2e99b998cfca05dfd.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_27.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_27.mp3-a9dc7690be6ac2e2e99b998cfca05dfd.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_27.mp3-a9dc7690be6ac2e2e99b998cfca05dfd.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_28.mp3-c5a00906bf601496d9cd4b6cc31f2438.mp3str"
|
||||
uid="uid://7frv8wjmybmn"
|
||||
path="res://.godot/imported/voc_en_min_28.mp3-c5a00906bf601496d9cd4b6cc31f2438.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_28.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_28.mp3-c5a00906bf601496d9cd4b6cc31f2438.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_28.mp3-c5a00906bf601496d9cd4b6cc31f2438.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_29.mp3-a68964db3b8057fb3d1f3d5b6028f4f7.mp3str"
|
||||
uid="uid://dg5oc8kssdf6j"
|
||||
path="res://.godot/imported/voc_en_min_29.mp3-a68964db3b8057fb3d1f3d5b6028f4f7.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_29.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_29.mp3-a68964db3b8057fb3d1f3d5b6028f4f7.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_29.mp3-a68964db3b8057fb3d1f3d5b6028f4f7.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_30.mp3-6172ad2a9192e0b0b1e1aad487140bb8.mp3str"
|
||||
uid="uid://cc1jnqonnw1yy"
|
||||
path="res://.godot/imported/voc_en_min_30.mp3-6172ad2a9192e0b0b1e1aad487140bb8.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_30.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_30.mp3-6172ad2a9192e0b0b1e1aad487140bb8.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_30.mp3-6172ad2a9192e0b0b1e1aad487140bb8.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_31.mp3-273a8e8265b48a6c212db845ddd2e0cb.mp3str"
|
||||
uid="uid://cctt3hhv0e3q7"
|
||||
path="res://.godot/imported/voc_en_min_31.mp3-273a8e8265b48a6c212db845ddd2e0cb.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_31.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_31.mp3-273a8e8265b48a6c212db845ddd2e0cb.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_31.mp3-273a8e8265b48a6c212db845ddd2e0cb.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_32.mp3-cea186b22599fc947fe5854e4fff2f5e.mp3str"
|
||||
uid="uid://c7wls523o534k"
|
||||
path="res://.godot/imported/voc_en_min_32.mp3-cea186b22599fc947fe5854e4fff2f5e.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_32.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_32.mp3-cea186b22599fc947fe5854e4fff2f5e.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_32.mp3-cea186b22599fc947fe5854e4fff2f5e.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_33.mp3-7da19c49994398a971dfdc1b29a92382.mp3str"
|
||||
uid="uid://wiebd7k67ojy"
|
||||
path="res://.godot/imported/voc_en_min_33.mp3-7da19c49994398a971dfdc1b29a92382.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_33.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_33.mp3-7da19c49994398a971dfdc1b29a92382.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_33.mp3-7da19c49994398a971dfdc1b29a92382.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_34.mp3-72a97e9170b17ce31084a5e304ff0410.mp3str"
|
||||
uid="uid://c1jcw162koaj3"
|
||||
path="res://.godot/imported/voc_en_min_34.mp3-72a97e9170b17ce31084a5e304ff0410.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_34.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_34.mp3-72a97e9170b17ce31084a5e304ff0410.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_34.mp3-72a97e9170b17ce31084a5e304ff0410.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_35.mp3-bef143a247839cd40724349e4b48bc47.mp3str"
|
||||
uid="uid://bfqn0igf12v0x"
|
||||
path="res://.godot/imported/voc_en_min_35.mp3-bef143a247839cd40724349e4b48bc47.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_35.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_35.mp3-bef143a247839cd40724349e4b48bc47.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_35.mp3-bef143a247839cd40724349e4b48bc47.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_36.mp3-95e06e5df7f86fbaa0974583cae20e41.mp3str"
|
||||
uid="uid://3f6vmgks2rs0"
|
||||
path="res://.godot/imported/voc_en_min_36.mp3-95e06e5df7f86fbaa0974583cae20e41.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_36.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_36.mp3-95e06e5df7f86fbaa0974583cae20e41.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_36.mp3-95e06e5df7f86fbaa0974583cae20e41.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_37.mp3-67491c61eda67d1f9260f6afb5a7dc6a.mp3str"
|
||||
uid="uid://gtfk6s2dfn65"
|
||||
path="res://.godot/imported/voc_en_min_37.mp3-67491c61eda67d1f9260f6afb5a7dc6a.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_37.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_37.mp3-67491c61eda67d1f9260f6afb5a7dc6a.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_37.mp3-67491c61eda67d1f9260f6afb5a7dc6a.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_38.mp3-17c5711590267b8e37fc6e618d4c7bdb.mp3str"
|
||||
uid="uid://0tiemcxvncvw"
|
||||
path="res://.godot/imported/voc_en_min_38.mp3-17c5711590267b8e37fc6e618d4c7bdb.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_38.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_38.mp3-17c5711590267b8e37fc6e618d4c7bdb.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_38.mp3-17c5711590267b8e37fc6e618d4c7bdb.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_39.mp3-333beda3933597f86d771abed5c025b7.mp3str"
|
||||
uid="uid://lvt1kujovmd5"
|
||||
path="res://.godot/imported/voc_en_min_39.mp3-333beda3933597f86d771abed5c025b7.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_39.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_39.mp3-333beda3933597f86d771abed5c025b7.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_39.mp3-333beda3933597f86d771abed5c025b7.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_40.mp3-28b6dcffec497202bdb7409d4d43f530.mp3str"
|
||||
uid="uid://cvcl1lnt61lhp"
|
||||
path="res://.godot/imported/voc_en_min_40.mp3-28b6dcffec497202bdb7409d4d43f530.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_40.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_40.mp3-28b6dcffec497202bdb7409d4d43f530.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_40.mp3-28b6dcffec497202bdb7409d4d43f530.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_41.mp3-13407cd9976b661f9cb4a1830b6f00a9.mp3str"
|
||||
uid="uid://cmhqq08kqkgfn"
|
||||
path="res://.godot/imported/voc_en_min_41.mp3-13407cd9976b661f9cb4a1830b6f00a9.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_41.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_41.mp3-13407cd9976b661f9cb4a1830b6f00a9.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_41.mp3-13407cd9976b661f9cb4a1830b6f00a9.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_42.mp3-faa7cfebe220815bd2bfb4f1799f2aff.mp3str"
|
||||
uid="uid://cqir3do1tlr74"
|
||||
path="res://.godot/imported/voc_en_min_42.mp3-faa7cfebe220815bd2bfb4f1799f2aff.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_42.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_42.mp3-faa7cfebe220815bd2bfb4f1799f2aff.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_42.mp3-faa7cfebe220815bd2bfb4f1799f2aff.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_43.mp3-c3c6872be73474340a163bd7e4fb13cf.mp3str"
|
||||
uid="uid://bdv8e2wyprt68"
|
||||
path="res://.godot/imported/voc_en_min_43.mp3-c3c6872be73474340a163bd7e4fb13cf.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_43.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_43.mp3-c3c6872be73474340a163bd7e4fb13cf.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_43.mp3-c3c6872be73474340a163bd7e4fb13cf.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_44.mp3-f87dd486ea67faf71bc9d9b986e6764d.mp3str"
|
||||
uid="uid://bwg5ahamgffie"
|
||||
path="res://.godot/imported/voc_en_min_44.mp3-f87dd486ea67faf71bc9d9b986e6764d.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_44.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_44.mp3-f87dd486ea67faf71bc9d9b986e6764d.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_44.mp3-f87dd486ea67faf71bc9d9b986e6764d.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_45.mp3-2830171e85b3918592ed5c62a386163e.mp3str"
|
||||
uid="uid://c5myydmx3hn30"
|
||||
path="res://.godot/imported/voc_en_min_45.mp3-2830171e85b3918592ed5c62a386163e.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_45.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_45.mp3-2830171e85b3918592ed5c62a386163e.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_45.mp3-2830171e85b3918592ed5c62a386163e.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_46.mp3-995214546e6f62c0a65231c816d9bf77.mp3str"
|
||||
uid="uid://cgiqqdi6moddu"
|
||||
path="res://.godot/imported/voc_en_min_46.mp3-995214546e6f62c0a65231c816d9bf77.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_46.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_46.mp3-995214546e6f62c0a65231c816d9bf77.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_46.mp3-995214546e6f62c0a65231c816d9bf77.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_47.mp3-df4303ffba1493ea49583705ff58e308.mp3str"
|
||||
uid="uid://brkxevj5t25gh"
|
||||
path="res://.godot/imported/voc_en_min_47.mp3-df4303ffba1493ea49583705ff58e308.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_47.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_47.mp3-df4303ffba1493ea49583705ff58e308.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_47.mp3-df4303ffba1493ea49583705ff58e308.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_48.mp3-d070d7d91c49c364bfc41e221292fded.mp3str"
|
||||
uid="uid://c823l15eguqnl"
|
||||
path="res://.godot/imported/voc_en_min_48.mp3-d070d7d91c49c364bfc41e221292fded.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_48.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_48.mp3-d070d7d91c49c364bfc41e221292fded.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_48.mp3-d070d7d91c49c364bfc41e221292fded.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_49.mp3-48ac18189f1face091e37b64b21fb40c.mp3str"
|
||||
uid="uid://dqds1ce3upf7"
|
||||
path="res://.godot/imported/voc_en_min_49.mp3-48ac18189f1face091e37b64b21fb40c.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_49.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_49.mp3-48ac18189f1face091e37b64b21fb40c.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_49.mp3-48ac18189f1face091e37b64b21fb40c.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_50.mp3-eec007d8c248663838a99842ee3839c7.mp3str"
|
||||
uid="uid://bcurn3w0ehwva"
|
||||
path="res://.godot/imported/voc_en_min_50.mp3-eec007d8c248663838a99842ee3839c7.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_50.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_50.mp3-eec007d8c248663838a99842ee3839c7.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_50.mp3-eec007d8c248663838a99842ee3839c7.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_51.mp3-899a5486c5b4b6ec3d909a942d5637c2.mp3str"
|
||||
uid="uid://dsuavqlmj3v1h"
|
||||
path="res://.godot/imported/voc_en_min_51.mp3-899a5486c5b4b6ec3d909a942d5637c2.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_51.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_51.mp3-899a5486c5b4b6ec3d909a942d5637c2.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_51.mp3-899a5486c5b4b6ec3d909a942d5637c2.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_52.mp3-924235e97ed5e88e94b1cc4b011cdf3a.mp3str"
|
||||
uid="uid://bsx8p6obqd5e1"
|
||||
path="res://.godot/imported/voc_en_min_52.mp3-924235e97ed5e88e94b1cc4b011cdf3a.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_52.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_52.mp3-924235e97ed5e88e94b1cc4b011cdf3a.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_52.mp3-924235e97ed5e88e94b1cc4b011cdf3a.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_53.mp3-3654af37686bb5387dbd2e38d4fd96ab.mp3str"
|
||||
uid="uid://bfmcdhnrlm23x"
|
||||
path="res://.godot/imported/voc_en_min_53.mp3-3654af37686bb5387dbd2e38d4fd96ab.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_53.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_53.mp3-3654af37686bb5387dbd2e38d4fd96ab.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_53.mp3-3654af37686bb5387dbd2e38d4fd96ab.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_54.mp3-b7165a87b6c07d0fd0b39af4194d7e10.mp3str"
|
||||
uid="uid://bfkobgh5irynl"
|
||||
path="res://.godot/imported/voc_en_min_54.mp3-b7165a87b6c07d0fd0b39af4194d7e10.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_54.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_54.mp3-b7165a87b6c07d0fd0b39af4194d7e10.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_54.mp3-b7165a87b6c07d0fd0b39af4194d7e10.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_55.mp3-34630e1e7d4c11c026447146b9dfdc0d.mp3str"
|
||||
uid="uid://daf53ebpha5nq"
|
||||
path="res://.godot/imported/voc_en_min_55.mp3-34630e1e7d4c11c026447146b9dfdc0d.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_55.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_55.mp3-34630e1e7d4c11c026447146b9dfdc0d.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_55.mp3-34630e1e7d4c11c026447146b9dfdc0d.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_56.mp3-02b56f1cda3c9b4436bd5092f1d791dc.mp3str"
|
||||
uid="uid://bd2w0nmauscmj"
|
||||
path="res://.godot/imported/voc_en_min_56.mp3-02b56f1cda3c9b4436bd5092f1d791dc.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_56.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_56.mp3-02b56f1cda3c9b4436bd5092f1d791dc.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_56.mp3-02b56f1cda3c9b4436bd5092f1d791dc.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_57.mp3-def5dae627c49cd67b600953aa5f8dc1.mp3str"
|
||||
uid="uid://pxf28050fef1"
|
||||
path="res://.godot/imported/voc_en_min_57.mp3-def5dae627c49cd67b600953aa5f8dc1.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_57.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_57.mp3-def5dae627c49cd67b600953aa5f8dc1.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_57.mp3-def5dae627c49cd67b600953aa5f8dc1.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_58.mp3-3f4fe07487f1609160c9b2bb677e2ee6.mp3str"
|
||||
uid="uid://b6ejrlw4yb1fs"
|
||||
path="res://.godot/imported/voc_en_min_58.mp3-3f4fe07487f1609160c9b2bb677e2ee6.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_58.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_58.mp3-3f4fe07487f1609160c9b2bb677e2ee6.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_58.mp3-3f4fe07487f1609160c9b2bb677e2ee6.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_min_59.mp3-01fa9182318a343a8c174a1207e8db67.mp3str"
|
||||
uid="uid://13e7530l3voa"
|
||||
path="res://.godot/imported/voc_en_min_59.mp3-01fa9182318a343a8c174a1207e8db67.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/minute/voc_en_min_59.mp3"
|
||||
dest_files=[ "res://.import/voc_en_min_59.mp3-01fa9182318a343a8c174a1207e8db67.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_min_59.mp3-01fa9182318a343a8c174a1207e8db67.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_week_0.mp3-56560d67b45db2fa19ad13e65a6f8c1c.mp3str"
|
||||
uid="uid://c7k67bk45yut3"
|
||||
path="res://.godot/imported/voc_en_week_0.mp3-56560d67b45db2fa19ad13e65a6f8c1c.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/weekday/voc_en_week_0.mp3"
|
||||
dest_files=[ "res://.import/voc_en_week_0.mp3-56560d67b45db2fa19ad13e65a6f8c1c.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_week_0.mp3-56560d67b45db2fa19ad13e65a6f8c1c.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_week_1.mp3-2d699ec374e6807111e48dff9c21fea6.mp3str"
|
||||
uid="uid://xkckj5q2kmt5"
|
||||
path="res://.godot/imported/voc_en_week_1.mp3-2d699ec374e6807111e48dff9c21fea6.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/weekday/voc_en_week_1.mp3"
|
||||
dest_files=[ "res://.import/voc_en_week_1.mp3-2d699ec374e6807111e48dff9c21fea6.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_week_1.mp3-2d699ec374e6807111e48dff9c21fea6.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_week_2.mp3-24e48d6aa03a6e9ae71a36594179b154.mp3str"
|
||||
uid="uid://c8mylp6y25tgp"
|
||||
path="res://.godot/imported/voc_en_week_2.mp3-24e48d6aa03a6e9ae71a36594179b154.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/weekday/voc_en_week_2.mp3"
|
||||
dest_files=[ "res://.import/voc_en_week_2.mp3-24e48d6aa03a6e9ae71a36594179b154.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_week_2.mp3-24e48d6aa03a6e9ae71a36594179b154.mp3str"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
||||
|
||||
@@ -2,14 +2,18 @@
|
||||
|
||||
importer="mp3"
|
||||
type="AudioStreamMP3"
|
||||
path="res://.import/voc_en_week_3.mp3-6db04f3144d94d778c23395faabaf3ac.mp3str"
|
||||
uid="uid://bn01yndlfwj7d"
|
||||
path="res://.godot/imported/voc_en_week_3.mp3-6db04f3144d94d778c23395faabaf3ac.mp3str"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/audio/clips/time/weekday/voc_en_week_3.mp3"
|
||||
dest_files=[ "res://.import/voc_en_week_3.mp3-6db04f3144d94d778c23395faabaf3ac.mp3str" ]
|
||||
dest_files=["res://.godot/imported/voc_en_week_3.mp3-6db04f3144d94d778c23395faabaf3ac.mp3str"]
|
||||
|
||||
[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