From 668db96aaf0906da72fa2de431a3a1fea584d373 Mon Sep 17 00:00:00 2001 From: Manuel Martin Date: Thu, 1 Jun 2023 12:46:49 +0200 Subject: [PATCH] Remove no longer needed link interactivity attempt --- src/inflators/link.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/inflators/link.ts b/src/inflators/link.ts index 325f05e83d..d5345713d7 100644 --- a/src/inflators/link.ts +++ b/src/inflators/link.ts @@ -1,5 +1,5 @@ import { addComponent } from "bitecs"; -import { CursorRaycastable, Link, RemoteHoverTarget } from "../bit-components"; +import { Link } from "../bit-components"; import { HubsWorld } from "../app"; export type LinkParams = { @@ -8,8 +8,6 @@ export type LinkParams = { export function inflateLink(world: HubsWorld, eid: number, params: LinkParams): number { addComponent(world, Link, eid); - addComponent(world, RemoteHoverTarget, eid); - addComponent(world, CursorRaycastable, eid); Link.url[eid] = APP.getSid(params.href); return eid; }