blob: acd675c61854f76e935361c1a371b20b072e7fc1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
package at.hannibal2.skyhanni.config.features.rift;
import at.hannibal2.skyhanni.config.FeatureToggle;
import com.google.gson.annotations.Expose;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorSlider;
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption;
public class MotesOrbsConfig {
@Expose
@ConfigOption(name = "Highlight Motes Orbs", desc = "Highlight flying Motes Orbs.")
@ConfigEditorBoolean
@FeatureToggle
public boolean enabled = true;
@Expose
@ConfigOption(name = "Highlight Size", desc = "Set render size for highlighted Motes Orbs.")
@ConfigEditorSlider(minStep = 1, minValue = 1, maxValue = 5)
public int size = 3;
@Expose
@ConfigOption(name = "Hide Particles", desc = "Hide normal Motes Orbs particles.")
@ConfigEditorBoolean
@FeatureToggle
public boolean hideParticles = false;
}
|