we
    Preparing search index...

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

    interface IV_Node {
        entity?: BaseEntity;
        matrix?: weMat4;
        name?: string;
        physicalBody?: PhysicBody;
        position?: weVec3;
        quaternion?: weVec4;
        relation?: T_worldRelationTransmit;
        rotate?: weVec4;
        scale?: weVec3;
        spaceType?: E_BVHSpaceType;
        update?: (scope: any) => any;
        updateAtEnd?: (scope: any) => any;
    }

    Hierarchy (View Summary)

    Index

    Properties

    entity?: BaseEntity
    matrix?: weMat4
    name?: string
    physicalBody?: PhysicBody
    position?: weVec3
    quaternion?: weVec4
    rotate?: weVec4
    scale?: weVec3
    spaceType?: E_BVHSpaceType

    空间类型 ,默认none

    update?: (scope: any) => any

    自定义更新functon()

    updateAtEnd?: (scope: any) => any

    在最后执行调用