we
    Preparing search index...

    用户自定义功能接口的update interface

    interface I_Model {
        dataTypeOfAttribute?: "BOL" | "inModel";
        debug?: boolean;
        name?: string;
        scene: Scene;
        update?: (scope: any) => any;
        updateAtEnd?: (scope: any) => any;
        url: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    dataTypeOfAttribute?: "BOL" | "inModel"

    属性数据类型 1、BOL:由BOL管理 2、inModel:模型内部数据

    debug?: boolean

    是否开启debug模式 1、instanceRes是否注销

    name?: string
    scene: Scene
    update?: (scope: any) => any

    自定义更新functon()

    updateAtEnd?: (scope: any) => any

    在最后执行调用

    url: string