Skip to content

Commit 0663aeb

Browse files
Fix warning
See: aframevr/aframe#5386
1 parent ef056ff commit 0663aeb

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

‎compositions/hand-scaling/src/hand-tracking-controls.js‎

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -364,8 +364,7 @@ AFRAME.registerComponent('hand-tracking-controls', {
364364
mesh.position.set(0, 0, 0);
365365
mesh.rotation.set(0, 0, 0);
366366
skinnedMesh.frustumCulled = false;
367-
skinnedMesh.material = new THREE.MeshStandardMaterial({skinning: true,
368-
color: this.data.modelColor,
367+
skinnedMesh.material = new THREE.MeshStandardMaterial({color: this.data.modelColor,
369368
wireframe: this.data.wireframe});
370369
this.el.setObject3D('mesh', mesh);
371370
}

0 commit comments

Comments
 (0)