更新包

This commit is contained in:
ChenX
2025-04-01 14:56:29 +08:00
parent dccd6ec73e
commit b08fc5ee5e
164 changed files with 7504 additions and 4655 deletions

View File

@@ -45,11 +45,19 @@ export declare enum RenderType {
CustomNumberPrint = 109
}
/** 实体的渲染颜色种类 */
export declare const ColorMap: Map<string, number>;
export declare enum ColorInTransparent {
= 0,
= 1
}
type EnumKeys<T> = keyof {
[K in keyof T as K extends `${number}` ? never : K]: K;
};
export declare function enumToArray<T>(enumObj: T): EnumKeys<T>[];
/** 渲染的状态 */
export declare const RenderState: {
/** 概念透明下的实体颜色 */
ConceptualColor: number;
ConceptualColor: ColorInTransparent;
};
export declare function IsPhysical(renderType: RenderType): renderType is RenderType.Physical | RenderType.Physical2 | RenderType.PhysicalPrint | RenderType.Physical2Print;
export {};
//# sourceMappingURL=RenderType.d.ts.map