Narrative Design Keys
This guide shows how to dynamically pass variables to Narrative Design section and triggers
Last updated
This guide shows how to dynamically pass variables to Narrative Design section and triggers
Last updated
We will create a simple scenario where the character welcomes the player and asks them about their evening or morning based on the player's time of day.
In the playground, enable Narrative Design on your character and change the starting section name to Welcome
.
Add the following to the Objective field of the Welcome section:
The time of day currently is {TimeOfDay}. Welcome the player and ask him how his {TimeOfDay} is going.
Notice that by adding any string between curly brackets it becomes a variable, and what we did here is adding the time of day as a variable, then from Unreal we can pass either the word "Morning" or "Evening" and the character will respond accordingly.
Setting Narrative Template Keys in JavaScript
To initialize your narrative design framework with custom template keys, you can pass the narrativeTemplateKeys
argument when instantiating the convaiClient
. This allows you to define and structure your narrative flow programmatically.