Is it possible to require in a file using a string in a variable rather than a static string?
local nextView = "nextView" local view = require nextView
i get weird “missing = after local” errors with this code.
I’m trying create a more dynamic storyboardsystem where I just use two storyboard scene files that load each other when needed and load their contents dynamically by sending a variable to them with view content rather than repeat the standard storyboard functions (create, destroy, etc) in every file.