Hi. Can anyone tell me how to require a module that is located within a parent folder of the calling lua file?
I can use the dot notation to dig down into the folder navigation. ParentFolder.SubFolder.File but i’ve no idea how to reference it back up.
Main Folder
module_needed.lua
Sub Folder
--------------------------
calling_file.lua
For images, I would use …/ but this doesn’t work for requiring modules.
local module = require("???")