发布于2021-05-30 11:28 阅读(1656) 评论(0) 点赞(2) 收藏(5)
如上图,该demo通过轨道控件OrbitControls控制相机。实现按住鼠标左键旋转物体,按住鼠标右键平移物体,滚动滚轮缩放物体,还可以通过方向键移动物体位置
通过轨道控件OrbitControls 可以实现按住鼠标左键旋转物体,按住鼠标右键平移物体,滚动滚轮缩放物体,还可以通过方向键移动物体位置
OrbitControls操控说明
以下是操控和动作的比对说明
操控 | 动作 |
---|---|
按鼠标左键移动 | 在场景中旋转物体 |
按鼠标右键移动 | 在场景中移动物体 |
滚动滚轮或按住中键并移动 | 缩放物体 |
方向键 | 场景中移动物体 |
在项目工程中引入OrbitControls控制器如下
import { OrbitControls } from 'three/examples/jsm/controls/OrbitControls.js'
// 创建轨道控制器
createControls() {
this.clock = new THREE.Clock() // 创建THREE.Clock对象,用于计算上次调用经过的时间
this.controls = new OrbitControls(this.camera, this.renderer.domElement)
this.controls.autoRotate = true // 是否自动旋转
}
render() {
const delta = this.clock.getDelta() //获取自上次调用的时间差
this.controls.update(delta) // 相机更新
this.renderer.render(this.scene, this.camera)
requestAnimationFrame(this.render)
}
<template>
<div id="container" />
</template>
<script>
import * as THREE from 'three'
import { OrbitControls } from 'three/examples/jsm/controls/OrbitControls.js'
export default {
data() {
return {
earchMesh: null,
camera: null,
scene: null,
renderer: null,
controls: null
}
},
mounted() {
this.init()
},
methods: {
// 初始化
init() {
this.createScene() // 创建场景
this.createModels() // 创建模型
this.createLight() // 创建光源
this.createCamera() // 创建相机
this.createRender() // 创建渲染器
this.createControls() // 创建控件对象
this.render() // 渲染
},
// 创建场景
createScene() {
this.scene = new THREE.Scene()
},
// 创建模型
createModels1() {
const publicPath = process.env.BASE_URL
const planetTexture = THREE.ImageUtils.loadTexture(
`${publicPath}textures/planets/Earth.png`
)
const specularTexture = THREE.ImageUtils.loadTexture(
`${publicPath}textures/planets/EarthSpec.png`
)
const normalTexture = THREE.ImageUtils.loadTexture(
`${publicPath}textures/planets/EarthNormal.png`
)
const planetMaterial = new THREE.MeshPhongMaterial()
planetMaterial.specularMap = specularTexture
// planetMaterial.specular = new THREE.Color(0xff0000)
planetMaterial.shininess = 2
planetMaterial.normalMap = normalTexture
planetMaterial.map = planetTexture
// planetMaterial.shininess = 150
const sphereGeom = new THREE.SphereGeometry(20, 40, 40)
this.earchMesh = new THREE.Mesh(sphereGeom, planetMaterial)
this.scene.add(this.earchMesh)
},
createModels() {
const publicPath = process.env.BASE_URL
const planetTexture = THREE.ImageUtils.loadTexture(
`${publicPath}textures/planets/mars_1k_color.jpg`
)
const normalTexture = THREE.ImageUtils.loadTexture(
`${publicPath}textures/planets/mars_1k_normal.jpg`
)
const planetMaterial = new THREE.MeshPhongMaterial()
planetMaterial.map = planetTexture
planetMaterial.bumpMap = normalTexture
// planetMaterial.shininess = 50
const sphereGeom = new THREE.SphereGeometry(20, 40, 40)
this.earchMesh = new THREE.Mesh(sphereGeom, planetMaterial)
this.scene.add(this.earchMesh)
},
// 创建光源
createLight() {
// 环境光
const ambientLight = new THREE.AmbientLight(0x111111) // 创建环境光
this.scene.add(ambientLight) // 将环境光添加到场景
const directionLight = new THREE.DirectionalLight(0xffffff)
directionLight.position.set(-20, 30, 40)
directionLight.intensity = 1.5
this.scene.add(directionLight)
},
// 创建相机
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(45, k, 0.1, 1000)
this.camera.position.set(30, 30, 30) // 设置相机位置
this.camera.lookAt(new THREE.Vector3(0, 0, 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(0x000000, 1) // 设置背景颜色
element.appendChild(this.renderer.domElement)
},
render() {
const delta = this.clock.getDelta() // 获取自上次调用的时间差
this.controls.update(delta) // 相机更新
this.renderer.render(this.scene, this.camera)
requestAnimationFrame(this.render)
},
// 创建轨道控制器
createControls() {
this.clock = new THREE.Clock() // 创建THREE.Clock对象,用于计算上次调用经过的时间
this.controls = new OrbitControls(this.camera, this.renderer.domElement)
this.controls.autoRotate = true // 是否自动旋转
}
}
}
</script>
<style>
#container {
position: absolute;
width: 100%;
height: 100%;
}
</style>
作者:强哥你们辛苦了
链接:http://www.qianduanheidong.com/blog/article/115935/3c4f42ea5062d78cb563/
来源:前端黑洞网
任何形式的转载都请注明出处,如有侵权 一经发现 必将追究其法律责任
昵称:
评论内容:(最多支持255个字符)
---无人问津也好,技不如人也罢,你都要试着安静下来,去做自己该做的事,而不是让内心的烦躁、焦虑,坏掉你本来就不多的热情和定力
Copyright © 2018-2021 前端黑洞网 All Rights Reserved 版权所有,并保留所有权利。 京ICP备18063182号-3
投诉与举报,广告合作请联系vgs_info@163.com或QQ3083709327
免责声明:网站文章均由用户上传,仅供读者学习交流使用,禁止用做商业用途。若文章涉及色情,反动,侵权等违法信息,请向我们举报,一经核实我们会立即删除!