Skip to content

Commit

Permalink
Merge pull request #11855 from rropp5/main
Browse files Browse the repository at this point in the history
Do not render constantly in requestRenderMode when dynamic geometries exist
  • Loading branch information
ggetz authored Mar 6, 2024
2 parents c4bc839 + 1e73fa1 commit 078ac4b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
##### Breaking Changes :mega:

- `Cesium3DTileset.disableCollision` has been removed. Use `Cesium3DTileset.enableCollision` instead.
-

##### Fixes :wrench:

- Fixes issue with `BingMapsImageryProvider` where given culture option is ineffective [#11695](https://github.com/CesiumGS/cesium/issues/11695)
- Fixed a bug where dynamic geometries caused the Scene to continuously render when running in requestRenderMode [#6631](https://github.com/CesiumGS/cesium/issues/6631)

### 1.115 - 2024-03-01

Expand Down
3 changes: 0 additions & 3 deletions packages/engine/Source/Scene/Primitive.js
Original file line number Diff line number Diff line change
Expand Up @@ -2515,9 +2515,6 @@ function setReady(primitive, frameState, state, error) {
primitive._ready =
primitive._state === PrimitiveState.COMPLETE ||
primitive._state === PrimitiveState.FAILED;
if (!defined(error)) {
return true;
}
});
}
export default Primitive;

0 comments on commit 078ac4b

Please sign in to comment.