We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4d13b6 commit e73146eCopy full SHA for e73146e
examples/game-engine/components/game/character-interaction.tsx
@@ -31,7 +31,8 @@ export function CharacterInteraction() {
31
if (!camera) return;
32
33
const cameraPos = new THREE.Vector3();
34
- camera.getWorldPosition(cameraPos);
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any -- @types/three version mismatch
35
+ camera.getWorldPosition(cameraPos as any);
36
37
const characters = objects.filter(
38
(obj) => obj.type === "character" && obj.visible,
0 commit comments