mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-16 17:33:12 +01:00
27 lines
826 B
Java
27 lines
826 B
Java
|
package de.ellpeck.naturesaura;
|
||
|
|
||
|
import net.minecraftforge.common.config.Config;
|
||
|
import net.minecraftforge.common.config.Config.Comment;
|
||
|
import net.minecraftforge.common.config.Config.RangeDouble;
|
||
|
|
||
|
@Config(modid = NaturesAura.MOD_ID, category = "")
|
||
|
public final class ModConfig {
|
||
|
|
||
|
public static General general = new General();
|
||
|
public static Client client = new Client();
|
||
|
|
||
|
public static class General {
|
||
|
|
||
|
}
|
||
|
|
||
|
public static class Client {
|
||
|
|
||
|
@Comment("The percentage of particles that should be displayed, where 1 is 100% and 0 is 0%.")
|
||
|
@RangeDouble(min = 0, max = 1)
|
||
|
public double particleAmount = 1;
|
||
|
|
||
|
@Comment("If particle spawning should respect the particle setting in Minecraft's video settings screen")
|
||
|
public boolean respectVanillaParticleSettings = true;
|
||
|
}
|
||
|
}
|