CocosCreator_ECS/assets/Script/ECS/components/ComNodeConfig.ts
2022-03-21 17:27:37 +08:00

9 lines
262 B
TypeScript

import { ComType } from "../lib/Const";
import { ECSComponent } from "../lib/ECSComponent";
@ECSComponent(ComType.ComNodeConfig)
export class ComNodeConfig {
id = 0; // 唯一标识
prefabUrl = ''
layer = 0; // 层级
}