mirror of
https://github.com/AleziaKurdis/Overte-community-apps.git
synced 2025-04-06 06:33:09 +02:00
VR fix.
No longer creates own name tag in First person or in VR.
This commit is contained in:
parent
39e6dcb07b
commit
4e6da69354
1 changed files with 17 additions and 7 deletions
|
@ -7,20 +7,30 @@ let user_nametags = {};
|
|||
let user_uuids = [];
|
||||
let visible = Settings.getValue("Nametags_toggle", true);
|
||||
let maximum_name_length = 50;
|
||||
let last_camera_mode = Camera.mode;
|
||||
|
||||
const logs = (info) => console.log("[NAMETAGS] " + info);
|
||||
|
||||
// New user connected
|
||||
AvatarManager.avatarAddedEvent.connect(() => {
|
||||
Script.setTimeout(() => {
|
||||
clear();
|
||||
startup();
|
||||
}, 1000);
|
||||
});
|
||||
AvatarManager.avatarAddedEvent.connect(reset);
|
||||
|
||||
Script.setInterval(() => {
|
||||
if (last_camera_mode !== Camera.mode) {
|
||||
reset();
|
||||
last_camera_mode = Camera.mode;
|
||||
}
|
||||
}, 2000);
|
||||
|
||||
function reset() {
|
||||
clear();
|
||||
startup();
|
||||
}
|
||||
|
||||
function startup() {
|
||||
const include_self = !HMD.active && !Camera.mode.includes("first person");
|
||||
|
||||
user_uuids = AvatarList.getAvatarIdentifiers();
|
||||
user_uuids.push(MyAvatar.sessionUUID);
|
||||
if (include_self) user_uuids.push(MyAvatar.sessionUUID);
|
||||
user_uuids = user_uuids.filter((uuid) => uuid); // Remove empty, undefined values from array
|
||||
|
||||
user_uuids.forEach((avatar) => {
|
||||
|
|
Loading…
Reference in a new issue