Skip to content

Commit cf86ab3

Browse files
committed
Resolves #40 by setting frustumCulled properties to false
1 parent 48f3d11 commit cf86ab3

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

modules/talkinghead.mjs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -846,6 +846,9 @@ class TalkingHead {
846846
x.morphTargetDictionary ) {
847847
this.morphs.push(x);
848848
}
849+
850+
// Workaround for #40, hands culled from the rendering process
851+
x.frustumCulled = false;
849852
});
850853
if ( this.morphs.length === 0 ) {
851854
throw new Error('Blend shapes not found');

0 commit comments

Comments
 (0)