Taos API Reference
    Preparing search index...

    Interface VariableDecl

    Local variable declared at the top of a graph block. Lives for the duration of one block execution (one particle per frame). initial may reference earlier-declared variables but not itself or later ones; if omitted the variable is zero-initialized.

    interface VariableDecl {
        name: string;
        type: VariableType;
        initial?: Expr;
    }
    Index

    Properties

    Properties

    name: string
    initial?: Expr