Strata - v1.4.10
    Preparing search index...

    Variable YukaStateMachineConst

    YukaStateMachine: ForwardRefExoticComponent<
        YukaStateMachineProps & RefAttributes<YukaStateMachineRef>,
    > = ...

    Finite State Machine component for AI behavior control. Manages state transitions with enter/execute/exit callbacks.

    <YukaStateMachine
    states={[
    { name: 'idle', onEnter: () => console.log('Idle') },
    { name: 'patrol', onEnter: () => console.log('Patrol') }
    ]}
    initialState="idle"
    />