external mod

beta.r3js.org
-=ybafelo 2018-05-14 09:56:05 +02:00
parent dc05e52f0b
commit 45883dcf3a
2 changed files with 105 additions and 7 deletions

14
bmllkpyql3.js Normal file
View File

@ -0,0 +1,14 @@
if (!this.entityLoaded) {
return;
}
this.entityLoaded.move(
{
source : 'mouse',
x : data.event.movementX,
y : data.event.movementY
}
);
//@ sourceURL=mouseMoveARFootball2.js

View File

@ -4,6 +4,14 @@ if (data.entity === this.parentEntity) {
return;
}
/**
* Code Components
*/
this.mouseMove = R3.EntityManager.Instance.findComponentById('bmllkpyql3');
/**
* Meshes
*/
this.footballPlayer = R3.EntityManager.Instance.findComponentById('fn2jjb9eou');
this.playerRotation = {
@ -12,18 +20,94 @@ this.playerRotation = {
};
R3.CustomCode.prototype.move = function(data) {
this.playerRotation.x += data.x;
this.playerRotation.y += data.y;
/**
var x = data.x;
var y = data.y;
// if (data.source === 'mouse') {
// x *= 0.001;
// y *= 0.001;
// }
this.playerRotation.x += x;
this.playerRotation.y += y;
//this.footballPlayer.instance.applyMatrix(new THREE.Matrix4());
// var v = new THREE.Vector3(x, y, 0);
// v.normalize();
/**
* This is where i have to do the right order of transformations
*/
console.log('todo: player rotation');
// this.footballPlayer.rotation.y += data.
// this.footballPlayer.quaternion.axis.x = 0;
// this.footballPlayer.quaternion.axis.y = 1;
// this.footballPlayer.quaternion.axis.z = 0;
//
// this.footballPlayer.quaternion.angle = this.playerRotation.x;
//
// this.footballPlayer.updateInstance('quaternion');
this.footballPlayer.instance.rotateOnAxis(new THREE.Vector3(0, 1, 0), this.playerRotation.x * 0.001);
this.footballPlayer.instance.translateZ(0.2);
// this.footballPlayer.quaternion.axis.x = 1;
// this.footballPlayer.quaternion.axis.y = 0;
// this.footballPlayer.quaternion.axis.z = 0;
//
// this.footballPlayer.quaternion.angle = this.playerRotation.y;
//
// this.footballPlayer.updateInstance('quaternion');
this.footballPlayer.instance.rotateOnAxis(new THREE.Vector3(1, 0, 0), this.playerRotation.y * 0.001);
// this.footballPlayer.instance.rotateX(v.y * 0.1);
this.footballPlayer.instance.translateZ(-0.2);
//
//
// this.footballPlayer.position.x = Math.sin(this.playerRotation.x);
// this.footballPlayer.position.z = Math.cos(this.playerRotation.x);
// this.footballPlayer.updateInstance('position');
//
// this.footballPlayer.lookAt.x = 0;
// this.footballPlayer.lookAt.y = 0;
// this.footballPlayer.lookAt.z = 0;
// this.footballPlayer.updateInstance('lookAt');
/**
var v = new THREE.Vector3(this.playerRotation.y, this.playerRotation.x, 0);
v.normalize();
this.footballPlayer.quaternion.axis.x = v.x;
this.footballPlayer.quaternion.axis.y = v.y;
this.footballPlayer.quaternion.axis.z = 0;
this.footballPlayer.quaternion.angle = 1;
//this.footballPlayer.quaternion.angle = Math.abs(x) + Math.abs(y);
this.footballPlayer.updateInstance('quaternion');
console.log('todo: player rotation');
this.footballPlayer.quaternion.axis.x = 0;
this.footballPlayer.quaternion.axis.y = 1;
this.footballPlayer.quaternion.axis.z = 0;
this.footballPlayer.quaternion.angle = this.playerRotation.x;
this.footballPlayer.updateInstance('quaternion');
*/
}.bind(this)
this.mouseMove.entityLoaded = this;
//@ sourceURL=entityLoaded.js