Initial Commit: CC - Flame Particle Process - Forward Only (1jcd3sg3gh.js)

beta.r3js.org
-=yb4f310 2017-11-12 14:00:30 +01:00
parent e2a82464fa
commit e8bf3fb688
1 changed files with 32 additions and 0 deletions

32
1jcd3sg3gh.js Normal file
View File

@ -0,0 +1,32 @@
if (!this.entityLoaded) {
return;
}
var texture = GameLib.EntityManager.Instance.findComponentById('etff15p48k');
if (!this.initialized) {
texture.offset.x = 0;
texture.offset.y = 0;
texture.updateInstance();
this.initialized = true;
return;
}
texture.offset.x += 0.1;
if (texture.offset.x >= 0.9) {
if (texture.offset.y >= 0.8) {
texture.offset.x = 0;
texture.offset.y = 0;
} else {
texture.offset.x = 0;
texture.offset.y += 0.2;
}
}
texture.instance.offset.x = texture.offset.x;
texture.instance.offset.y = texture.offset.y;
//texture.updateInstance();
return null;
//@ sourceURL=textureBeforeRender.js