r3-custom-code/uou2i9be9r.js

43 lines
1.2 KiB
JavaScript
Raw Normal View History

if (!this.entityLoaded) {
return;
}
if (!this.initialized) {
this.camera = this.entityLoaded.camera;
this.camera2d = this.entityLoaded.camera2d;
this.time = 0;
this.camera2d.fov = 180;
this.camera2d.updateInstance('fov');
this.camera2dAnimation = true;
this.initialized = true;
}
this.time += 0.1 * data.delta;
this.camera.position.x = Math.sin(this.time) * 40;// * (window.innerWidth - (window.innerWidth / 2));
this.camera.position.y = Math.sin(this.time / 2) * 40;//Math.cos(this.time) * (window.innerHeight - (window.innerHeight / 2));
this.camera.position.z = 150 + Math.sin(this.time) * 50;//Math.sin(this.camera.position.y) * Math.cos(this.camera.position.x);
this.camera.updateInstance('position');
this.camera.lookAt.x = 0;
this.camera.lookAt.y = 0;
this.camera.lookAt.z = 0;
this.camera.updateInstance('lookAt');
if (this.camera2dAnimation) {
this.camera2d.fov -= Math.cos(this.time) / 4;
this.camera2d.updateInstance('fov');
if (this.camera2d.fov < 75) {
this.camera2d.fov = 75;
this.camera2d.updateInstance('fov');
this.camera2dAnimation = false;
}
}
//console.log('camera x:' + this.camera.position.x + ',y: ' + this.camera.position.y + ',z: ' + this.camera.position.z);
//@ sourceURL=mouseMove.js