CocosCreator_ECS/assets/Script/ECS/components/ComNodeConfig.ts

9 lines
262 B
TypeScript
Raw Normal View History

2022-03-21 09:27:37 +00:00
import { ComType } from "../lib/Const";
import { ECSComponent } from "../lib/ECSComponent";
@ECSComponent(ComType.ComNodeConfig)
export class ComNodeConfig {
id = 0; // 唯一标识
prefabUrl = ''
layer = 0; // 层级
}