mirror of
https://github.com/overte-org/overte.git
synced 2025-04-19 13:43:49 +02:00
Merge pull request #16028 from zfox23/shieldIcon_master
RC84: Fix BUGZ-1131: Add Shield icon back to HUD for Metaverse users
This commit is contained in:
commit
26e0a5dfd8
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