Add setting for goal box color
This commit is contained in:
parent
111e03c5b8
commit
1cf4c9419f
@ -434,6 +434,11 @@ public class Settings {
|
|||||||
*/
|
*/
|
||||||
public Setting<Color> colorMostRecentConsidered = new Setting<>(Color.CYAN);
|
public Setting<Color> colorMostRecentConsidered = new Setting<>(Color.CYAN);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The color of the goal box
|
||||||
|
*/
|
||||||
|
public Setting<Color> colorGoalBox = new Setting<>(Color.GREEN);
|
||||||
|
|
||||||
public final Map<String, Setting<?>> byLowerName;
|
public final Map<String, Setting<?>> byLowerName;
|
||||||
public final List<Setting<?>> allSettings;
|
public final List<Setting<?>> allSettings;
|
||||||
|
|
||||||
|
@ -385,7 +385,7 @@ public final class PathingBehavior extends Behavior implements IPathingBehavior,
|
|||||||
// System.out.println(event.getPartialTicks());
|
// System.out.println(event.getPartialTicks());
|
||||||
float partialTicks = event.getPartialTicks();
|
float partialTicks = event.getPartialTicks();
|
||||||
if (goal != null && Baritone.settings().renderGoal.value) {
|
if (goal != null && Baritone.settings().renderGoal.value) {
|
||||||
PathRenderer.drawLitDankGoalBox(player(), goal, partialTicks, Color.GREEN);
|
PathRenderer.drawLitDankGoalBox(player(), goal, partialTicks, Baritone.settings().colorGoalBox.get());
|
||||||
}
|
}
|
||||||
if (!Baritone.settings().renderPath.get()) {
|
if (!Baritone.settings().renderPath.get()) {
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user