From 565eb718872f33395ff3a486560103b097ab32d9 Mon Sep 17 00:00:00 2001 From: Alezia Kurdis <60075796+AleziaKurdis@users.noreply.github.com> Date: Sat, 23 Sep 2023 22:27:51 -0400 Subject: [PATCH] Fix the height positioning issue. Fix the height positioning issue. --- applications/doppelganger-mirror/doppleganger.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/applications/doppelganger-mirror/doppleganger.js b/applications/doppelganger-mirror/doppleganger.js index ee8ce93..210c369 100644 --- a/applications/doppelganger-mirror/doppleganger.js +++ b/applications/doppelganger-mirror/doppleganger.js @@ -172,7 +172,7 @@ Doppleganger.prototype = { } this.frame = 0; - this.position = options.position || Vec3.sum(avatar.position, Quat.getForward(avatar.orientation)); + this.position = options.feetPosition || Vec3.sum(avatar.feetPosition, Quat.getForward(avatar.orientation)); this.orientation = options.orientation || avatar.orientation; this.skeletonModelURL = avatar.skeletonModelURL; this.jointStateCount = 0; @@ -189,7 +189,8 @@ Doppleganger.prototype = { visible: false, // normally false modelURL: this.skeletonModelURL, //was field: url position: this.position, - rotation: this.orientation + rotation: this.orientation, + useOriginalPivot: true }; this.entityID = Entities.addEntity(prop, "local");