UCAutomationComponent

Overview

Automation command sequencer. Reads FCAutomationStruct from the character maker and exposes a circular command queue via ICAutomationComponent_.

Properties & Methods

Name Description
automation UCAutomation object holding the command array
init Parses automationStructArray from maker into typed commands
read Returns the current command as TPair<FName, FCVariantType>
next Advances to the next command (circular)
isEmpty Returns true if no commands are defined
// UCAutomation stores commands as (FName, FCVariantType) pairs
// Supported commands: LOCATION (FName), WAIT (float)
// The AI behavior tree reads commands via ICAutomationComponent_ interface