I try to package some existing Lua libs in a LÖVE project, but I have some troubles with "require".
A lot of existing Lua code use the following syntax to require the file "package/file.lua":
Code: Select all
require "package.file"
And if so, will this change in future versions?
For example I'd like to package an OOP or Zip lib with my LÖVE game, but I'd hate to have to change all its requires every time I upgrade the libs.
Cheers!
[Edit] More accurate details.