Skip to content

Commit

Permalink
Update cuestionario.js
Browse files Browse the repository at this point in the history
  • Loading branch information
davespser authored Dec 4, 2024
1 parent f7de954 commit bde43dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cuestionario.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const sceneQuiz = new THREE.Scene();
const cameraQuiz = new THREE.PerspectiveCamera(75, window.innerWidth / window.innerHeight, 0.1, 1000);

// Crear un cubo diferente para la escena del cuestionario
const geometryQuiz = new THREE.BoxGeometry( 1, 1, 1);
const geometryQuiz = new THREE.BoxGeometry();
const materialQuiz = new THREE.MeshPhongMaterial({
color: 0xFF0000, specular: 0xffffff,
shininess: 150, // red (can also use a CSS color string here)
Expand Down

0 comments on commit bde43dd

Please sign in to comment.