Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

181
Views
three.js, textures won't load in codepen

I'm starting to learn three.js, I'm doing it on codepen.io. The problem is that I try to add a texture to my boxgeometry and it does not appear, what is the problem with my code?

const cubetexture = new THREE.TextureLoader().load('https://i.stack.imgur.com/9vixO.png');

const geometry = new THREE.BoxGeometry( 10, 10, 10 )
const material = new THREE.MeshBasicMaterial( { map: cubetexture } );
const cube = new THREE.Mesh( geometry, material );
cube.rotateY(Math.PI / 3);
scene.add(cube)
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Your image is being blocked because Imgur does not specify a CORS policy. Due to security reasons, modern browsers will refuse to load the image, as evident in the developer console:

Chromium console displaying failed image fetching

In this case, the easiest solution would be to re-upload your image to Imgur through the main site, and use the URL from there. i.stack.imgur.com (images uploaded through Stackoverflow) does not send the required CORS headers, but i.imgur.com (images uploaded through the main site) does.

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!