Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

221
Vistas
Fragment Shader no se muestra en ThreeJS

Soy nuevo en threejs e implemento sombreadores en él. Traje un shader divertido pero tengo problemas para mostrarlo. Creo que está relacionado con la variable "len" en el código, pero no estoy seguro. Aquí está el enlace al codepen https://codepen.io/Yerbs/pen/eYWgevO . Cualquier ayuda sería apreciada Este es el frag shader

 fragmentShader: ` uniform vec2 resolution; uniform float time; const int AMOUNT = 12; void main() { vec2 coord = 20.0 * (gl_FragCoord.xy - resolution / 2.0) / min(resolution.y, resolution.x); float len; for (int i = 0; i < AMOUNT; i++){ len = length(vec2(coord.x, coord.y)); coord.x = coord.x - cos(coord.y + sin(len)) + cos(time / 9.0); coord.y = coord.y + sin(coord.x + cos(len)) + sin(time / 12.0); } gl_FragColor = vec4(cos(len * 2.0), cos(len * 3.0), cos(len * 1.0), 1.0); } ` });

He probado el código anterior, así que sé que está relacionado con el propio fragmento.

about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

Debe establecer los valores de time y resolution de las variables uniformes (consulteShaderMaterial ). p.ej:

 const material = new THREE.ShaderMaterial({ uniforms: { time: { type: "f", value: 0.0 }, resolution: { type: "v2", value: new THREE.Vector2() }, }, // [...]
 function animate(timestamp) { requestAnimationFrame(animate); material.uniforms.time.value = timestamp / 1000; material.uniforms.resolution.value.x = renderer.domElement.width; material.uniforms.resolution.value.y = renderer.domElement.height; renderer.render(scene, camera); }

Ejemplo completo:

 const renderer = new THREE.WebGLRenderer({ antialias: false }); renderer.setSize(window.innerWidth, window.innerHeight, 2); document.body.appendChild(renderer.domElement); window.addEventListener( 'resize', function(e) { renderer.setSize(window.innerWidth, window.innerHeight, 2); }); const scene = new THREE.Scene(); const camera = new THREE.OrthographicCamera(-1, 1, 1, -1, 0, 1); const material = new THREE.ShaderMaterial({ uniforms: { time: { type: "f", value: 0.0 }, resolution: { type: "v2", value: new THREE.Vector2() }, }, vertexShader: ` varying vec2 vUv; void main() { vUv = uv; gl_Position = vec4( position, 1.0 ); } `, fragmentShader: ` uniform vec2 resolution; uniform float time; const int AMOUNT = 12; void main() { vec2 coord = 20.0 * (gl_FragCoord.xy - resolution / 2.0) / min(resolution.y, resolution.x); float len; for (int i = 0; i < AMOUNT; i++){ len = length(vec2(coord.x, coord.y)); coord.x = coord.x - cos(coord.y + sin(len)) + cos(time / 9.0); coord.y = coord.y + sin(coord.x + cos(len)) + sin(time / 12.0); } gl_FragColor = vec4(1.0, cos(len * 3.0), cos(len * 1.0), 1.0); } ` }); const quad = new THREE.Mesh(new THREE.PlaneBufferGeometry( 2, 2, 1, 1 ), material); scene.add(quad); function animate(timestamp) { requestAnimationFrame(animate); material.uniforms.time.value = timestamp / 1000; material.uniforms.resolution.value.x = renderer.domElement.width; material.uniforms.resolution.value.y = renderer.domElement.height; renderer.render(scene, camera); } animate();
 <script src="https://cdn.jsdelivr.net/npm/three@0.137/build/three.js"></script>

about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda