Lines Matching full:roundspark
51 private ParticleEmitter flame, flash, spark, roundspark, smoketrail, debris,
113 roundspark = new ParticleEmitter("RoundSpark", EMITTER_TYPE, 20 * COUNT_FACTOR);
114 roundspark.setStartColor(new ColorRGBA(1f, 0.29f, 0.34f, (float) (1.0 / COUNT_FACTOR_F)));
115 roundspark.setEndColor(new ColorRGBA(0, 0, 0, (float) (0.5f / COUNT_FACTOR_F)));
116 roundspark.setStartSize(1.2f);
117 roundspark.setEndSize(1.8f);
118 roundspark.setShape(new EmitterSphereShape(Vector3f.ZERO, 2f));
119 roundspark.setParticlesPerSec(0);
120 roundspark.setGravity(0, -.5f, 0);
121 roundspark.setLowLife(1.8f);
122 roundspark.setHighLife(2f);
123 roundspark.setInitialVelocity(new Vector3f(0, 3, 0));
124 roundspark.setVelocityVariation(.5f);
125 roundspark.setImagesX(1);
126 roundspark.setImagesY(1);
128 mat.setTexture("Texture", assetManager.loadTexture("Effects/Explosion/roundspark.png"));
130 roundspark.setMaterial(mat);
131 explosionEffect.attachChild(roundspark);
258 roundspark.emitAllParticles();
272 roundspark.killAllParticles();