Skip to content

Commit

Permalink
Update app.js
Browse files Browse the repository at this point in the history
  • Loading branch information
davespser authored Dec 6, 2024
1 parent 6254c12 commit 78807e0
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,23 @@ function loadUserData(userId) {
const userData = snapshot.val();
console.log("Datos del usuario cargados:", userData);

// Validar datos obligatorios
if (!userData.stats || !userData.color) {
console.error("Faltan estadísticas o color en los datos del usuario.");
return;
}

// Verificar si ya completó el cuestionario de creación de personaje
if (!userData.characterCreated) {
// Si no lo completó, cargar el creador de personajes
loadCharacterCreator(userId);
} else {
// Si ya lo completó, cargar la escena principal
loadThreeScene(userData.position);
loadThreeScene({
...userData.position,
color: userData.color,
stats: userData.stats
});
}
} else {
console.log("No se encontraron datos para este usuario.");
Expand Down

0 comments on commit 78807e0

Please sign in to comment.