| @@ -65,7 +65,7 @@ body.toggle-entity-name .entity-name { | |||||
| filter: drop-shadow(0px 0px 5px gold); | filter: drop-shadow(0px 0px 5px gold); | ||||
| } | } | ||||
| .entity-box:not(.selected) > img{ | |||||
| body.toggle-entity-glow .entity-box:not(.selected) > img{ | |||||
| filter: drop-shadow(0px 0px 2px white); | filter: drop-shadow(0px 0px 2px white); | ||||
| } | } | ||||
| @@ -117,6 +117,10 @@ | |||||
| <input type="checkbox" id="options-world-show-height-bars" checked=true> | <input type="checkbox" id="options-world-show-height-bars" checked=true> | ||||
| <label for="options-world-show-height-bars">Height bars</label> | <label for="options-world-show-height-bars">Height bars</label> | ||||
| </div> | </div> | ||||
| <div class="options-row"> | |||||
| <input type="checkbox" id="options-world-show-entity-glow" checked=true> | |||||
| <label for="options-world-show-entity-glow">Glowing edges</label> | |||||
| </div> | |||||
| <div class="options-label"> | <div class="options-label"> | ||||
| Auto-sizing mode | Auto-sizing mode | ||||
| @@ -967,6 +967,10 @@ document.addEventListener("DOMContentLoaded", () => { | |||||
| document.body.classList[e.target.checked ? "add" : "remove"]("toggle-height-bars"); | document.body.classList[e.target.checked ? "add" : "remove"]("toggle-height-bars"); | ||||
| }); | }); | ||||
| document.querySelector("#options-world-show-entity-glow").addEventListener("input", e => { | |||||
| document.body.classList[e.target.checked ? "add" : "remove"]("toggle-entity-glow"); | |||||
| }); | |||||
| document.querySelector("#options-order-forward").addEventListener("click", e => { | document.querySelector("#options-order-forward").addEventListener("click", e => { | ||||
| if (selected) { | if (selected) { | ||||
| entities[selected.dataset.key].priority += 1; | entities[selected.dataset.key].priority += 1; | ||||