1 Star 0 Fork 9

书生/3D教程

forked from liujiboy/3D教程 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
04.Loader.html 1.49 KB
一键复制 编辑 原始数据 按行查看 历史
liujiboy 提交于 2021-06-27 20:58 . 完成01-04
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>04.Loader</title>
<style>
body {
margin: 0;
}
</style>
</head>
<body>
<script type="module">
import * as THREE from '/build/three.module.js';
import { GLTFLoader } from '/jsm/loaders/GLTFLoader.js';
//生成场景
const scene = new THREE.Scene();
//设置相机
const camera = new THREE.PerspectiveCamera(75, window.innerWidth / window.innerHeight, 0.1, 1000);
camera.position.z = 5;
//设置渲染器
const renderer = new THREE.WebGLRenderer();
renderer.setSize(window.innerWidth, window.innerHeight);
renderer.setClearColor(0xFFFFFF);
document.body.appendChild(renderer.domElement);
//生成模型
const loader = new GLTFLoader();
loader.load(
'/model/monkey.gltf',
function (gltf) {
scene.add(gltf.scene);
const light = new THREE.AmbientLight(0xFFFFFF); // soft white light
scene.add(light);
//渲染场景
renderer.render(scene, camera);
},
//加载过程中调用
function (xhr) {
console.log((xhr.loaded / xhr.total * 100) + '% loaded');
},
//加载出错时调用
function (error) {
console.log('An error happened');
}
);
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhangshusheng/threed-tutorial.git
git@gitee.com:zhangshusheng/threed-tutorial.git
zhangshusheng
threed-tutorial
3D教程
master

搜索帮助