Fix initial position of the doppleganger

Fix initial position of the doppleganger
This commit is contained in:
Alezia Kurdis 2023-12-28 14:07:02 -05:00 committed by GitHub
parent 9b5ce57c29
commit 8f2d5cfd62
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.feetPosition || Vec3.sum(avatar.feetPosition, Quat.getForward(avatar.orientation));
this.position = options.position || Vec3.sum(avatar.feetPosition, Quat.getForward(avatar.orientation));
this.orientation = options.orientation || avatar.orientation;
this.skeletonModelURL = avatar.skeletonModelURL;
this.jointStateCount = 0;