Open OneManMonkeySquad opened 1 year ago
You could look into Inkle's approach to resumable/quittable dialogue for A Highland Song.
At the end of the blog post, Jon Ingold mentions that Ink automatically tracks which knots have been seen. In your case, you can check if InteractFaye
has been seen using the InteractFaye
variable.
Hey, I've toyed and looked around on how to best integrate Ink into an open world game (think Skyrim). Currently my dialog looks like this (please don't laugh, I'm a programmer):
The game uses _inkStory.ChoosePathString to "start" a dialog. The __inkStory stays the same, meaning the global state is shared. This means that the knot restarts every time the dialog is triggered, thus I have to use the _talked_tofaye variable to give a different reaction. I wonder if I could somehow stay inside the dialog, using threads or parallel "flows". Or if that is even a desirable thing, KISS et al.
edit: Hmm, maybe the solution of having a [Move] choice together with having one parallel flow per NPC. That would achieve the dialog pause at predefined points. Lots of options, maybe somebody can share some experience.