before planets

This commit is contained in:
Crizomb 2025-08-03 05:57:42 +02:00
parent bb6404e918
commit e09f05b566
57 changed files with 1203 additions and 90 deletions

Binary file not shown.

View file

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://m74hgy1a7c8j"
path="res://.godot/imported/508004__rokzroom__otherworlds-2.wav-c541d2a72814a6f5a6b451e87439bcaa.sample"
[deps]
source_file="res://music/508004__rokzroom__otherworlds-2.wav"
dest_files=["res://.godot/imported/508004__rokzroom__otherworlds-2.wav-c541d2a72814a6f5a6b451e87439bcaa.sample"]
[params]
force/8_bit=false
force/mono=false
force/max_rate=false
force/max_rate_hz=44100
edit/trim=false
edit/normalize=false
edit/loop_mode=2
edit/loop_begin=0
edit/loop_end=-1
compress/mode=2

View file

@ -0,0 +1,19 @@
[remap]
importer="mp3"
type="AudioStreamMP3"
uid="uid://vuklmpsqbtf1"
path="res://.godot/imported/cool-retro-synthwave-type-beat-into-the-future-213802.mp3-5204f398484b98a0ed509db8bb482006.mp3str"
[deps]
source_file="res://music/cool-retro-synthwave-type-beat-into-the-future-213802.mp3"
dest_files=["res://.godot/imported/cool-retro-synthwave-type-beat-into-the-future-213802.mp3-5204f398484b98a0ed509db8bb482006.mp3str"]
[params]
loop=true
loop_offset=0.0
bpm=0.0
beat_count=0
bar_beats=4

Binary file not shown.

View file

@ -0,0 +1,19 @@
[remap]
importer="mp3"
type="AudioStreamMP3"
uid="uid://j6hmcw8jucih"
path="res://.godot/imported/dark-synthwave-neon-nights-251682.mp3-7be644ceb74bc5132e38ea56798f84cd.mp3str"
[deps]
source_file="res://music/dark-synthwave-neon-nights-251682.mp3"
dest_files=["res://.godot/imported/dark-synthwave-neon-nights-251682.mp3-7be644ceb74bc5132e38ea56798f84cd.mp3str"]
[params]
loop=true
loop_offset=0.0
bpm=0.0
beat_count=0
bar_beats=4

22
music/musicManager.gd Normal file
View file

@ -0,0 +1,22 @@
extends AudioStreamPlayer
const MENU_MUSIC = preload("res://music/508004__rokzroom__otherworlds-2.wav")
const LEVEL_MUSICS = [
preload("res://music/cool-retro-synthwave-type-beat-into-the-future-213802.mp3"),
preload("res://music/retro-synthwave-background-soundtrack-341853.mp3"),
preload("res://music/dark-synthwave-neon-nights-251682.mp3")
]
func _ready() -> void:
process_mode = Node.PROCESS_MODE_ALWAYS
func launch_level_music(num_lvl):
stream = LEVEL_MUSICS[num_lvl]
bus = "Music"
play()
func launch_menu_music():
stream = MENU_MUSIC
bus = "Music"
play()

View file

@ -0,0 +1 @@
uid://bmhkbyy1yb7yr

Binary file not shown.

View file

@ -0,0 +1,19 @@
[remap]
importer="mp3"
type="AudioStreamMP3"
uid="uid://ue1jnubabl3p"
path="res://.godot/imported/retro-synthwave-background-soundtrack-341853.mp3-e9a7415f606a86fc438064409ddc8d5b.mp3str"
[deps]
source_file="res://music/retro-synthwave-background-soundtrack-341853.mp3"
dest_files=["res://.godot/imported/retro-synthwave-background-soundtrack-341853.mp3-e9a7415f606a86fc438064409ddc8d5b.mp3str"]
[params]
loop=true
loop_offset=0.0
bpm=0.0
beat_count=0
bar_beats=4