if (!this.entityLoaded) { return; } if (!this.initialized) { this.animate = false; this.currentAttributeData = null; this.freshAttributeData = null; this.camera = this.entityLoaded.camera; this.time = 0; 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.audioDrone.volume < 0.1) { // this.audioDrone.volume += 0.001; // this.audioDrone.updateInstance('volume'); // } //@ sourceURL=beforeRender.js