Clear Character Step

Introduction

Clears the active character from the current event location. Usually used after the character has left the conversation narratively to remove their image from the screen

Interface

interface ClearCharacterStep {
  kind: 'clearCharacter';
  condition?: string;
}

Properties

  • kind - Always 'clearCharacter'
  • condition (optional) - Conditional execution

Examples

Basic Character Clearing

{
  kind: 'clearCharacter';
}