当前位置:   article > 正文

Three.js--》探寻Cannon.js构建震撼的3D物理交互体验(一)

Three.js--》探寻Cannon.js构建震撼的3D物理交互体验(一)

我们用three.js可以绘制出各种酷炫的画面,但是当我们想要一个更加真实的物理效果的话,这个时候我们就需要一个物理的库,接下来我们就讲解一下今天要学习的canon,它可以给我们提供一个更加真实的物理效果,像物体的张力、摩擦力、拉伸、反弹等等各种真实的物理效果。该库都能够有一个非常好的模拟。

PS:目前博主在一家互联网公司工作,该公司的编码风格是vue+tsx,所以接下来的项目以该编码风格进行举例,详细了解参考我之前的文章:地址 。

目录

canon基本使用

基础碰撞使用

材质与摩擦系数设置

弹性与接触材质设置

碰撞与碰撞组


canon基本使用

Cannon 是一种轻量级的 JavaScript 3D 物理引擎,用于实现虚拟世界中的物理模拟和交互。它提供了一套强大的功能,能够处理刚体碰撞、力学模拟、约束系统等物理效果,使开发者能够在 Web 应用程序和游戏中实现逼真的物理行为。

Cannon的官网:地址 ,提供了一系列关于物理运动在three世界的实现,实现案例 的效果非常直观,展示了物理运动的魅力,如下:

接下来我们在three.js的vue项目中使用Cannon,终端执行如下命令安装,具体参考:官网

npm i cannon-es

接下来我们通过tsx风格语法撰写three基础项目实现:

  1. import { defineComponent } from "vue";
  2. import * as THREE from 'three'
  3. import { OrbitControls } from 'three/examples/jsm/controls/OrbitControls.js'
  4. import * as CANNON from 'cannon-es'
  5. import './index.scss'
  6. import { div } from "three/examples/jsm/nodes/Nodes.js";
  7. export default defineComponent({
  8. setup() {
  9. // 初始化物理世界
  10. const world = new CANNON.World()
  11. // 初始化物理世界的重力
  12. world.gravity.set(0, -9.82, 0)
  13. // 初始化3D世界
  14. const scene = new THREE.Scene()
  15. // 初始化相机
  16. const camera = new THREE.PerspectiveCamera(75, window.innerWidth / window.innerHeight, 0.1, 1000)
  17. camera.position.z = 3
  18. // 初始化渲染器
  19. const renderer = new THREE.WebGLRenderer({ antialias: true })
  20. renderer.setSize(window.innerWidth, window.innerHeight)
  21. document.body.appendChild(renderer.domElement)
  22. // 初始化控制器
  23. const controls = new OrbitControls(camera, renderer.domElement)
  24. controls.enableDamping = true
  25. // 渲染
  26. let clock = new THREE.Clock()
  27. const animate = () => {
  28. let delta = clock.getDelta()
  29. controls.update()
  30. renderer.render(scene, camera)
  31. requestAnimationFrame(animate)
  32. }
  33. animate()
  34. return () => {
  35. <div></div>
  36. }
  37. }
  38. })

接下来我们需要给场景添加一些物体,如下:

  1. // 创建一个物理球体,半径为0.5
  2. const sphereShape = new CANNON.Sphere(0.5)
  3. // 创建一个刚体
  4. const sphereBody = new CANNON.Body({
  5. mass: 1,
  6. shape: sphereShape,
  7. position: new CANNON.Vec3(0, 5, 0)
  8. })
  9. // 将刚体添加到物理世界中
  10. world.addBody(sphereBody)
  11. // 物理世界创建的东西不显示,所以我们要再通过three.js再创建一个球
  12. const sphereGeometry = new THREE.SphereGeometry(0.5, 32, 32) // 创建一个几何体
  13. const sphereMaterial = new THREE.MeshBasicMaterial({ color: 0x00ff00 }) // 创建一个球体材质
  14. const shpereMesh = new THREE.Mesh(sphereGeometry, sphereMaterial) // 创建一个球体网格
  15. // 将网格添加到3D场景中
  16. scene.add(shpereMesh)

打开控制台,可以看到我们的球体已经显示出来了:

接下来我们要把物理世界的球体给到我们three渲染出来的球体,让两者开始关联起来。在每一帧中,根据物理引擎模拟的结果来更新 Three.js 场景中球体网格的位置和旋转状态,从而实现了基于物理引擎的球体模拟效果,如下:

得到的结果如下:

基础碰撞使用

上面我们实现了一个物体的自由下落,接下来我们实现物体与平面的碰撞效果。如下添加平面:

  1. // 创建一个物理世界的平面
  2. const planeShape = new CANNON.Plane()
  3. // 创建一个刚体
  4. const planeBody = new CANNON.Body({
  5. mass: 0, // 设置质量为0,不受碰撞的影响
  6. shape: planeShape,
  7. position: new CANNON.Vec3(0, 0, 0)
  8. })
  9. // 设置刚体旋转(设置旋转X轴)
  10. planeBody.quaternion.setFromAxisAngle(new CANNON.Vec3(1, 0, 0), -Math.PI / 2)
  11. // 将刚体添加到物理世界当中
  12. world.addBody(planeBody)
  13. // 物理世界创建的东西不显示,所以我们要再通过three.js再创建一个平面
  14. const planeGeometry = new THREE.PlaneGeometry(10, 10) // 因为渲染的东西不是无限衍生,这里给10x10
  15. // 创建一个平面材质
  16. const planeMaterial = new THREE.MeshBasicMaterial({ color: 0xffff00 })
  17. // 创建一个平面网格
  18. const planeMesh = new THREE.Mesh(planeGeometry, planeMaterial)
  19. // 旋转平面90度让其平铺
  20. planeMesh.rotation.x = -Math.PI / 2
  21. // 将网格添加到3D场景当中
  22. scene.add(planeMesh)

当然除了我们设置平面质量为0之外,我们也可以设置平面为静态效果,也不受碰撞影响:

最终得到的效果如下:

那我们让物理世界和渲染世界的平面倾斜度加上0.1,小球是否会滑落而掉下去呢?测试一下:

得到的效果如下,可见小球是不会掉落下去的,因为物理世界的平面是无限衍生的,即使渲染世界的平面有限,小球仍然会走物理世界的规律,如下:

如果我们想在物理世界有一个有限大的平面的话, 我们可以通过构建一个立方体,然后把立方体压扁形成一个平面来使用,因为立方体已经有高度了,所以我们也不需要在旋转90度了,稍微给点倾斜度0.1即可,代码如下:

得到的效果如下,可见到我们的小球已经实现了掉落的效果:

上面两标题的案例代码如下:

  1. import { defineComponent } from "vue";
  2. import * as THREE from 'three'
  3. import { OrbitControls } from 'three/examples/jsm/controls/OrbitControls.js'
  4. import * as CANNON from 'cannon-es'
  5. import './index.scss'
  6. export default defineComponent({
  7. setup() {
  8. // 初始化物理世界
  9. const world = new CANNON.World()
  10. // 初始化物理世界的重力
  11. world.gravity.set(0, -9.82, 0)
  12. // 初始化3D世界
  13. const scene = new THREE.Scene()
  14. // 初始化相机
  15. const camera = new THREE.PerspectiveCamera(75, window.innerWidth / window.innerHeight, 0.1, 1000)
  16. camera.position.z = 3
  17. // 初始化渲染器
  18. const renderer = new THREE.WebGLRenderer({ antialias: true })
  19. renderer.setSize(window.innerWidth, window.innerHeight)
  20. document.body.appendChild(renderer.domElement)
  21. // 初始化控制器
  22. const controls = new OrbitControls(camera, renderer.domElement)
  23. controls.enableDamping = true
  24. // 创建一个物理球体,半径为0.5
  25. const sphereShape = new CANNON.Sphere(0.5)
  26. // 创建一个刚体
  27. const sphereBody = new CANNON.Body({
  28. mass: 1,
  29. shape: sphereShape,
  30. position: new CANNON.Vec3(0, 5, 0)
  31. })
  32. // 将刚体添加到物理世界中
  33. world.addBody(sphereBody)
  34. // 物理世界创建的东西不显示,所以我们要再通过three.js再创建一个球
  35. const sphereGeometry = new THREE.SphereGeometry(0.5, 32, 32) // 创建一个几何体
  36. const sphereMaterial = new THREE.MeshBasicMaterial({ color: 0x00ff00 }) // 创建一个球体材质
  37. const shpereMesh = new THREE.Mesh(sphereGeometry, sphereMaterial) // 创建一个球体网格
  38. // 将网格添加到3D场景中
  39. scene.add(shpereMesh)
  40. // 创建一个物理世界的平面
  41. // const planeShape = new CANNON.Plane()
  42. const planeShape = new CANNON.Box(new CANNON.Vec3(5, 0.1, 5))
  43. // 创建一个刚体
  44. const planeBody = new CANNON.Body({
  45. // mass: 0, // 设置质量为0,不受碰撞的影响
  46. shape: planeShape,
  47. position: new CANNON.Vec3(0, 0, 0),
  48. type: CANNON.Body.STATIC // 设置物体为静态,不受碰撞的影响
  49. })
  50. // 设置刚体旋转(设置旋转X轴)
  51. planeBody.quaternion.setFromAxisAngle(new CANNON.Vec3(1, 0, 0), 0.1)
  52. // 将刚体添加到物理世界当中
  53. world.addBody(planeBody)
  54. // 物理世界创建的东西不显示,所以我们要再通过three.js再创建一个平面
  55. // const planeGeometry = new THREE.PlaneGeometry(10, 10) // 因为渲染的东西不是无限衍生,这里给10x10
  56. const planeGeometry = new THREE.BoxGeometry(10, 0.2, 10)
  57. // 创建一个平面材质
  58. const planeMaterial = new THREE.MeshBasicMaterial({ color: 0xffff00 })
  59. // 创建一个平面网格
  60. const planeMesh = new THREE.Mesh(planeGeometry, planeMaterial)
  61. // 旋转平面90度让其平铺
  62. planeMesh.rotation.x = 0.1
  63. // 将网格添加到3D场景当中
  64. scene.add(planeMesh)
  65. // 渲染
  66. let clock = new THREE.Clock()
  67. const animate = () => {
  68. // 获取了两次渲染之间的时间差,通常用于控制动画和物理模拟。
  69. let delta = clock.getDelta()
  70. // 使用时间差来推进物理世界的模拟
  71. world.step(delta)
  72. // 更新球体网格的位置和旋转
  73. // 将物理引擎中球体的位置赋值给 Three.js 中球体网格(shpereMesh)的位置,从而将物理模拟的结果更新到可视化场景中。
  74. shpereMesh.position.copy(sphereBody.position)
  75. // 将物理引擎中球体的旋转状态赋值给 Three.js 中球体网格(shpereMesh)的旋转状态,确保网格的旋转与物理模拟一致。
  76. shpereMesh.quaternion.copy(sphereBody.quaternion)
  77. controls.update()
  78. renderer.render(scene, camera)
  79. requestAnimationFrame(animate)
  80. }
  81. animate()
  82. return () => {
  83. <div></div>
  84. }
  85. }
  86. })

材质与摩擦系数设置

cannon的材质可以模拟我们现实生活当中的物理的效果,比如说我们可以设置它的摩擦系数,弹性系数来实现我们这个物体的滑动的有摩擦的效果。借助上面的案例,我们将球体换成立方体,因为要创建多个立方体,这里我们设置一个变量用于存储

  1. // 创建网格数组
  2. let phyMeshes: any[] = [] // 物理世界
  3. let meshes: any[] = [] // 渲染世界
  4. // 创建物理立方体
  5. const boxShape = new CANNON.Box(new CANNON.Vec3(0.5, 0.5, 0.5))
  6. // 设置立方体的材质
  7. const boxMaterialCon = new CANNON.Material("boxMaterial")
  8. // 创建一个刚体
  9. const boxBody = new CANNON.Body({
  10. shape: boxShape,
  11. position: new CANNON.Vec3(0, 15, 0),
  12. mass: 1,
  13. material: boxMaterialCon
  14. })
  15. // 将刚体添加到物理世界当中
  16. world.addBody(boxBody)
  17. phyMeshes.push(boxBody)
  18. // 创建立方体几何体
  19. const boxGeometry = new THREE.BoxGeometry(1, 1, 1)
  20. // 创建立方体材质
  21. const boxMaterial = new THREE.MeshBasicMaterial({ color: 0x00ff00 })
  22. // 创建立方体网格
  23. const boxMesh = new THREE.Mesh(boxGeometry, boxMaterial)
  24. // 将网格添加到3D场景当中
  25. scene.add(boxMesh)
  26. meshes.push(boxMesh)

在渲染函数处,我们变量数组来推进物理世界模拟:

最终得到是效果如下:

接下来我们添加第二个物体,将第二个物体的摩擦系数设置为0,第一个物体和平面的摩擦系数设置为0.7,代码如下:

  1. // 创建网格数组
  2. let phyMeshes: any[] = [] // 物理世界
  3. let meshes: any[] = [] // 渲染世界
  4. // 创建物理立方体
  5. const boxShape = new CANNON.Box(new CANNON.Vec3(0.5, 0.5, 0.5))
  6. // 设置立方体的材质
  7. const boxMaterialCon = new CANNON.Material("boxMaterial")
  8. boxMaterialCon.friction = 0.7
  9. // 创建一个刚体
  10. const boxBody = new CANNON.Body({
  11. shape: boxShape,
  12. position: new CANNON.Vec3(0, 15, 0),
  13. mass: 1,
  14. material: boxMaterialCon
  15. })
  16. // 将刚体添加到物理世界当中
  17. world.addBody(boxBody)
  18. phyMeshes.push(boxBody)
  19. // 创建立方体几何体
  20. const boxGeometry = new THREE.BoxGeometry(1, 1, 1)
  21. // 创建立方体材质
  22. const boxMaterial = new THREE.MeshBasicMaterial({ color: 0x00ff00 })
  23. // 创建立方体网格
  24. const boxMesh = new THREE.Mesh(boxGeometry, boxMaterial)
  25. // 将网格添加到3D场景当中
  26. scene.add(boxMesh)
  27. meshes.push(boxMesh)
  28. // 创建第二个物理立方体(使用第一个物理立方体的内容,材质不同)
  29. const boxSlipperyMaterial = new CANNON.Material("boxSlipperyMaterial")
  30. boxSlipperyMaterial.friction = 0 // 摩擦系数为0
  31. // 创建刚体
  32. const boxBody2 = new CANNON.Body({
  33. shape: boxShape,
  34. position: new CANNON.Vec3(1, 5, 0), // 区别于第一个物体,位置改变一下
  35. mass: 1,
  36. material: boxSlipperyMaterial
  37. })
  38. // 将刚体添加到物理世界当中
  39. world.addBody(boxBody2)
  40. phyMeshes.push(boxBody2)
  41. // 创建立方体几何体(使用第一个物体的内容)
  42. const boxMesh2 = new THREE.Mesh(boxGeometry, boxMaterial)
  43. // 将网格添加到3D场景当中
  44. scene.add(boxMesh2)
  45. meshes.push(boxMesh2)
  46. // 创建一个物理世界的平面
  47. // const planeShape = new CANNON.Plane()
  48. const planeShape = new CANNON.Box(new CANNON.Vec3(5, 0.1, 5))
  49. // 创建一个刚体
  50. const planeBody = new CANNON.Body({
  51. // mass: 0, // 设置质量为0,不受碰撞的影响
  52. shape: planeShape,
  53. position: new CANNON.Vec3(0, 0, 0),
  54. type: CANNON.Body.STATIC, // 设置物体为静态,不受碰撞的影响
  55. material: boxMaterialCon
  56. })
  57. // 设置刚体旋转(设置旋转X轴)
  58. planeBody.quaternion.setFromAxisAngle(new CANNON.Vec3(1, 0, 0), 0.1)
  59. // 将刚体添加到物理世界当中
  60. world.addBody(planeBody)
  61. // 物理世界创建的东西不显示,所以我们要再通过three.js再创建一个平面
  62. // const planeGeometry = new THREE.PlaneGeometry(10, 10) // 因为渲染的东西不是无限衍生,这里给10x10
  63. const planeGeometry = new THREE.BoxGeometry(10, 0.2, 10)
  64. // 创建一个平面材质
  65. const planeMaterial = new THREE.MeshBasicMaterial({ color: 0xffff00 })
  66. // 创建一个平面网格
  67. const planeMesh = new THREE.Mesh(planeGeometry, planeMaterial)
  68. // 旋转平面90度让其平铺
  69. planeMesh.rotation.x = 0.1
  70. // 将网格添加到3D场景当中
  71. scene.add(planeMesh)

最终得到的效果如下,可以看到我们设置的第二个物体因为很光滑,所以很容易就滑落下去:

弹性与接触材质设置

上文我们介绍了摩擦效果的操作,接下来我们继续开始讲解物体的弹性操作,我们根据上文的代码,再创建第三个立方体,然后给该立方体添加弹性系数

  1. // 创建第三个物理立方体(使用第一个物理立方体的内容,材质不同)
  2. const boxBouncyMaterial = new CANNON.Material("boxBouncyMaterial")
  3. boxBouncyMaterial.friction = 0.1
  4. boxBouncyMaterial.restitution = 1 // 设置弹性系数为1
  5. // 创建刚体
  6. const boxBody3 = new CANNON.Body({
  7. shape: boxShape,
  8. mass: 1,
  9. position: new CANNON.Vec3(2, 5, 3),
  10. material: boxBouncyMaterial
  11. })
  12. // 将刚体添加到物理世界当中
  13. world.addBody(boxBody3)
  14. phyMeshes.push(boxBody3)
  15. // 创建几何体(使用第一个立方体的内容以及材质)
  16. const boxMesh3 = new THREE.Mesh(boxGeometry, boxMaterial) // 添加网格
  17. // 将网格添加到3D场景当中
  18. scene.add(boxMesh3)
  19. meshes.push(boxMesh3)

