Taos API Reference
    Preparing search index...

    Interface ExpressionGraph

    A composable graph of variables and actions. Used as the body of an 'expression' ModifierNode (regular per-frame update) or as the action list for an on_spawn / on_death event.

    interface ExpressionGraph {
        variables?: VariableDecl[];
        actions: Action[];
    }
    Index

    Properties

    Properties

    variables?: VariableDecl[]
    actions: Action[]