webcad-ue4-api/types/GraphicsSystem/RenderType.d.ts

44 lines
852 B
TypeScript
Raw Normal View History

2021-01-28 10:17:21 +08:00
/**
* .
*/
export declare enum RenderType {
/**
* 线
*/
Wireframe = 1,
/**
*
*/
Conceptual = 2,
/**
* PBR
*/
Physical = 3,
Jig = 4,
Print = 5,
/**物理带线框 */
Physical2 = 6,
Edge = 7,
2022-02-16 11:15:31 +08:00
PlaceFace = 8,
2023-03-15 16:40:54 +08:00
CustomNumber = 9,
2021-01-28 10:17:21 +08:00
/******************************************** 在视口时的渲染模式 */
/**
* 线
*/
WireframePrint = 101,
/**
*
*/
ConceptualPrint = 102,
/**
* PBR
*/
PhysicalPrint = 103,
JigPrint = 104,
PrintPrint = 105,
/**真实带线框 */
2023-03-15 16:40:54 +08:00
Physical2Print = 106,
CustomNumberPrint = 109
2021-01-28 10:17:21 +08:00
}
2022-06-08 09:43:31 +08:00
export declare function IsPhysical(renderType: RenderType): boolean;
2021-01-28 10:17:21 +08:00
//# sourceMappingURL=RenderType.d.ts.map