You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
res://addons/ez_sound/ez_sound.gd:64 - at function: play_sfx
Even though I have setup the sounds folder and assigned its dir, dir = ProjectSettings.get_setting(USER_SETTING_PATH, null) always returns null.
Every time I also restart godot the dir gets wiped and I have to reassign it.
I managed to get it working by just replacing dir = ProjectSettings.get_setting(USER_SETTING_PATH, null) with dir = "res://sounds/" (/sounds being my folder)
The text was updated successfully, but these errors were encountered:
res://addons/ez_sound/ez_sound.gd:64 - at function: play_sfx
Even though I have setup the sounds folder and assigned its dir,
dir = ProjectSettings.get_setting(USER_SETTING_PATH, null)
always returns null.Every time I also restart godot the dir gets wiped and I have to reassign it.
I managed to get it working by just replacing
dir = ProjectSettings.get_setting(USER_SETTING_PATH, null)
withdir = "res://sounds/"
(/sounds being my folder)The text was updated successfully, but these errors were encountered: