美文网首页AR&VR&3D
IFE2017,WebGL-08 物理引擎——使用Physijs

IFE2017,WebGL-08 物理引擎——使用Physijs

作者: 沈墨空 | 来源:发表于2017-04-01 16:25 被阅读643次
  • 加载的外部模型没有物理特性

因为physijs自身没有加载模块,所以加载的时候需要用physijs的方法拷贝外部模型

var objLoader = new THREE.OBJLoader();

objLoader.load('xxx.obj',function(object){
  var model = object;

  for (let x in model.children){
    let material = Physijs.createMaterial(
      model.children[x].material,
      1,
      0
    );
    let mesh = new Physijs.BoxMesh(
      model.children[x].geometry,
      material,
      0
    );
    mesh.castShadow = true;
    mesh.receiveShadow = true;

    scene.add(mesh);
  }
},onProgress,onError);

<br />

  • 不能同时向场景加入多个元素

scene.add(obj1,obj2)
原本three.js是支持这样的做法的,但是physijs中这种写法只会加载第一个元素
<br />

  • 直接改变元素的位置或角度时必须要设置参数

// Change the object's position
mesh.position.set( 0, 0, 0 );
mesh.__dirtyPosition = true;

// Change the object's rotation
mesh.rotation.set(0, 90, 180);
mesh.__dirtyRotation = true;

推荐的做法是给物体一个线速度或者角速度

// use linear velocity to change rotation
mesh.setLinearVelocity(new THREE.Vector3(0, 0, 1));

// use angular velocity to change rotation
mesh.setAngularVelocity(new THREE.Vector3(0, 1, 0));

但是这有个问题,直接改变的做法动画是很流畅的,但是用速度矢量画面会有一顿一顿的情况,暂未能解决。
<br />

  • 直接改变角度无法超过90度

直接解决的办法还没找到,用角速度的方法是没问题的。
相关issue:issue137issue170

监控物体的rotation可以发现在y在90度附近时rotation的x和z在-PI,0,PI之间反复变动的情况

此外根据issue223中jimver04的回复我尝试把fixedTimeStep改成1/20,结果是可以超过90度了,但是时不时会出现物体翻转的情况。

相关文章

网友评论

  • 半岛未凉_9373:加载obj物理模型后 模型并不做自由落体 直接向四周崩开 角速度线速度过大 有没有什么解决办法 这个角速度线速度是根据什么来计算的

本文标题:IFE2017,WebGL-08 物理引擎——使用Physijs

本文链接:https://www.haomeiwen.com/subject/iohyottx.html