Update: CC - Before Render - Moorcow (72d6a2a3kc.js) 758 bytes modified

beta.r3js.org
-=yb4f310 2017-11-14 09:07:50 +01:00
parent 01b34a3abe
commit c2a718d78c
1 changed files with 32 additions and 0 deletions

View File

@ -12,6 +12,8 @@ if (GameLib.Utils.UndefinedOrNull(this.initialized)) {
this.parcel = this.entityLoaded.parcel;
this.santa = this.entityLoaded.santa;
this.renderer = this.entityLoaded.renderer;
this.raycaster = this.entityLoaded.raycaster;
this.toBlack = new THREE.Color(0.05, 0.05, 0.05);
this.bull.instance.visible = false;
this.star.instance.visible = false;
@ -164,11 +166,41 @@ this.totalTime += data.delta;
this.spawnTime += data.delta;
if (this.mouseIsDown) {
this.renderer.clearColor.r += 0.01;
if (this.renderer.clearColor.r > 1) {
this.renderer.clearColor.r = 1;
}
this.renderer.updateInstance('clearColor');
var intersects = this.raycaster.getIntersectedObjects(this.scene.meshes);
intersects.map(
function(intersect) {
var mesh = intersect.mesh;
if (
mesh.id !== 'ykfzwmaw9j' && //crosshair
mesh.id !== 't3uije6lwm' && //floor
mesh.id !== 'x4rhvbj8cn' && //flamethrower
mesh.id !== 'xztyfgwq7i' && //skybox
mesh.name.indexOf('Stone') === -1 //stones
) {
if (mesh.instance.material instanceof Array) {
mesh.instance.material.map(
function(material) {
material.color.sub(this.toBlack);
}
);
} else {
mesh.instance.material.color.sub(this.toBlack);
}
}
}.bind(this)
);
} else {
this.renderer.clearColor.r -= 0.01;
if (this.renderer.clearColor.r < 0) {