Skip to content

Commit b1c888c

Browse files
committed
Fix unit test
1 parent 4498732 commit b1c888c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Specs/Scene/ModelSpec.js

+6
Original file line numberDiff line numberDiff line change
@@ -2784,6 +2784,12 @@ describe(
27842784

27852785
it("loads a glTF with KHR_materials_common that has skinning", function () {
27862786
return loadModel(CesiumManUrl).then(function (m) {
2787+
// Face CesiumMan towards the camera
2788+
m.modelMatrix = Matrix4.multiply(
2789+
m.modelMatrix,
2790+
Axis.Y_UP_TO_X_UP,
2791+
new Matrix4()
2792+
);
27872793
verifyRender(m);
27882794
primitives.remove(m);
27892795
});

0 commit comments

Comments
 (0)