From 4d4040f5ea80963bcdc8d658b1d14e713c8f5034 Mon Sep 17 00:00:00 2001 From: -=yb4f310 Date: Thu, 8 Mar 2018 11:44:29 +0100 Subject: [PATCH] Initial Commit: CC - SnailRunner - Before Render (m0ee24mqoy.js) --- m0ee24mqoy.js | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 m0ee24mqoy.js diff --git a/m0ee24mqoy.js b/m0ee24mqoy.js new file mode 100644 index 0000000..eedefa6 --- /dev/null +++ b/m0ee24mqoy.js @@ -0,0 +1,38 @@ +if (!this.entityLoaded) { + return; +} + +if (!this.initialized) { + + /** + * Meshes + */ + this.road = this.entityLoaded.road; + this.cloud = this.entityLoaded.cloud; + + this.time = 0; + +// this.spawnCloud = function() { +// this.cloud.position.x = 5; +// this.cloud.position.z = (Math.random() * 0.2) - 0.1 +// this.cloud.updateInstance('position'); +// } + + this.initialized = true; +} + + +//this.road.rotation.z += 0.004 * data.delta; +//this.road.updateInstance('rotation'); + +//this.cloud.position.x -= data.delta; +//this.cloud.updateInstance('position'); + +this.time += data.delta; + +if (this.time > 5) { +// this.spawnCloud(); + this.time = 0; +} + +//@ sourceURL=beforeRender.js \ No newline at end of file