mirror of
https://github.com/overte-org/overte.git
synced 2025-04-06 08:52:54 +02:00
Added and removed different normalizations.
This commit is contained in:
parent
1bf2855e9b
commit
34594b914d
1 changed files with 4 additions and 2 deletions
|
@ -18,10 +18,12 @@
|
||||||
|
|
||||||
function update(deltatime) {
|
function update(deltatime) {
|
||||||
var planet = Entities.getEntityProperties(_entityID);
|
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);
|
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() {
|
function init() {
|
||||||
|
|
Loading…
Reference in a new issue