mirror of
https://github.com/SunNetservers/Launchpad.git
synced 2025-07-01 21:54:44 +02:00
Makes the triangle lines connect properly to their base
This commit is contained in:
@ -149,7 +149,7 @@ public class ParticleSpawner implements Runnable {
|
||||
}
|
||||
|
||||
Location topLocation = location.clone().add(pyramidVectors[0]);
|
||||
for (double x = 0; x <= 1; x += particleDensity) {
|
||||
for (double x = 0; x <= 1.2; x += particleDensity) {
|
||||
spawnParticle(world, topLocation.clone().add(pyramidVectors[1].clone().multiply(x)));
|
||||
spawnParticle(world, topLocation.clone().add(pyramidVectors[2].clone().multiply(x)));
|
||||
spawnParticle(world, topLocation.clone().add(pyramidVectors[3].clone().multiply(x)));
|
||||
|
Reference in New Issue
Block a user