import React from "react"; import { BaseProps } from "../../../types/baseProps"; import { MaterialProps } from "../common"; export declare const NAME = "meshPhongMaterial"; export interface MeshPhongMaterialProps extends MaterialProps, BaseProps { flatShading?: boolean; specular?: number; alphaTest?: number; } /** * 一种用于具有镜面高光的光泽表面的材质。 * 该材质使用非物理的Blinn-Phong模型来计算反射率。 与MeshLambertMaterial中使用的Lambertian模型不同,该材质可以模拟具有镜面高光的光泽表面(例如涂漆木材) */ export declare const MeshPhongMaterial: React.ComponentType;