mirror of
https://github.com/SunNetservers/Launchpad.git
synced 2024-12-05 01:43:15 +01:00
Makes the triangle lines connect properly to their base
This commit is contained in:
parent
e528ce96b5
commit
83c4771a65
@ -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)));
|
||||
|
Loading…
Reference in New Issue
Block a user