mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
Fix BUGZ-1131: Add Shield icon back to HUD for Metaverse users
This commit is contained in:
parent
7322ad78f5
commit
34bc71fba9
2 changed files with 3 additions and 2 deletions
|
@ -32,6 +32,7 @@ AvatarInputs* AvatarInputs::getInstance() {
|
|||
|
||||
AvatarInputs::AvatarInputs(QObject* parent) : QObject(parent) {
|
||||
_showAudioTools = showAudioToolsSetting.get();
|
||||
_showBubbleTools = showBubbleToolsSetting.get();
|
||||
auto nodeList = DependencyManager::get<NodeList>();
|
||||
auto usersScriptingInterface = DependencyManager::get<UsersScriptingInterface>();
|
||||
connect(nodeList.data(), &NodeList::ignoreRadiusEnabledChanged, this, &AvatarInputs::ignoreRadiusEnabledChanged);
|
||||
|
|
|
@ -194,8 +194,8 @@ private:
|
|||
void onAvatarEnteredIgnoreRadius();
|
||||
void onAvatarLeftIgnoreRadius();
|
||||
float _trailingAudioLoudness{ 0 };
|
||||
bool _showAudioTools { false };
|
||||
bool _showBubbleTools{ false };
|
||||
bool _showAudioTools { true };
|
||||
bool _showBubbleTools{ true };
|
||||
};
|
||||
|
||||
#endif // hifi_AvatarInputs_h
|
||||
|
|
Loading…
Reference in a new issue