Skip to content

Commit

Permalink
Revert 699187a and part of 1567f22
Browse files Browse the repository at this point in the history
Fixes #6496

Chromium version 128 introduced a bug in Hubs that was fixed by
#6495 but PR#6495 seems
to have introduced the bug detailed in issue#6496 for all browsers.
Now Chromium has fixed an issue on their end as detailed here:
https://issues.chromium.org/issues/361823993 which should fix
the original bug that PR#6495 addressed in Hubs, which allows us
to revert the fix on the Hubs side (PR#6495) and so fix the
issue#6496 bug.  However, this doesn't do anything for the
potentially deeper issues in the system that were possibly exposed
with PR#6495.
  • Loading branch information
Exairnous committed Sep 24, 2024
1 parent 33ed11f commit 0f09fae
Showing 1 changed file with 2 additions and 14 deletions.
16 changes: 2 additions & 14 deletions src/components/hoverable-visuals.js
Original file line number Diff line number Diff line change
@@ -1,19 +1,7 @@
import { showHoverEffect } from "../utils/permissions-utils";

// prettier-ignore
const interactorOneTransform = [
1, 0, 0, 0,
0, 1, 0, 0,
0, 0, 1, 0,
0, 0, 0, 1
];
// prettier-ignore
const interactorTwoTransform = [
1, 0, 0, 0,
0, 1, 0, 0,
0, 0, 1, 0,
0, 0, 0, 1
];
const interactorOneTransform = [];
const interactorTwoTransform = [];

export const validMaterials = ["MeshStandardMaterial", "MeshBasicMaterial", "MeshPhongMaterial"];
/**
Expand Down

0 comments on commit 0f09fae

Please sign in to comment.