mirror of
https://github.com/TotalFreedomMC/PlayerParticles.git
synced 2025-08-08 05:22:58 +00:00
Moved GUI icon settings to individual effect/style config files
This commit is contained in:
parent
b5b87853f4
commit
ecfec5354c
40 changed files with 316 additions and 190 deletions
|
@ -6,6 +6,7 @@ import dev.esophose.playerparticles.particles.ParticleEffect;
|
|||
import dev.esophose.playerparticles.particles.ParticlePair;
|
||||
import dev.esophose.playerparticles.util.MathL;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
import org.bukkit.Location;
|
||||
|
||||
|
@ -97,6 +98,11 @@ public class ParticleStyleInvocation extends DefaultParticleStyle {
|
|||
this.circleStep = (this.circleStep + 1) % this.numSteps;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected List<String> getGuiIconMaterialNames() {
|
||||
return Arrays.asList("ENDER_EYE", "EYE_OF_ENDER");
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void setDefaultSettings(CommentedFileConfiguration config) {
|
||||
this.setIfNotExists("spinning-points", 6, "The number of points that spin around the circle in each direction");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue