mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01: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) {
|
||||
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() {
|
||||
|
|
Loading…
Reference in a new issue