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
In the Unity integration for Ink, our current project is taking advantage of runtime compilation to expose content for modding in the StreamingAssets folder. This means that content will live dynamically in a series of folders under our StreamingAssets/Mods directory.
We also use a bunch of external functions to interact with game state, which currently are housed in a Globals.ink file that lives in StreamingAssets/Content. Anyways, in order to make INCLUDEs work from a mod folder to the Globals.ink file, we've set the base folder path in the Ink compiler in the Unity integration to the StreamingAssets/Content folder, and now any Ink file in our project can access Globals.ink or whatever else lives in that folder.
The problem is: there is no way to set the base folder path in Inky. So as mod content is generated, nothing can be tested in the editor, because Inky assumes a relative file path. I think the simplest solution to this problem would be to expose a setting allowing a user the option to arbitrarily set the base folder path for INCLUDEs.
The text was updated successfully, but these errors were encountered:
In the Unity integration for Ink, our current project is taking advantage of runtime compilation to expose content for modding in the StreamingAssets folder. This means that content will live dynamically in a series of folders under our StreamingAssets/Mods directory.
We also use a bunch of external functions to interact with game state, which currently are housed in a Globals.ink file that lives in StreamingAssets/Content. Anyways, in order to make INCLUDEs work from a mod folder to the Globals.ink file, we've set the base folder path in the Ink compiler in the Unity integration to the StreamingAssets/Content folder, and now any Ink file in our project can access Globals.ink or whatever else lives in that folder.
The problem is: there is no way to set the base folder path in Inky. So as mod content is generated, nothing can be tested in the editor, because Inky assumes a relative file path. I think the simplest solution to this problem would be to expose a setting allowing a user the option to arbitrarily set the base folder path for INCLUDEs.
The text was updated successfully, but these errors were encountered: