Files
heros/assets/script/game/common/config/BoxSet.ts
2024-07-29 11:05:17 +08:00

15 lines
260 B
TypeScript

/*
* @Author: dgflash
* @Date: 2021-11-23 15:28:39
* @LastEditors: dgflash
* @LastEditTime: 2022-01-26 16:42:00
*/
/** 碰撞分组 */
export enum BoxSet {
DEFAULT = 0,
MONSTER = 2,
HERO = 4,
MONSTER_SKILL = 8,
HERO_SKILL = 16,
}