Added new options for visibilties on nameplate.
This commit is contained in:
@@ -1144,6 +1144,26 @@ public class SettingsUi : WindowMediatorSubscriberBase
|
||||
|
||||
}
|
||||
|
||||
var showOwn = _configService.Current.LightfinderLabelShowOwn;
|
||||
if (ImGui.Checkbox("Show your own Lightfinder indicator", ref showOwn))
|
||||
{
|
||||
_configService.Current.LightfinderLabelShowOwn = showOwn;
|
||||
_configService.Save();
|
||||
_nameplateHandler.FlagRefresh();
|
||||
_nameplateService.RequestRedraw();
|
||||
}
|
||||
_uiShared.DrawHelpText("Toggles your own Lightfinder indicator.");
|
||||
|
||||
var showPaired = _configService.Current.LightfinderLabelShowPaired;
|
||||
if (ImGui.Checkbox("Show paired player(s) Lightfinder indicator", ref showPaired))
|
||||
{
|
||||
_configService.Current.LightfinderLabelShowPaired = showPaired;
|
||||
_configService.Save();
|
||||
_nameplateHandler.FlagRefresh();
|
||||
_nameplateService.RequestRedraw();
|
||||
}
|
||||
_uiShared.DrawHelpText("Toggles paired player(s) Lightfinder indicator.");
|
||||
|
||||
var useIcon = _configService.Current.LightfinderLabelUseIcon;
|
||||
if (ImGui.Checkbox("Show icon instead of text", ref useIcon))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user