You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since cesium 1.5.0 ,it can not roate 3dtiles modle any more.When i rotate the model , the model suddenly disappears, and the code as follows:
let m = tileset.modelMatrix;
let mx = Cesium.Matrix3.fromRotationY(Cesium.Math.toRadians(-1));
let rotationX = Cesium.Matrix4.fromRotationTranslation(mx);
Cesium.Matrix4.multiply(m, rotationX, m);
tileset._root.transform = m;
The text was updated successfully, but these errors were encountered:
I'm fairly certain it's the same problem as linked above. I posted a link to a recent forum thread discussing the same issue (see #7036 (comment)), and re-tiling your data with Cesium ion could be another easy way to fix it.
I'm closing this for now @engineerhe but feel free to follow up if these suggested fixes don't work.
Since cesium 1.5.0 ,it can not roate 3dtiles modle any more.When i rotate the model , the model suddenly disappears, and the code as follows:
let m = tileset.modelMatrix;
let mx = Cesium.Matrix3.fromRotationY(Cesium.Math.toRadians(-1));
let rotationX = Cesium.Matrix4.fromRotationTranslation(mx);
Cesium.Matrix4.multiply(m, rotationX, m);
tileset._root.transform = m;
The text was updated successfully, but these errors were encountered: