0
点赞
收藏
分享

微信扫一扫

three.js blender导出模型开启平滑着色

求阙者 2023-02-14 阅读 112


three.js blender导出模型开启平滑着色_blender

blender导出文件时需要导出​​法向​

three.js blender导出模型开启平滑着色_导出文件_02

或者
three中手动设置

object.material.shading = THREE.SmoothShading;

另外 默认THREE的材质就是平滑着色。设置平直着色可以设置​​flatShading: true​

new THREE.MeshPhysicalMaterial({
flatShading: true,
});


举报

相关推荐

0 条评论