Skip to content

Commit 294f341

Browse files
committed
fix(troika-3d-ui): update children when first exiting clip rect
The optimization was skipping child updates when going from visible to fully clipped, which sometimes would leave children stuck in their last visible state.
1 parent c1b93f1 commit 294f341

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/troika-3d-ui/src/facade/UIBlock3DFacade.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ class UIBlock3DFacade extends Group3DFacade {
5353
* TODO this doesn't work so well when descendants are absolutely positioned or overflow outside our bounds
5454
*/
5555
updateChildren(children) {
56-
if (!this.isFullyClipped) {
56+
if (!this.isFullyClipped || !this._wasFullyClipped) {
57+
this._wasFullyClipped = this.isFullyClipped
5758
super.updateChildren(children)
5859
}
5960
}

0 commit comments

Comments
 (0)