1
- import { Group3DFacade } from 'troika-3d'
1
+ import { Facade , Group3DFacade } from 'troika-3d'
2
2
import {
3
3
Matrix4 ,
4
4
Quaternion ,
@@ -24,18 +24,29 @@ const upVec3 = new Vector3(0, 1, 0)
24
24
export class WristMountedUI extends Group3DFacade {
25
25
constructor ( parent ) {
26
26
super ( parent )
27
- this . active = false
27
+ // Config:
28
28
this . activeUpAngle = Math . PI / 7
29
29
this . preferredHand = 'left'
30
30
this . platformRadius = 0.25
31
31
this . platformColor = 0x333333
32
32
this . projectionColor = 0x3399ff
33
+ this . keepContentAlive = false
34
+ this . onActiveChange = null
35
+
36
+ // Internal state:
37
+ this . gripPose = null
38
+ this . active = false
33
39
34
40
this . _cogPos = new Vector3 ( )
35
41
this . addEventListener ( 'xrframe' , this . onXRFrame . bind ( this ) )
36
42
}
37
43
38
44
describeChildren ( ) {
45
+ // Only render children if we have a valid gripPose
46
+ if ( ! this . gripPose ) {
47
+ return null
48
+ }
49
+
39
50
let children = this . _childTpl || ( this . _childTpl = [
40
51
{
41
52
key : 'wristband' ,
@@ -62,6 +73,7 @@ export class WristMountedUI extends Group3DFacade {
62
73
contentDef . platformColor = this . platformColor
63
74
contentDef . projectionColor = this . projectionColor
64
75
contentDef . projectionSourcePosition = this . _cogPos
76
+ contentDef . keepContentAlive = this . keepContentAlive
65
77
contentDef . children = this . children
66
78
67
79
return children
@@ -75,9 +87,9 @@ export class WristMountedUI extends Group3DFacade {
75
87
76
88
onXRFrame ( time , xrFrame ) {
77
89
let gripPose = null
90
+ let active = false
78
91
let inputSources = xrFrame . session . inputSources
79
92
if ( inputSources ) {
80
- let active = false
81
93
let gripSpace = null
82
94
for ( let i = 0 , len = inputSources . length ; i < len ; i ++ ) {
83
95
if ( inputSources [ i ] . handedness === this . preferredHand ) {
@@ -101,18 +113,22 @@ export class WristMountedUI extends Group3DFacade {
101
113
active = tempVec3 . angleTo ( upVec3 ) < this . activeUpAngle
102
114
}
103
115
}
104
- if ( active !== this . active ) {
105
- this . active = active
106
- this . afterUpdate ( )
116
+ }
117
+
118
+ if ( active !== this . active ) {
119
+ if ( this . onActiveChange ) {
120
+ this . onActiveChange ( active )
107
121
}
122
+ this . update ( { active} )
108
123
}
109
124
110
- if ( gripPose || ! this . gripPose ) {
111
- this . gripPose = gripPose
125
+ if ( ! ! gripPose !== ! ! this . gripPose ) {
126
+ this . update ( { gripPose} )
127
+ }
128
+ else if ( gripPose ) {
112
129
// Skip full afterUpdate pass, just give the gripPose to children - they both have
113
130
// a syncPose method to handle syncing matrices without a full afterUpdate.
114
131
this . forEachChild ( child => child . syncPose ( gripPose ) )
115
132
}
116
133
}
117
-
118
134
}
0 commit comments