MissionToPsyche-Copper / 2021_PSU_Team18_NASA-MissionPsyche-WebXR

PSU Senior Capstone Project NASA WebXR for Public Engagement - Mission Psyche
4 stars 0 forks source link

motion sickness reduction and proportional rotation #54

Closed odhranthewizard closed 2 years ago

odhranthewizard commented 2 years ago

old: psyche.rotation.y -= 0.0025; new: psyche.rotation.y -= (psyche.position.x * 0.000025);

old: if(moveAway == true) psyche.position.x -= 0.025; else psyche.position.x += 0.025;

new: if(moveAway == true) psyche.position.x -= 0.05; else psyche.position.x += 0.05;