r3-custom-code/2c1eswtjvb.js

33 lines
760 B
JavaScript
Raw Normal View History

if (data.entity === this.parentEntity) {
console.log('cyber-security.berlin entity loaded');
} else {
return;
}
/**
* Code Components
*/
this.beforeRender = R3.EntityManager.Instance.findComponentById('y2q95ipdcf');
this.innerCircle = R3.EntityManager.Instance.findComponentById('ix41c5pelj');
this.outerCircle = R3.EntityManager.Instance.findComponentById('zx8oaonomw');
this.beforeRender.entityLoaded = this;
this.y = 0;
R3.CustomCode.prototype.render = function(delta) {
this.y += delta;
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');
}
return null;
//@ sourceURL=entityLoaded.js