首页 > Web开发 > 详细

three.js 加载 obj模型

时间:2020-03-09 23:02:41      阅读:148      评论:0      收藏:0      [点我收藏+]

mtl文件  模型的材质信息,比如模型颜色、透明度等信息,还有纹理贴图的路径,比如颜色贴图、法线贴图、高光贴图等等。

obj 模型 2进制模型文件

 

技术分享图片

 https://threejs.org/

js 文件去官网下载就行了

其他代码普通的一样就省略了

官方文档: https://threejs.org/docs/index.html#examples/en/loaders/OBJLoader


import * as THREE from ‘./js/three.module.js‘;

import Stats from ‘./js/stats.module.js‘;
import { OBJLoader } from ‘./js/OBJLoader.js‘;

function
loadObj(){ var loader = new OBJLoader(); loader.load( ‘./3d/banana.obj‘, function ( obj ) { let object = obj; object.scale.set(3,3,3); object.children[0].material.color.set(0xe8b73b); object.rotation.x = 1; object.rotation.y = 0.3; scene.add(object); }); var light = new THREE.DirectionalLight(0xffffff);//光源颜色 light.position.set(20, 10, 1305);//光源位置 scene.add(light);//光源添加到场景中 }

 

three.js 加载 obj模型

原文:https://www.cnblogs.com/chenyi4/p/12452047.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!