给立方体设置弹性系数之后,如果我们想让弹性效果奏效的话,我们也需要给平面网格设置相同的弹性系数,因为平面网格使用的材质是第一个立方体的材质,所以我们只要给第一个立方体设置弹性系数即可,如下:

最终得到的效果如下,可以看到设置高度高的物体,从高处下落反弹的效果是很直观的:

当然我们也没有必要单独设置一下立方体和平面的弹性和摩擦系数,我们也可以通过接触材质的系数设置两个材质之间的一个弹性和摩擦系数,来实现相应的效果,如下:

  1. // 创建第三个物理立方体(使用第一个物理立方体的内容,材质不同)
  2. const boxBouncyMaterial = new CANNON.Material("boxBouncyMaterial")
  3. // boxBouncyMaterial.friction = 0.1
  4. // boxBouncyMaterial.restitution = 1 // 设置弹性系数为1
  5. // 创建刚体
  6. const boxBody3 = new CANNON.Body({
  7. shape: boxShape,
  8. mass: 1,
  9. position: new CANNON.Vec3(2, 5, 3),
  10. material: boxBouncyMaterial
  11. })
  12. // 将刚体添加到物理世界当中
  13. world.addBody(boxBody3)
  14. phyMeshes.push(boxBody3)
  15. // 创建几何体(使用第一个立方体的内容以及材质)
  16. const boxMesh3 = new THREE.Mesh(boxGeometry, boxMaterial) // 添加网格
  17. // 将网格添加到3D场景当中
  18. scene.add(boxMesh3)
  19. meshes.push(boxMesh3)
  20. // 定义接触材质
  21. const material3toplane = new CANNON.ContactMaterial(
  22. boxMaterialCon,
  23. boxBouncyMaterial,
  24. {
  25. friction: 0,
  26. restitution: 1
  27. }
  28. )
  29. // 将接触材质添加到物理世界当中
  30. world.addContactMaterial(material3toplane)

最终呈现的效果依然很明显:

碰撞与碰撞组

Cannon中的碰撞指的是游戏开发中物体之间的相互作用,通常包括物体之间的碰撞检测和碰撞响应两个部分。碰撞检测用于判断物体是否发生了碰撞,而碰撞响应则是在发生碰撞时对物体进行相应的处理,比如改变物体的速度、方向等。如下我们设置代码来实现:

依次创建立方体、球体、圆柱体到场景当中,举例代码如下:

接下来我们给创建到场景的立方体添加一个初速度使其运动来碰撞另外两个物体,如下:

