Editor Scripting API

    Represents the options for searching.

    interface SearchOptions {
        createIfNotFound?: boolean;
        createOptions?: CreateOptions;
        findAll?: boolean;
        maxDepth?: number;
    }
    Index

    Properties

    createIfNotFound?: boolean

    Indicates whether to create the item if it is not found.

    createOptions?: CreateOptions

    The options for creating the item.

    findAll?: boolean

    Indicates whether to find all matches or stop at the first match.

    maxDepth?: number

    The maximum depth to search. 1 means only the immediate children of the base object.

    MMNEPVFCICPMFPCPTTAAATR