manual URL creation

This commit is contained in:
Silas Bartha 2025-02-12 00:28:19 -05:00
parent 68e8abc446
commit d447b608f8
2 changed files with 3 additions and 2 deletions

View File

@ -6,7 +6,7 @@ import { Html } from '@react-three/drei';
import { AppContext } from '../App';
import Color from 'color';
import { Vector3 } from 'three';
import messageBubbleModelURL from '../assets/message-bubble.glb?url';
const messageBubbleModelURL = new URL('../assets/message-bubble.glb', import.meta.url).href
export default function ChatBubble({ id, position, text }) {
const meshRef = useRef();

View File

@ -1,9 +1,10 @@
import { useRef } from 'react';
import terrainModelURL from '../assets/terrain.glb?url'
import * as everforest from '../_everforest.module.scss'
import { RigidBody } from '@react-three/rapier';
import { useGLTF } from '@react-three/drei';
const terrainModelURL = new URL('../assets/terrain.glb', import.meta.url).href
export default function Ground() {
const meshRef = useRef();
const { nodes } = useGLTF(terrainModelURL);