这里给出完整的代码来给大家进行学习:

  1. import { defineComponent } from "vue";
  2. import * as THREE from 'three'
  3. import { OrbitControls } from 'three/examples/jsm/controls/OrbitControls.js'
  4. import * as CANNON from 'cannon-es'
  5. import './index.scss'
  6. export default defineComponent({
  7. setup() {
  8. // 初始化物理世界
  9. const world = new CANNON.World()
  10. // 初始化物理世界的重力
  11. world.gravity.set(0, -9.82, 0)
  12. // 初始化3D世界
  13. const scene = new THREE.Scene()
  14. // 初始化相机
  15. const camera = new THREE.PerspectiveCamera(75, window.innerWidth / window.innerHeight, 0.1, 1000)
  16. camera.position.z = 8
  17. camera.position.y = 5
  18. camera.position.x = 2
  19. // 初始化渲染器
  20. const renderer = new THREE.WebGLRenderer({ antialias: true })
  21. renderer.setSize(window.innerWidth, window.innerHeight)
  22. document.body.appendChild(renderer.domElement)
  23. // 初始化控制器
  24. const controls = new OrbitControls(camera, renderer.domElement)
  25. controls.enableDamping = true
  26. // 创建网格数组
  27. let phyMeshes: any[] = [] // 物理世界
  28. let meshes: any[] = [] // 渲染世界
  29. // 创建物理立方体
  30. const boxShape = new CANNON.Box(new CANNON.Vec3(0.5, 0.5, 0.5))
  31. // 设置立方体的材质
  32. const boxMaterialCon = new CANNON.Material("boxMaterial")
  33. boxMaterialCon.friction = 0
  34. // 创建一个刚体
  35. const boxBody = new CANNON.Body({
  36. shape: boxShape,
  37. position: new CANNON.Vec3(2, 0.8, 0),
  38. mass: 1,
  39. material: boxMaterialCon
  40. })
  41. // 将刚体添加到物理世界当中
  42. world.addBody(boxBody)
  43. phyMeshes.push(boxBody)
  44. // 创建立方体几何体
  45. const boxGeometry = new THREE.BoxGeometry(1, 1, 1)
  46. // 创建立方体材质
  47. const boxMaterial = new THREE.MeshBasicMaterial({ color: 0x00ff00 })
  48. // 创建立方体网格
  49. const boxMesh = new THREE.Mesh(boxGeometry, boxMaterial)
  50. // 将网格添加到3D场景当中
  51. scene.add(boxMesh)
  52. meshes.push(boxMesh)
  53. // 创建物理球
  54. const spereShape = new CANNON.Sphere(0.5)
  55. // 创建一个刚体
  56. const sphereBody = new CANNON.Body({
  57. shape: spereShape,
  58. position: new CANNON.Vec3(0, 0.8, 0),
  59. mass: 1,
  60. material: boxMaterialCon
  61. })
  62. // 将刚体添加到物理世界当中
  63. world.addBody(sphereBody)
  64. phyMeshes.push(sphereBody)
  65. // 创建球的几何体
  66. const sphereGeometry = new THREE.SphereGeometry(0.5, 32, 32)
  67. // 创建球的材质
  68. const sphereMaterial = new THREE.MeshBasicMaterial({ color: 0x0000ff })
  69. // 创建球网格
  70. const sphereMesh = new THREE.Mesh(sphereGeometry, sphereMaterial)
  71. // 将网格添加到3D场景当中
  72. scene.add(sphereMesh)
  73. meshes.push(sphereMesh)
  74. // 创建物理圆柱体
  75. const cylinderShape = new CANNON.Cylinder(0.5, 0.5, 1, 32)
  76. // 创建一个刚体
  77. const cylinderBody = new CANNON.Body({
  78. shape: cylinderShape,
  79. position: new CANNON.Vec3(-2, 0.8, 0),
  80. mass: 1,
  81. material: boxMaterialCon
  82. })
  83. // 将刚体添加到物理世界当中
  84. world.addBody(cylinderBody)
  85. phyMeshes.push(cylinderBody)
  86. // 创建圆柱体几何体
  87. const cylinderGeometry = new THREE.CylinderGeometry(0.5 ,0.5, 1, 32)
  88. // 创建圆柱体材质
  89. const cylinderMaterial = new THREE.MeshBasicMaterial({ color: 0xff0000 })
  90. // 创建圆柱体网格
  91. const cylinderMesh = new THREE.Mesh(cylinderGeometry, cylinderMaterial)
  92. // 将网格添加到3D场景当中
  93. scene.add(cylinderMesh)
  94. meshes.push(cylinderMesh)
  95. // 创建一个物理世界的平面
  96. // const planeShape = new CANNON.Plane()
  97. const planeShape = new CANNON.Box(new CANNON.Vec3(5, 0.1, 5))
  98. // 创建一个刚体
  99. const planeBody = new CANNON.Body({
  100. // mass: 0, // 设置质量为0,不受碰撞的影响
  101. shape: planeShape,
  102. position: new CANNON.Vec3(0, 0, 0),
  103. type: CANNON.Body.STATIC, // 设置物体为静态,不受碰撞的影响
  104. material: boxMaterialCon
  105. })
  106. // 设置刚体旋转(设置旋转X轴)
  107. // planeBody.quaternion.setFromAxisAngle(new CANNON.Vec3(1, 0, 0), 0.1)
  108. // 将刚体添加到物理世界当中
  109. world.addBody(planeBody)
  110. // 物理世界创建的东西不显示,所以我们要再通过three.js再创建一个平面
  111. // const planeGeometry = new THREE.PlaneGeometry(10, 10) // 因为渲染的东西不是无限衍生,这里给10x10
  112. const planeGeometry = new THREE.BoxGeometry(10, 0.2, 10)
  113. // 创建一个平面材质
  114. const planeMaterial = new THREE.MeshBasicMaterial({ color: 0xffff00 })
  115. // 创建一个平面网格
  116. const planeMesh = new THREE.Mesh(planeGeometry, planeMaterial)
  117. // 旋转平面90度让其平铺
  118. // planeMesh.rotation.x = 0.1
  119. // 将网格添加到3D场景当中
  120. scene.add(planeMesh)
  121. // 设置立方体的初始速度
  122. boxBody.velocity.set(-2, 0, 0)
  123. // 渲染
  124. let clock = new THREE.Clock()
  125. const animate = () => {
  126. // 获取了两次渲染之间的时间差,通常用于控制动画和物理模拟。
  127. let delta = clock.getDelta()
  128. world.step(delta)
  129. // 使用时间差来推进物理世界的模拟
  130. for(let i = 0; i < phyMeshes.length; i++) {
  131. meshes[i].position.copy(phyMeshes[i].position)
  132. meshes[i].quaternion.copy(phyMeshes[i].quaternion)
  133. }
  134. controls.update()
  135. renderer.render(scene, camera)
  136. requestAnimationFrame(animate)
  137. }
  138. animate()
  139. return () => {
  140. <div></div>
  141. }
  142. }
  143. })

