SL-20569 Notify user when reflection probe can't be selected

master
Andrey Kleshchev 2023-11-07 23:20:40 +02:00 committed by akleshchev
parent e7b71cd8a1
commit de844bfce1
2 changed files with 30 additions and 0 deletions

View File

@ -746,6 +746,21 @@ void LLPanelVolume::sendIsLight()
LL_INFOS() << "update light sent" << LL_ENDL;
}
void notify_cant_select_reflection_probe()
{
static bool show_notification = true;
if (show_notification)
{
// show only once per session if not ignored
show_notification = false;
if (!gSavedSettings.getBOOL("SelectReflectionProbes"))
{
LLNotificationsUtil::add("CantSelectReflectionProbe");
}
// else: user used the setting, don't show again this session
}
}
void LLPanelVolume::sendIsReflectionProbe()
{
LLViewerObject* objectp = mObject;
@ -764,6 +779,7 @@ void LLPanelVolume::sendIsReflectionProbe()
}
else
{
notify_cant_select_reflection_probe();
volobjp->setIsReflectionProbe(value);
}
}
@ -780,6 +796,7 @@ void LLPanelVolume::doSendIsReflectionProbe(const LLSD & notification, const LLS
}
LLVOVolume* volobjp = (LLVOVolume*)objectp;
notify_cant_select_reflection_probe();
volobjp->setIsReflectionProbe(true);
{ // has become a reflection probe, slam to a 10m sphere and pop up a message

View File

@ -7013,6 +7013,19 @@ Please try again.
Not connected to a materials capable region.
</notification>
<notification
icon="alertmodal.tga"
name="CantSelectReflectionProbe"
type="alertmodal">
<unique/>
You have placed a reflection probe, but option for selecting reflection probes is disabled. To be able to select reflection probes enable Build &gt; Options &gt; Select Reflection Probes.
<tag>confirm</tag>
<usetemplate
ignoretext="Don't show again."
name="okignore"
yestext="OK"/>
</notification>
<notification
icon="notifytip.tga"
name="ScriptMissing"