Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
51 views

JavaScript requestAnimationFrame accelerates animation over time--How to prevent this?

I have a Three.js animation that modifies a sphere using requestAnimationFrame(). However, after sending a few messages in my chat box, the animation starts speeding up rapidly. I suspect that ...
EbDev's user avatar
  • 1
0 votes
0 answers
15 views

Procedurally generate glb models

I just recently decided that I want to make a mini Minecraft clone. I have a glb model called grass.glb. how would I procedurally generate this model infinitely to create blocky terrain? (I can do the ...
bingandabong's user avatar
0 votes
0 answers
19 views

The object doesnt go fully in spline direction

Iam Implementing a roller coaster Here's the pseudocode of few functions in the code Computearclength computes t and its relevant distnace upto that t MapSToT computes and maps s to t in spline ...
COLONEL FF's user avatar
0 votes
0 answers
37 views

Ripple not displaying in React Three Fiber, and i'm not sure why

I am trying to create a ripple, below is my code but yet its not rendering on the screen, yet i seem not to be getting any errors. import './App.css'; import { useMemo } from 'react'; import * as ...
Ande Caleb's user avatar
  • 1,204
1 vote
1 answer
31 views

How I can optimize React-three-fiber model?

I have model: import { useGLTF } from '@react-three/drei' import React, { FC } from 'react' import * as THREE from 'three' import { GLTF } from 'three-stdlib' type GLTFResult = GLTF & { nodes:...
Nik's user avatar
  • 31
1 vote
0 answers
38 views

Adding 2D Text on a 3D Object in Threejs

I've just started learning threejs, thought of working on a pre-made model. I wanted to work with a Flipper Zero Model. Here is the link of the model. Flipper's Screen is called "Object_8" ...
rahulpandharkar's user avatar
0 votes
0 answers
30 views

How to extract a selected area from a 3D globe in Three.js and transfer it to a new canvas while maintaining zoom and pan effects? [closed]

I’ve created a 3D globe using Three.js, and I’m using a jpg file as the texture for the globe. I want to select a specific region on the globe by drawing a rectangle over it, and then transfer that ...
jj j's user avatar
  • 1
0 votes
1 answer
35 views

raycasting coordinate problems

Hello guys i w want to implement drag and drop functionality to my project but i have problem with selecting shader objects on a 3d model i implemented a cursor follower and passed into fragments but ...
Bn'R's user avatar
  • 23
0 votes
1 answer
36 views

Three.js issues with models (Rotating them whilst they are in the scene)

import * as THREE from 'three'; import { GLTFLoader } from 'three/addons/loaders/GLTFLoader.js'; const canvas = document.querySelector('#frontPageCanvas'); const scene = new THREE.Scene(); const ...
YoNoms's user avatar
  • 1
0 votes
0 answers
10 views

How to access renderer-object in Ar.js with Three.js (Aframe)

im developing an AR-Application using Ar.js / Aframe / Three.js. To implement a mirror, I want to use a THREE.CubeCamera. However, I have to add the line mirrorCubeCamera.update(renderer, scene); in ...
balkongenie's user avatar
0 votes
2 answers
56 views
+50

360 degree rotation using orbit controls in threejs?

I am building a panoramic viewer that combines a 3D model and panorama images. The viewer features hotspots within the 3D model, and when a user clicks a hotspot, the view switches from the 3D model ...
Yashwant Raut's user avatar
1 vote
1 answer
44 views

Using Three.js, and Rapier physics: Why does this object have a jitter on moving?

I have a simple sphere which has an impulse added to it on a tap, but as it moves it seems to jitter a bit as the mesh doesn't quite keep up with the physical model. Is there a solution to this? The ...
Wex's user avatar
  • 4,676
-4 votes
0 answers
24 views

threejs canvasTexture is blurry meanwhile the origin canvas is not [duplicate]

I'm using canvas as texture to render a plane, but canvasTexture on plane is a little blurry. How to fix blurry part? render result picture Here is the JS code: html code picture js code picture ...
L_T's user avatar
  • 1
0 votes
1 answer
72 views

canvasTexture is blurry meanwhile the origin canvas is not

I'm using canvas as a texture to render a plane, but canvasTexutre on the plane is a little blurry. How can I fix that? import * as THREE from "three"; const image = document....
L_T's user avatar
  • 1
0 votes
0 answers
16 views

Setting custom FOV for A-Frame camera in VR

I have the following code showing me a 360 pano image in VR with the a-sky element from A-Frame. `import React from "react"; import "aframe"; import interia_lobby from "../...
shoukath Ali Shaik's user avatar
0 votes
1 answer
40 views

Ensuring thin instanced meshes are always visible in Three.js

I am creating a heatmap with Three.js that has 19 rows and ~6,000 columns. Since there are so many columns, each cell is very thin. Out of the >110,000 cells in my current dataset, 47 are colored ...
eigenVector5's user avatar
0 votes
0 answers
33 views

Building a 3D Configurator API Service

I have been building product configurators with Unity and Unreal Engine for almost 5 years now. I would like to create an API service that will do the following: send a configuration combine all ...
Christian Stamati's user avatar
0 votes
0 answers
20 views

React + Three.js: Duplicate Object Created on First Drag

I'm working on a project using React and Three.js.I'm encountering an issue where dragging an object for the first time creates a duplicate of that object. I'd like to understand why this happens and ...
Balavigneshkumar Pethuchetty's user avatar
0 votes
1 answer
44 views

Specify three.js graph size

How can I assign a width to the graph shown here - e.g. as a nested, padded element? As shown, the graph takes up the entire page width; I'd like to specify a size, e.g. 800px x 600px. Is a CSS ...
Victoria Stuart's user avatar
0 votes
0 answers
39 views

3js Ripples EffectComposer

I'm trying to replicate in react-three/fiber here what I've done here using plain three. I'm having trouble figuring out how to hide the white ripples after using them for the displacement texture. ...
Fausto Renier's user avatar
-1 votes
0 answers
21 views

Add custom hand gestures in three.js

I have searched the web for ways to add custom hand gestures in three.js WebXR and came across handy.js and other complex packages. I only need to define a few custom gestures that I can express in ...
Matthias Möller's user avatar
3 votes
0 answers
157 views

How to retarget 3D pose landmarks (points in 3d space) onto a rigged humanoid model in Three.js?

I’m trying to implement a 3D avatar in Three.js by extracting 3D pose landmarks of a person (frame-by-frame) from a video (using MediaPipe / PoseFormat). I currently have a .pose file that provides ...
AzizStark's user avatar
  • 1,504
2 votes
1 answer
92 views

onPointerOver and onPointerOut detect all child elements

The problem is that I have onPointerOver and onPointerOut triggered on each child element, but I need it to be on a common group, because then the component is re-rendered too often. There is a group ...
Vadim Semashko's user avatar
1 vote
1 answer
62 views

How to add dom elements behind the three.js model in canvas?

I want to move to last section "Color Transitions" text and background image behind of the 3d model. I am using react-three/fiber, drei Deployed preview - https://astonishing-pony-00dd84....
Abhi's user avatar
  • 21
0 votes
1 answer
47 views

GLSL Shader vertex displacement only on 1 vertex

I'm trying to refactor a decade old GLSL vertex displacement shader that used to work with a legacy version of Three.js and I ran into a bunch of issues from the order of operations for textures ...
steveblue's user avatar
  • 490
0 votes
1 answer
44 views

How can I create the axis helpers using WebGL and Three.js

How can I create an axis helper like the below image at the top left corner and in the middle. When I use axesHelper, the line doesnot have an arrow at the end and it is also thin. Below is the code I ...
Itis Me's user avatar
  • 39
2 votes
1 answer
65 views

How to automatically center imported GLTF model and orient camera to show full model in Three.js

I'm working on some Three.js code to import a GLTF model and display it. The model is imported successfully through a different component, but no matter how I adjust the camera or reposition the model,...
javanub's user avatar
  • 33
0 votes
1 answer
40 views

vite not updating it page when GLSL code have been updated

I been trying to learn GLSL in this past few days but there's something that limited my progression is that the page won't updated when The GLSL code have been updated where i need to manually ...
dik james's user avatar
-1 votes
0 answers
19 views

Setting up threejs and running it

I encountered difficulties while attempting to execute a straightforward Three.js project. Despite adhering to the provided guide, I discovered that I lacked the necessary libraries. Consequently, the ...
Iann's user avatar
  • 1
0 votes
0 answers
33 views

Rendering multiple composers in three.js

In this clip im trying to render two differnt composers to the canvas in the animation cycle but only the last composer in the loop gets rendered to the screen, or the transparency of one layer doesnt ...
Alejandro Vazquez's user avatar
0 votes
0 answers
27 views

Manually update 3D Object pivot point in three JS

I'm quite new to ThreeJS and I just got this car model on Sketchfab, but when i try to put it in my React Three Fiber app it display very far away in the scene, when I attempt to rotating it follow ...
Thuan Tran's user avatar
0 votes
1 answer
46 views

How to load an LDR file using THREE.js

I am attempting to display an .ldr file in a web page using THREE.js. An .ldr file is a LEGO version of a .mpd file. The THREE.js documentation says to convert the .ldr file to a packed .mpd file, ...
Adam's user avatar
  • 393
1 vote
1 answer
72 views

Three.js - Color based on occlusion

I would like to have a mesh that is always drawn to the scene (depthTest = false, renderOrder = 999) but I want the occluded part of the mesh (the area covered by another object in front of it in the ...
z3db0y's user avatar
  • 33
1 vote
0 answers
23 views

How to Create a 3D Texture with Depth from Slices for KTX2 in Three.js?

I’m trying to create a 3D texture with depth using KTX2 files for volume rendering in Three.js. I have a KTX2 file that, when extracted using,produces 64 slices named output_depth*.png, each of size ...
Abdullah Developer's user avatar
1 vote
1 answer
58 views

Problem with three.js shader's column width adjustment

According to the layout, the shader should be divided into 6 columns and 3 rows with dimensions of 100vw up by 100vh. The sizes of the rows should be divided evenly proportionally by height. The ...
Andrew Kargin's user avatar
0 votes
1 answer
40 views

Re-render problem with FBO "flip flop" technique in R3F

EDIT: I've narrowed down the problem to something evinced by the double-render of React in strict mode in development. Adding more details below, and also adding the "React" tag, since more ...
philolegein's user avatar
  • 1,515
0 votes
0 answers
13 views

THREE.WebGLRenderer: Context Lost when loading a 3D object in a Next.js app deployed on Vercel

In my Next.js application I want to load a 3D object. The application works perfectly on my local environment, but when deployed to Vercel, I encounter the following error: THREE.WebGLRenderer: ...
Shoyeb's user avatar
  • 1
0 votes
0 answers
14 views

fitting skeleton to mesh after using shape keys in three js?

i have this human model from makehuman addon in blender. i imported using gltfloader, and the shape keys and the rest works great. The problem is that when adjust the mesh with shape keys, the ...
electricmachine's user avatar
0 votes
0 answers
24 views

Threejs clipping cast shadow

I have a 3D object, a New balance shoe with a <directionLight/> and directionalLightHelper to visualize the lightsource, the issue is the shadow on the shoes looks weird, it seems like the shoes ...
Thuan Tran's user avatar
0 votes
0 answers
39 views

Implementing Drag-and-Drop Window Positioning on a Wall Using React Three.js

I am planning to create a window on a wall. The position of the window can be controlled using drag and drop. The window should not be draggable beyond the boundaries of the wall (e.g., when the ...
web developer's user avatar
0 votes
0 answers
27 views

How to make thick outline? My shader doesn't work

current situation https://codesandbox.io/p/sandbox/rx8frh I’m trying to make a thick outline for the specific mesh. I tried some existing solutions (Outline in @react-three/postprocess and Outlines in ...
syu6's user avatar
  • 1
0 votes
1 answer
58 views

3d Model Positioning in ThreeJS Play code.io:

How do I make my model so that when a user clicks and drags they can see the model from different positions? (Like when you are editing a 3D model). I am new to threeJS. The model and scene are also ...
bingandabong's user avatar
0 votes
1 answer
29 views

In three.js, how can we make a face face the camera as much as possible under certain constraints?

Suppose our face is on the x-y plane, and there is a constraint that the axis of this face must be (0,1,0). I hope that when the camera moves, this face will face the camera as much as possible. It ...
duxingmengshou's user avatar
0 votes
0 answers
28 views

React Three Fiber calling useGLTF inside useEffect

I have a shoes component as below, whenever the props currentShoes change, I need to update the nodes and materials from useGLTF, is there a way to achieve this? Right now when parent component change ...
Thuan Tran's user avatar
0 votes
2 answers
77 views

Cannot get a simple cube to load using React-Three-Fiber

I am using the react-three-fiber getting started doc to render a cube on a page but nothing shows and I am at a bit of a loss. Link: https://r3f.docs.pmnd.rs/getting-started/your-first-scene I am ...
Jayson Sanon's user avatar
0 votes
0 answers
28 views

Updating Three.js to the latest version: gray screen no error

I’m trying to update this program (originally written with Three.js r88) to work with the latest version of Three.js. Original code: https://codepen.io/shubniggurath/pen/OEeMOd My code: https://...
戴丞萱's user avatar
0 votes
1 answer
79 views

How do I load a 3D model using three.js using the editor playcode.io?

I have been trying to load in a 3d Model on playcode.io. My browser supports WebGl and so does playcode.io (I think) So far, no success. There is no problem The model either. The model is called plane....
bingandabong's user avatar
0 votes
1 answer
50 views

Threejs clipping a wall

I have a 3d channel that contains cylinders which simulate a liquid. here's an example The issue is that the cylinders can overlap with the walls and show through them. I think i need to use clipping ...
user21941129's user avatar
0 votes
0 answers
17 views

Implementing Drag-and-Drop Image Upload to a Canvas Texture in React.js

I am working on a project in React JS uisng of Three.js and need to implement a functionality where users can upload an image via drag-and-drop. If the image intersects with the canvas, the ...
Rishabh Malakar's user avatar
0 votes
1 answer
61 views

Large number of polygons with react-three-fiber

I need to display thousands of polygons (2d) of different shapes with react-three-fiber. I thought the best option would be to use instances of the same polygon with, let's say 100 vertices. And then ...
Zamadhi Eturu's user avatar

1
2 3 4 5
423