Update: CC - Demo New - Key Up (194yv3pctj.js) 280 bytes modified

beta.r3js.org
-=yb4f310 2018-02-12 12:06:24 +01:00
parent 6cdfa37231
commit 83040f23e6
1 changed files with 12 additions and 0 deletions

View File

@ -2,10 +2,20 @@ if (!this.entityLoaded) {
return;
}
this.initialized = false;
if (!this.initialized) {
this.imageSpoon = this.entityLoaded.imageSpoon;
this.imageEarth = this.entityLoaded.imageEarth;
this.meshBox = this.entityLoaded.meshBox;
this.instancedGeometry = this.entityLoaded.instancedGeometry;
this.instancedGeometry.instance.attributes.position = this.boxGeometry.instance.attributes.position;
this.initialized = true;
console.log('key up initialized');
}
@ -13,6 +23,8 @@ if (data.code === 'KeyL') {
var heightData = this.imageSpoon.getHeightData();
var instances = 128 * 128;
console.log('got data');
}