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
Force loading specific modules is not nice, I would expect that disabling the sound module from conf.lua would make love-loader only load images, instead the sound module is loaded anyway because of the requires at the beginning, deleting these of course makes love-loader crash.
For a future version (maybe whenever this becomes stateless) love-loader should check for each needed module before even start loading.
This will useful in a stateless version so that only the needed loaders are loaded in each thread, for example if I want to load sounds in a thread and images in other then I would only require love.sound in one and not in the other. Also helpful when I'm only using love-loader for images, for example.
The text was updated successfully, but these errors were encountered:
Force loading specific modules is not nice, I would expect that disabling the sound module from
conf.lua
would make love-loader only load images, instead the sound module is loaded anyway because of the requires at the beginning, deleting these of course makes love-loader crash.For a future version (maybe whenever this becomes stateless) love-loader should check for each needed module before even start loading.
This will useful in a stateless version so that only the needed loaders are loaded in each thread, for example if I want to load sounds in a thread and images in other then I would only require
love.sound
in one and not in the other. Also helpful when I'm only using love-loader for images, for example.The text was updated successfully, but these errors were encountered: