mirror of
https://github.com/haselkern/Minecraft-ArmorStand.git
synced 2025-05-17 15:05:33 +00:00
added marker tag
This commit is contained in:
parent
a0b7cc4a2f
commit
6736163292
2 changed files with 5 additions and 0 deletions
|
@ -52,6 +52,7 @@
|
||||||
<label><input type="checkbox" name="nogravity">No Gravity</label><br>
|
<label><input type="checkbox" name="nogravity">No Gravity</label><br>
|
||||||
<label><input type="checkbox" name="showarms">Show Arms</label><br>
|
<label><input type="checkbox" name="showarms">Show Arms</label><br>
|
||||||
<label><input type="checkbox" name="small">Small</label><br>
|
<label><input type="checkbox" name="small">Small</label><br>
|
||||||
|
<label><input type="checkbox" name="marker">Marker</label><br>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="padding underline">
|
<div class="padding underline">
|
||||||
|
|
|
@ -39,6 +39,7 @@ var noBasePlate = false;
|
||||||
var noGravity = false;
|
var noGravity = false;
|
||||||
var showArms = false;
|
var showArms = false;
|
||||||
var small = false;
|
var small = false;
|
||||||
|
var marker = false;
|
||||||
|
|
||||||
var useEquipment;
|
var useEquipment;
|
||||||
var equipHandRight;
|
var equipHandRight;
|
||||||
|
@ -272,6 +273,7 @@ function handleInput(){
|
||||||
noGravity = getCheckBoxInput("nogravity");
|
noGravity = getCheckBoxInput("nogravity");
|
||||||
showArms = getCheckBoxInput("showarms");
|
showArms = getCheckBoxInput("showarms");
|
||||||
small = getCheckBoxInput("small");
|
small = getCheckBoxInput("small");
|
||||||
|
marker = getCheckBoxInput("marker");
|
||||||
|
|
||||||
useEquipment = getCheckBoxInput("useequipment");
|
useEquipment = getCheckBoxInput("useequipment");
|
||||||
equipHandRight = getInput("equipHandRight");
|
equipHandRight = getInput("equipHandRight");
|
||||||
|
@ -417,6 +419,8 @@ function generateCode(){
|
||||||
tags.push("ShowArms:1b");
|
tags.push("ShowArms:1b");
|
||||||
if(small)
|
if(small)
|
||||||
tags.push("Small:1b");
|
tags.push("Small:1b");
|
||||||
|
if(marker)
|
||||||
|
tags.push("Marker:1b");
|
||||||
|
|
||||||
//Sliders
|
//Sliders
|
||||||
if(rotation != 0)
|
if(rotation != 0)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue