Roland BARY
Roland BARY
Thanks a lot KeeleyMoore this post helped me !!
Hi my issue was perspective camera (three) animation; [https://github.com/NephtysOrg/projet_sia/other_dev/js/app/game.js](https://github.com/NephtysOrg/projet_sia/blob/other_dev/js/app/game.js) ``` javascript Game.prototype.cameraTranslate = function(){ var actualXpos =this.current_camera.position.x; var actualYpos =this.current_camera.position.y; var actualZpos =this.current_camera.position.z; console.log(this.current_camera.position); var differenceX = Math.abs(this.current_camera.position.x - actualXpos);...
Finaly i found that it isn't necessary to call a translate function in .onUpdate; this code works too: ``` Game.prototype.cameraTransition = function(position, look) { var that = this; var tweenCam...