Skip to content

Commit

Permalink
Update menu.js
Browse files Browse the repository at this point in the history
  • Loading branch information
davespser authored Dec 6, 2024
1 parent 382225a commit 31cb79d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion js/menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ const planeGeometry = new THREE.PlaneGeometry(3, 10);
const planeMaterial = new THREE.MeshBasicMaterial({ color: 0x222222 });
const background = new THREE.Mesh(planeGeometry, planeMaterial);
background.position.z = -0.2;
background.rotation.z = 10;// Colocar detrás del menú
background.position.x = -2;
background.rotation.z = -9;// Colocar detrás del menú
scene.add(background);

// Raycaster para detección de interacciones
Expand Down

0 comments on commit 31cb79d

Please sign in to comment.