Editor API Reference - v1.1.4
    Preparing search index...

    Type Alias ScriptComponent

    Script Component Properties.

    type ScriptComponent = {
        enabled: boolean;
        order: string[];
        scripts: {
            [key: string]: { attributes: { [key: string]: any }; enabled: boolean };
        };
    }
    Index

    Properties

    Properties

    enabled: boolean

    Whether the component is enabled.

    true
    
    order: string[]

    An array of script names in the order they should be executed at runtime.

    []
    
    scripts: {
        [key: string]: { attributes: { [key: string]: any }; enabled: boolean };
    }

    A dictionary containing all scripts attached to this component, indexed by script name.