Added and removed different normalizations.

This commit is contained in:
Mike Moody 2017-07-24 23:55:44 -07:00
parent 1bf2855e9b
commit 34594b914d

View file

@ -18,10 +18,12 @@
function update(deltatime) {
var planet = Entities.getEntityProperties(_entityID);
var direction = Vec3.normalize(Vec3.subtract(MyAvatar.position, planet.position));
//normalization happens in rotationBetween.
var direction = Vec3.subtract(MyAvatar.position, planet.position);
var localUp = Quat.getUp(MyAvatar.orientation);
MyAvatar.orientation = Quat.multiply(Quat.rotationBetween(localUp, direction), MyAvatar.orientation);
MyAvatar.orientation = Quat.normalize(Quat.multiply(Quat.rotationBetween(localUp, direction), MyAvatar.orientation));
}
function init() {