Update: CC - SpoonLib - Mouse Wheel (opxis1pjmo.js) 40 bytes modified

beta.r3js.org
-=yb4f310 2018-01-16 15:06:19 +01:00
parent 53d954536a
commit 5ef45cff51
1 changed files with 5 additions and 6 deletions

View File

@ -3,19 +3,18 @@ if (!this.entityLoaded) {
}
if (!this.initialized) {
this.cylinder = this.entityLoaded.cylinder;
this.initialized = true;
}
var mesh = GameLib.EntityManager.Instance.findComponentById('xtnu5j78bq');
if (data.event.deltaY > 0) {
mesh.rotation.x += 0.897597901;
this.cylinder.rotation.x += 0.897597901;
} else {
mesh.rotation.x -= 0.897597901;
this.cylinder.rotation.x -= 0.897597901;
}
console.log(mesh.rotation.x);
//mesh.rotation.x += data.event.deltaY * 0.001;
//mesh.updateInstance('rotation');