Skip to content

Commit 4769cac

Browse files
committed
fix(troika-3d-ui): prevent sync of text nodes before flex layout finishes
This prevents a flash of incorrectly-sized text, though it can still give a flash of old text; that should also be fixed in the future. This is preferable in the short term because by skipping the initial sync it frees up the worker thread to more quickly complete the flex layout. This is particularly noticeable when the text nodes are extremely large.
1 parent 912f95c commit 4769cac

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

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

+15-4
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,23 @@ import { Text3DFacade } from 'troika-3d-text'
33
import { getInheritable } from '../uiUtils.js'
44

55
const flexLayoutTextProps = ['text', 'font', 'fontSize', 'lineHeight', 'letterSpacing', 'whiteSpace', 'overflowWrap']
6-
6+
const noop = () => {}
77

88
/**
99
* Wrapper for Text3DFacade that lets it act as a flex layout node. This shouldn't be used
1010
* directly, but will be created as an implicit child by {@link UIBlock3DFacade} when
1111
* configured with a `text` property.
1212
*/
1313
class UITextNode3DFacade extends Text3DFacade {
14+
constructor (props) {
15+
super(props)
16+
17+
// Override the sync method so we can have control over when it's called
18+
let mesh = this.threeObject
19+
mesh._actuallySync = mesh.sync
20+
mesh.sync = noop
21+
}
22+
1423
afterUpdate() {
1524
// Read computed layout
1625
const {
@@ -25,7 +34,6 @@ class UITextNode3DFacade extends Text3DFacade {
2534
let parent = this.parentFlexNode
2635
this.x = offsetLeft - parent.scrollLeft
2736
this.y = -(offsetTop - parent.scrollTop)
28-
this.maxWidth = offsetWidth
2937

3038
// Update clip rect based on parent
3139
const clipRect = this.clipRect || (this.clipRect = [0, 0, 0, 0])
@@ -50,11 +58,14 @@ class UITextNode3DFacade extends Text3DFacade {
5058
}
5159
}
5260

53-
this.threeObject.visible = hasLayout
54-
5561
super.afterUpdate()
5662
}
5763

64+
onAfterFlexLayoutApplied() {
65+
this.threeObject.maxWidth = this.offsetWidth
66+
this.threeObject._actuallySync(this._afterSync)
67+
}
68+
5869
getBoundingSphere() {
5970
return null //parent UIBlock3DFacade will handle bounding sphere and raycasting
6071
}

0 commit comments

Comments
 (0)