interface BeamToIXArgs {
    hasServer?: boolean;
    isStrict?: boolean;
    isTeleporting?: boolean;
    isVerbose?: boolean;
    renderNr?: uint;
    scene?: Scene;
    stage?: uint;
    story?: Story;
    user?: AnyParams;
    vars: Vars;
    waitMan?: WaitMan;
}

Properties

hasServer?: boolean

True if it's running a supporting server program for frame storage.

#end-user

isStrict?: boolean

If true, perform type checks and other restriction checks.

isTeleporting?: boolean
isVerbose?: boolean

If true, the internal code or plugin should dump information using story.logFrmt.

renderNr?: uint

Every time, the render is executed this value is incremented.

scene?: Scene
stage?: uint
story?: Story
user?: AnyParams
vars: Vars
waitMan?: WaitMan