mirror of
https://github.com/AleziaKurdis/Overte-community-apps.git
synced 2025-04-06 06:33:09 +02:00
Merge pull request #55 from Armored-Dragon/nametag-fixes
Fixed nametags appearing when disabled.
This commit is contained in:
commit
96f7d4be23
1 changed files with 1 additions and 13 deletions
|
@ -18,6 +18,7 @@ const logs = (info) => console.log("[NAMETAGS] " + info);
|
|||
AvatarManager.avatarAddedEvent.connect(reset);
|
||||
|
||||
function reset() {
|
||||
if (!visible) return;
|
||||
clear();
|
||||
startup();
|
||||
}
|
||||
|
@ -131,19 +132,6 @@ function scriptEnding() {
|
|||
tablet.removeButton(tabletButton);
|
||||
Menu.removeMenuItem("View", "Nametags");
|
||||
}
|
||||
function setVisible(visible) {
|
||||
if (visible !== isVisible) {
|
||||
isVisible = visible;
|
||||
if (isVisible) {
|
||||
startUpdating();
|
||||
} else {
|
||||
stopUpdating();
|
||||
}
|
||||
if (button) {
|
||||
button.editProperties({ isActive: isVisible });
|
||||
}
|
||||
}
|
||||
}
|
||||
function toggleState() {
|
||||
visible = !visible;
|
||||
|
||||
|
|
Loading…
Reference in a new issue