更新版本

This commit is contained in:
ChenX
2024-12-09 10:12:56 +08:00
parent bfa2feca5b
commit 09a2b325fa
1076 changed files with 32219 additions and 15692 deletions

View File

@@ -10,6 +10,8 @@ export declare enum RenderType {
* 概念
*/
Conceptual = 2,
/** 概念(透明)*/
ConceptualTransparent = 82,// ConceptualTransparent原本的值是182估计是写错了不应该大于100的
/**
* 物理着色PBR
*/
@@ -40,8 +42,17 @@ export declare enum RenderType {
PrintPrint = 105,
/**真实带线框 */
Physical2Print = 106,
CustomNumberPrint = 109,
ConceptualTransparent = 182
CustomNumberPrint = 109
}
export declare function IsPhysical(renderType: RenderType): boolean;
/** 实体的渲染颜色种类 */
export declare enum ColorInTransparent {
= 0,
= 1
}
/** 渲染的状态 */
export declare const RenderState: {
/** 概念透明下的实体颜色 */
ConceptualColor: ColorInTransparent;
};
export declare function IsPhysical(renderType: RenderType): renderType is RenderType.Physical | RenderType.Physical2 | RenderType.PhysicalPrint | RenderType.Physical2Print;
//# sourceMappingURL=RenderType.d.ts.map