Poly Haveny
用于3d模型跟贴图下载资源
Sketchfab
里面有免费的模型
模型放到public里面
const loader = new GLTFLoader()// 加载GLTF模型loader.load('/scene.gltf',(gltf) => {// 将加载的模型添加到场景中scene.add(gltf.scene)// 现在你可以开始渲染循环了let angle = 0function animate() {requestAnimationFrame(animate)angle += 0.002gltf.scene.rotation.y = anglerenderer.render(scene, camera)}animate()},// 可选:加载进度回调(xhr) => {console.log((xhr.loaded / xhr.total) * 100 + '% loaded')},// 可选:加载错误回调(error) => {console.log('An error happened', error)})
就加载进来了
之后加载背景图。
点击右边的jpg,右键将图像另存为,放到public里面。
场景就添加进来了。