Home | History | Annotate | Download | only in effect

Lines Matching refs:shockwave

52                             shockwave;
204 shockwave = new ParticleEmitter("Shockwave", Type.Triangle, 1 * COUNT_FACTOR);
205 // shockwave.setRandomAngle(true);
206 shockwave.setFaceNormal(Vector3f.UNIT_Y);
207 shockwave.setStartColor(new ColorRGBA(.48f, 0.17f, 0.01f, (float) (.8f / COUNT_FACTOR_F)));
208 shockwave.setEndColor(new ColorRGBA(.48f, 0.17f, 0.01f, 0f));
210 shockwave.setStartSize(0f);
211 shockwave.setEndSize(7f);
213 shockwave.setParticlesPerSec(0);
214 shockwave.setGravity(0, 0, 0);
215 shockwave.setLowLife(0.5f);
216 shockwave.setHighLife(0.5f);
217 shockwave.setInitialVelocity(new Vector3f(0, 0, 0));
218 shockwave.setVelocityVariation(0f);
219 shockwave.setImagesX(1);
220 shockwave.setImagesY(1);
222 mat.setTexture("Texture", assetManager.loadTexture("Effects/Explosion/shockwave.png"));
223 shockwave.setMaterial(mat);
224 explosionEffect.attachChild(shockwave);
253 shockwave.emitAllParticles();
273 shockwave.killAllParticles();