Interface IRectCollideModule

interface IRectCollideModule {
    addCollideRectObject: ((item) => void);
    removeCollideRectObject: ((item) => void);
    setCollideRectDirty: (() => void);
    updateCollideRect: (() => void);
}

Implemented by

Properties

addCollideRectObject: ((item) => void)

增加碰撞检测的对象

Type declaration

    • (item): void
    • 增加碰撞检测的对象

      Parameters

      Returns void

removeCollideRectObject: ((item) => void)

移除碰撞检测的对象

Type declaration

    • (item): void
    • 移除碰撞检测的对象

      Parameters

      Returns void

setCollideRectDirty: (() => void)

设置更新碰撞检测为脏数据,使其重新检测

Type declaration

    • (): void
    • 设置更新碰撞检测为脏数据,使其重新检测

      Returns void

updateCollideRect: (() => void)

更新碰撞检测

Type declaration

    • (): void
    • 更新碰撞检测

      Returns void