r3-custom-code/zjq6ach3jt.js

28 lines
376 B
JavaScript
Raw Normal View History

if (!this.entityLoaded) {
return;
}
if (!this.initialized) {
this.state = this.entityLoaded.state;
this.initialized = true;
}
if (this.state.exploding) {
this.waitReload(data.delta);
/**
* Wait until finished exploding
*/
return;
}
this.advanceSnake(data.delta);
this.createFood(data.delta);
this.createPowerup(data.delta);
//@ sourceURL=beforeRender.js