diff --git a/src/components/hoverable-visuals.js b/src/components/hoverable-visuals.js index 9c39b890ac..f5ccaa75fa 100644 --- a/src/components/hoverable-visuals.js +++ b/src/components/hoverable-visuals.js @@ -1,7 +1,17 @@ import { showHoverEffect } from "../utils/permissions-utils"; -const interactorOneTransform = []; -const interactorTwoTransform = []; +const interactorOneTransform = [ + 1, 0, 0, 0, + 0, 1, 0, 0, + 0, 0, 1, 0, + 0, 0, 0, 1 +]; +const interactorTwoTransform = [ + 1, 0, 0, 0, + 0, 1, 0, 0, + 0, 0, 1, 0, + 0, 0, 0, 1 +]; export const validMaterials = ["MeshStandardMaterial", "MeshBasicMaterial", "MeshPhongMaterial"]; /**