Talk To Character Step
Introduction
Immediately inserts the target characters talk interaction steps into the current conversation. Mainly used to allow sharing of dialogue steps between multiple interaction mechanisms
Interface
interface TalkToCharacterStep {
kind: 'talkToCharacter';
condition?: string;
character: string;
}
Properties
kind
- Always'talkToCharacter'
character
- Character to open dialogue withcondition
(optional) - Conditional execution
Examples
{
kind: 'talkToCharacter',
character: 'VillageElder'
}