Update: entity_loaded (2c1eswtjvb.js) 8 bytes modified

beta.r3js.org
cybafelo 2019-06-23 11:44:33 +00:00
parent 761f629616
commit 04c17e3ea4
1 changed files with 4 additions and 4 deletions

View File

@ -21,12 +21,12 @@ R3.CustomCode.prototype.render = function(delta) {
this.y += delta;
this.innerCircle.rotation.y += Math.sin(this.y) * 0.15;
this.innerCircle.updateInstance('rotation');
// this.innerCircle.rotation.y += Math.sin(this.y) * 0.15;
// this.innerCircle.updateInstance('rotation');
this.outerCircle.rotation.y -= Math.cos(this.y) * 0.15;
this.outerCircle.updateInstance('rotation');
// this.outerCircle.rotation.y -= Math.cos(this.y) * 0.15;
// this.outerCircle.updateInstance('rotation');
}
return null;