manual URL creation
This commit is contained in:
parent
68e8abc446
commit
d447b608f8
@ -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();
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user