使用vue学习three.js之加载高级几何体-加载GLTF格式模型

1.demo效果

在这里插入图片描述

如上图,该demo通过GLTFLoader加载了GLTF格式的模型,并呈现在页面中

2.实现要点

2.1 GLTF模型放置路径

vue中加载文件时默认的路径为public下,所以需要加载的文件放在该路径下,同时在vue的data属性中创建变量publicPath,此变量的值是vue中的环境变量process.env.BASE_URL

data() {
    
    
  return {
    
    
    publicPath: process.env.BASE_URL
  }
}

2.2 GLTF格式说明

GLTF格式是一种较新的三维模型格式,GLTF立志成为音频界的mp3、视频界的H.264,图片界的jpeg/png。有这样的志向是因为有底气。它的底气就是GLTF格式的模型中不仅包含场景、摄像机、动画信息,也有网格、材质、纹理,甚至还包含了着色器程序。也就是GLTF模型几乎保存了所有的三维场景信息。
我们通过控制台输出了解一下GLTF的结构:
在这里插入图片描述
接下来,对输出的属性依次简单介绍一下:

  1. animations:骨骼动画
  2. asset:模型信息,版本
  3. cameras:相机数据
  4. parser:gltf模型数据结构
  5. scene:场景对象
  6. scenes: 场景组
  7. userData:用户资料

2.3 加载GLTF模型

这我们通过GLTFLoader导入模型,不过这里需要注意导入的路径,把我们创建的publicpath变量拼接到文件的路径上,在导入的回调函数中,获取到模型中的场景中的成员,设置缩放比例,并添加到场景,具体如下:

// 加载GLTF模型
loadGLTF() {
    
    
  const THIS = this
  const loader = new GLTFLoader()
  loader.load(`${
      
      THIS.publicPath}models/gltf/scene.gltf`, model => {
    
    
    model.scene.children[0].scale.set(50, 50, 50)
    this.scene.add(model.scene.children[0])
  })
}

3.demo代码

<template>
  <div>
    <div id="container"></div>
  </div>
</template>

<script>
import * as THREE from 'three'
import {
    
     OrbitControls } from 'three/examples/jsm/controls/OrbitControls.js'
import {
    
     GLTFLoader } from 'three/examples/jsm/loaders/GLTFLoader.js'

export default {
    
    
  data() {
    
    
    return {
    
    
      publicPath: process.env.BASE_URL,
      mesh: null,
      camera: null,
      scene: null,
      renderer: null,
      controls: null
    }
  },
  mounted() {
    
    
    this.init()
  },
  methods: {
    
    
    // 初始化
    init() {
    
    
      this.createScene() // 创建场景
      this.loadGLTF() // 加载GLTF模型
      this.createLight() // 创建光源
      this.createCamera() // 创建相机
      this.createRender() // 创建渲染器
      this.createControls() // 创建控件对象
      this.render() // 渲染
    },
    // 创建场景
    createScene() {
    
    
      this.scene = new THREE.Scene()
    },
    // 加载GLTF模型
    loadGLTF() {
    
    
      const THIS = this
      const loader = new GLTFLoader()
      loader.load(`${
      
      THIS.publicPath}models/gltf/scene.gltf`, model => {
    
    
        model.scene.children[0].scale.set(50, 50, 50)
        this.scene.add(model.scene.children[0])
      })
    },

    // 创建光源
    createLight() {
    
    
      // 环境光
      const ambientLight = new THREE.AmbientLight(0xffffff, 0.1) // 创建环境光
      this.scene.add(ambientLight) // 将环境光添加到场景

      const spotLight = new THREE.SpotLight(0xffffff) // 创建聚光灯
      spotLight.position.set(150, 150, 150)
      spotLight.castShadow = true
      this.scene.add(spotLight)
    },
    // 创建相机
    createCamera() {
    
    
      const element = document.getElementById('container')
      const width = element.clientWidth // 窗口宽度
      const height = element.clientHeight // 窗口高度
      const k = width / height // 窗口宽高比
      // PerspectiveCamera( fov, aspect, near, far )
      this.camera = new THREE.PerspectiveCamera(35, k, 0.1, 1000)
      this.camera.position.set(150, 150, 150) // 设置相机位置

      this.camera.lookAt(new THREE.Vector3(10, 40, 0)) // 设置相机方向
      this.scene.add(this.camera)
    },
    // 创建渲染器
    createRender() {
    
    
      const element = document.getElementById('container')
      this.renderer = new THREE.WebGLRenderer({
    
     antialias: true, alpha: true })
      this.renderer.setSize(element.clientWidth, element.clientHeight) // 设置渲染区域尺寸
      this.renderer.shadowMap.enabled = true // 显示阴影
      this.renderer.shadowMap.type = THREE.PCFSoftShadowMap
      this.renderer.setClearColor(0x3f3f3f, 1) // 设置背景颜色
      element.appendChild(this.renderer.domElement)
    },

    render() {
    
    
      if (this.mesh) {
    
    
        this.mesh.rotation.z += 0.006
      }
      this.renderer.render(this.scene, this.camera)
      requestAnimationFrame(this.render)
    },
    // 创建控件对象
    createControls() {
    
    
      this.controls = new OrbitControls(this.camera, this.renderer.domElement)
    }
  }
}
</script>
<style>
#container {
    
    
  position: absolute;
  width: 100%;
  height: 100%;
}
</style>

猜你喜欢

转载自blog.csdn.net/qw8704149/article/details/113776651