This repository demonstrates how I would use skills learned in Unit 0 of LaunchCode to build a VR application inspired by Zelda: Breath of the Wild. The examples include creating and manipulating arrays, objects, strings, and applying control structures and logic.
The application is a VR/4D version of Zelda: Breath of the Wild. Players can feel the environment: wind, temperature, eating food, running, and other immersive interactions.
We track player stats, health, stamina, and environmental factors.
let playerHealth = 100;
let playerStamina = 50;
let windSpeed = 10;
playerHealth -= 5; // player takes damage
console.log("Player Health:", playerHealth);