Initial Commit: Custom Code - BK Flame - Entity Loaded (mccud019kb.js)

beta.r3js.org
-=yb4f3410 1973-11-29 22:33:09 +01:00
parent 664cc4dc45
commit b8d881eb60
5 changed files with 79 additions and 21 deletions

28
1cs8fm87ty.js Normal file
View File

@ -0,0 +1,28 @@
//console.log(data);
this.camera = GameLib.EntityManager.Instance.findComponentById('yv62w8sx9r');
var vector = new THREE.Vector3();
vector.set(
( event.clientX / window.innerWidth ) * 2 - 1,
- ( event.clientY / window.innerHeight ) * 2 + 1,
0.5 );
vector.unproject( this.camera.instance );
vector.x = -1 * ((window.innerWidth / 2) - (data.event.clientX));
vector.y = 1 * ((window.innerHeight / 2) - (data.event.clientY));
vector.z = 0;
this.camera.lookAt.x = vector.x;
this.camera.lookAt.y = vector.y;
this.camera.lookAt.z = vector.z;
this.camera.updateInstance();
//console.log(vector.x);
return null;
//@ sourceURL=mouseMove.js

41
mccud019kb.js Normal file
View File

@ -0,0 +1,41 @@
if (this.parentEntity === data.entity) {
console.log('my entity loaded :)');
} else {
return;
}
this.enemies = [];
/**
* Min and max spawn time is in seconds
*/
GameLib.D3.CustomCode.MIN_SPAWN_TIME = 1;
GameLib.D3.CustomCode.MAX_SPAWN_TIME = 4;
this.beforeRender = GameLib.EntityManager.Instance.findComponentById('dywmtohrda');
//this.materialRusted = GameLib.EntityManager.Instance.findComponentById('0mrd2dx5np');
GameLib.Event.Emit(
GameLib.Event.GET_GRAPHICS_IMPLEMENTATION,
null,
function(graphics) {
this.graphics = graphics
}.bind(this)
);
if (
!this.beforeRender
) {
console.error('components not available at runtime', this);
}
/**
* Updates the displacement scale of materialRusted
*/
//this.updateMaterialRusted = function(totalTime) {
// this.materialRusted.displacementScale = Math.sin(totalTime);
// this.materialRusted.updateInstance();
//}
return null;
//# sourceURL=entityLoaded.js

View File

@ -1,8 +0,0 @@
this.beforeRender = GameLib.EntityManager.Instance.findComponentById('dywmtohrda');
this.entityLoaded = GameLib.EntityManager.Instance.findComponentById('mccud019kb');
this.beforeRender.entityLoaded = this.entityLoaded;
return null;
//@ sourceURL=gameStart.js

10
ongcnzdgae.js Normal file
View File

@ -0,0 +1,10 @@
this.stopSpawnBullet = function() {
this.beforeRender = GameLib.EntityManager.Instance.findComponentById('dywmtohrda');
this.beforeRender.spawningBullets = false;
}
this.stopSpawnBullet();
return null;
//@ sourceURL=mouseUp.js

View File

@ -1,13 +0,0 @@
if (GameLib.Utils.UndefinedOrNull(this.camera)) {
this.camera = GameLib.EntityManager.Instance.findComponentById('yv62w8sx9r');
}
if (data.event.deltaY < 0 && this.camera.fov > 30) {
this.camera.fov -= 30;
this.camera.updateInstance();
} else if (data.event.deltaY > 0 && this.camera.fov < 90) {
this.camera.fov += 30;
this.camera.updateInstance();
}
//@ sourceURL=mouseWheel.js