Label::drawDistance
Shared
Update the draw distance of the selected label
Syntax
label.drawDistance = distance;
- distance - Number
Examples
Updates the draw distance of the label through the command /labeldistance
Server-Side
let startLabel = mp.labels.new("Use /labeldistance to update the color of this label.", new mp.Vector3(-431.88, 1146.86, 327),
{
los: false,
font: 1,
drawDistance: 100,
});
mp.events.addCommand("labeldistance", (player, _, dist) => {
startLabel.drawDistance = parseInt(dist);
player.outputChatBox(`You have updated the draw distance of the label to: ${dist}`);
});