narrator
narrator copied to clipboard
Added love demo
Sorry for the delay, but I need time to improve something in this request.
Сan we place it to the example-love folder and keep it working?
You would have to copy the narrator script inside that folder as well since require paths in love is relative to where the main.lua is
You would have to copy the narrator script inside that folder as well since require paths in love is relative to where the main.lua is
Ideally it would be enough to add package.path = package.path .. ";../?.lua" to the beginning of main.lua, but for some reason it does not work - love does not see the file in the path ../narrator/narrator.lua. Any ideas why?
You would have to copy the narrator script inside that folder as well since require paths in love is relative to where the main.lua is
Ideally it would be enough to add
package.path = package.path .. ";../?.lua"to the beginning of main.lua, but for some reason it does not work - love does not see the file in the path../narrator/narrator.lua. Any ideas why?
Thats really just how love handles filesystems and paths (a limitation for now), but in next major release i believe that that filesystem limitation would not be an issue anymore.