diff --git a/audio/sounds/a_egg_shoot.ogg b/audio/sounds/a_egg_shoot.ogg deleted file mode 100644 index 9d36c0b..0000000 Binary files a/audio/sounds/a_egg_shoot.ogg and /dev/null differ diff --git a/audio/sounds/shoot_arrow.ogg b/audio/sounds/shoot_arrow.ogg new file mode 100644 index 0000000..d4c1af0 Binary files /dev/null and b/audio/sounds/shoot_arrow.ogg differ diff --git a/audio/sounds/shoot_arrow.ogg.import b/audio/sounds/shoot_arrow.ogg.import new file mode 100644 index 0000000..04c825f --- /dev/null +++ b/audio/sounds/shoot_arrow.ogg.import @@ -0,0 +1,15 @@ +[remap] + +importer="ogg_vorbis" +type="AudioStreamOGGVorbis" +path="res://.import/shoot_arrow.ogg-ba808bde18beb6a17914b29392aff543.oggstr" + +[deps] + +source_file="res://audio/sounds/shoot_arrow.ogg" +dest_files=[ "res://.import/shoot_arrow.ogg-ba808bde18beb6a17914b29392aff543.oggstr" ] + +[params] + +loop=false +loop_offset=0 diff --git a/autoloads/audio.gd b/autoloads/audio.gd index e629e88..cb420eb 100644 --- a/autoloads/audio.gd +++ b/autoloads/audio.gd @@ -19,7 +19,7 @@ const a_climb_up = preload("res://audio/sounds/a_climb.ogg") const a_climb_down = preload("res://audio/sounds/a_bmilc.ogg") const a_sword = preload("res://audio/sounds/sword.ogg") const a_doublejump = preload("res://audio/sounds/a_bree.wav") -const a_shoot = preload("res://audio/sounds/a_egg_shoot.ogg") +const a_shoot = preload("res://audio/sounds/shoot_arrow.ogg") const a_die = preload("res://audio/sounds/die.wav") const a_die_skeleton = preload("res://audio/sounds/die_skeleton.wav") const a_scrump_die = preload("res://audio/sounds/scrump_die.wav")