Fix the height positioning issue.

Fix the height positioning issue.
This commit is contained in:
Alezia Kurdis 2023-09-23 22:27:51 -04:00 committed by GitHub
parent 8433db6fd8
commit 565eb71887
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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");