接下来实现碰撞组,碰撞组是为了更高效地管理和处理碰撞而引入的概念。通过将具有相似碰撞特性的物体分组,可以在碰撞检测和碰撞响应时只考虑同一组内的物体之间的碰撞,从而减少不必要的计算量,提高游戏的性能和效率。代码如下:

我们设置立方体为组1,然后碰撞掩码就是能够和谁发生碰撞,我们设置立方体可以和所有物体碰撞:

在球体的分组当中,我们设置碰撞掩码如下,可以看到我们的球不能碰撞圆柱体:

最终呈现的效果如下:

给出案例的完整代码供大家学习:

  1. import { defineComponent } from "vue";
  2. import * as THREE from 'three'
  3. import { OrbitControls } from 'three/examples/jsm/controls/OrbitControls.js'
  4. import * as CANNON from 'cannon-es'
  5. import './index.scss'
  6. export default defineComponent({
  7. setup() {
  8. // 初始化物理世界
  9. const world = new CANNON.World()
  10. // 初始化物理世界的重力
  11. world.gravity.set(0, -9.82, 0)
  12. // 初始化3D世界
  13. const scene = new THREE.Scene()
  14. // 初始化相机
  15. const camera = new THREE.PerspectiveCamera(75, window.innerWidth / window.innerHeight, 0.1, 1000)
  16. camera.position.z = 8
  17. camera.position.y = 5
  18. camera.position.x = 2
  19. // 初始化渲染器
  20. const renderer = new THREE.WebGLRenderer({ antialias: true })
  21. renderer.setSize(window.innerWidth, window.innerHeight)
  22. document.body.appendChild(renderer.domElement)
  23. // 初始化控制器
  24. const controls = new OrbitControls(camera, renderer.domElement)
  25. controls.enableDamping = true
  26. // 创建网格数组
  27. let phyMeshes: any[] = [] // 物理世界
  28. let meshes: any[] = [] // 渲染世界
  29. // 设置碰撞组,数值要用2的幂
  30. const GROUP1 = 1 // 分组立方体
  31. const GROUP2 = 2 // 分组球体
  32. const GROUP3 = 4 // 分组圆柱体
  33. const GROUP4 = 8 // 分组平面
  34. // 创建物理立方体
  35. const boxShape = new CANNON.Box(new CANNON.Vec3(0.5, 0.5, 0.5))
  36. // 设置立方体的材质
  37. const boxMaterialCon = new CANNON.Material("boxMaterial")
  38. boxMaterialCon.friction = 0
  39. // 创建一个刚体
  40. const boxBody = new CANNON.Body({
  41. shape: boxShape,
  42. position: new CANNON.Vec3(2, 0.8, 0),
  43. mass: 1,
  44. material: boxMaterialCon,
  45. collisionFilterGroup: GROUP1, // 设置碰撞组
  46. collisionFilterMask: GROUP2 | GROUP3 | GROUP4, // 碰撞掩码,可以和二组和三、四组碰撞
  47. })
  48. // 将刚体添加到物理世界当中
  49. world.addBody(boxBody)
  50. phyMeshes.push(boxBody)
  51. // 创建立方体几何体
  52. const boxGeometry = new THREE.BoxGeometry(1, 1, 1)
  53. // 创建立方体材质
  54. const boxMaterial = new THREE.MeshBasicMaterial({ color: 0x00ff00 })
  55. // 创建立方体网格
  56. const boxMesh = new THREE.Mesh(boxGeometry, boxMaterial)
  57. // 将网格添加到3D场景当中
  58. scene.add(boxMesh)
  59. meshes.push(boxMesh)
  60. // 创建物理球
  61. const spereShape = new CANNON.Sphere(0.5)
  62. // 创建一个刚体
  63. const sphereBody = new CANNON.Body({
  64. shape: spereShape,
  65. position: new CANNON.Vec3(0, 0.8, 0),
  66. mass: 1,
  67. material: boxMaterialCon,
  68. collisionFilterGroup: GROUP2, // 设置碰撞组
  69. collisionFilterMask: GROUP1 | GROUP4, // 碰撞掩码,可以和一、四组碰撞
  70. })
  71. // 将刚体添加到物理世界当中
  72. world.addBody(sphereBody)
  73. phyMeshes.push(sphereBody)
  74. // 创建球的几何体
  75. const sphereGeometry = new THREE.SphereGeometry(0.5, 32, 32)
  76. // 创建球的材质
  77. const sphereMaterial = new THREE.MeshBasicMaterial({ color: 0x0000ff })
  78. // 创建球网格
  79. const sphereMesh = new THREE.Mesh(sphereGeometry, sphereMaterial)
  80. // 将网格添加到3D场景当中
  81. scene.add(sphereMesh)
  82. meshes.push(sphereMesh)
  83. // 创建物理圆柱体
  84. const cylinderShape = new CANNON.Cylinder(0.5, 0.5, 1, 32)
  85. // 创建一个刚体
  86. const cylinderBody = new CANNON.Body({
  87. shape: cylinderShape,
  88. position: new CANNON.Vec3(-2, 0.8, 0),
  89. mass: 1,
  90. material: boxMaterialCon,
  91. collisionFilterGroup: GROUP3, // 设置碰撞组
  92. collisionFilterMask: GROUP1 | GROUP4, // 碰撞掩码,可以和一、四组碰撞
  93. })
  94. // 将刚体添加到物理世界当中
  95. world.addBody(cylinderBody)
  96. phyMeshes.push(cylinderBody)
  97. // 创建圆柱体几何体
  98. const cylinderGeometry = new THREE.CylinderGeometry(0.5 ,0.5, 1, 32)
  99. // 创建圆柱体材质
  100. const cylinderMaterial = new THREE.MeshBasicMaterial({ color: 0xff0000 })
  101. // 创建圆柱体网格
  102. const cylinderMesh = new THREE.Mesh(cylinderGeometry, cylinderMaterial)
  103. // 将网格添加到3D场景当中
  104. scene.add(cylinderMesh)
  105. meshes.push(cylinderMesh)
  106. // 创建一个物理世界的平面
  107. // const planeShape = new CANNON.Plane()
  108. const planeShape = new CANNON.Box(new CANNON.Vec3(5, 0.1, 5))
  109. // 创建一个刚体
  110. const planeBody = new CANNON.Body({
  111. // mass: 0, // 设置质量为0,不受碰撞的影响
  112. shape: planeShape,
  113. position: new CANNON.Vec3(0, 0.1, 0),
  114. type: CANNON.Body.STATIC, // 设置物体为静态,不受碰撞的影响
  115. material: boxMaterialCon,
  116. collisionFilterGroup: GROUP4, // 设置碰撞组
  117. collisionFilterMask: GROUP1 | GROUP2 | GROUP3, // 碰撞掩码,可以和一组、二组和三组碰撞
  118. })
  119. // 设置刚体旋转(设置旋转X轴)
  120. // planeBody.quaternion.setFromAxisAngle(new CANNON.Vec3(1, 0, 0), 0.1)
  121. // 将刚体添加到物理世界当中
  122. world.addBody(planeBody)
  123. // 物理世界创建的东西不显示,所以我们要再通过three.js再创建一个平面
  124. // const planeGeometry = new THREE.PlaneGeometry(10, 10) // 因为渲染的东西不是无限衍生,这里给10x10
  125. const planeGeometry = new THREE.BoxGeometry(10, 0.2, 10)
  126. // 创建一个平面材质
  127. const planeMaterial = new THREE.MeshBasicMaterial({ color: 0xffff00 })
  128. // 创建一个平面网格
  129. const planeMesh = new THREE.Mesh(planeGeometry, planeMaterial)
  130. // 旋转平面90度让其平铺
  131. // planeMesh.rotation.x = 0.1
  132. // 将网格添加到3D场景当中
  133. scene.add(planeMesh)
  134. // 设置立方体的初始速度
  135. boxBody.velocity.set(-2, 0, 0)
  136. // 渲染
  137. let clock = new THREE.Clock()
  138. const animate = () => {
  139. // 获取了两次渲染之间的时间差,通常用于控制动画和物理模拟。
  140. let delta = clock.getDelta()
  141. world.step(delta)
  142. // 使用时间差来推进物理世界的模拟
  143. for(let i = 0; i < phyMeshes.length; i++) {
  144. meshes[i].position.copy(phyMeshes[i].position)
  145. meshes[i].quaternion.copy(phyMeshes[i].quaternion)
  146. }
  147. controls.update()
  148. renderer.render(scene, camera)
  149. requestAnimationFrame(animate)
  150. }
  151. animate()
  152. return () => {
  153. <div></div>
  154. }
  155. }
  156. })

本篇文章对canon的学习暂时结束,下篇文章将对canon更加深入讲解!!!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/201290?site
推荐阅读
相关标签
  

闽ICP备14008679号