-
Member
pools
Hello guys,
Is it possible to make the background of the healing wells in red? It always trolls me when iam searching for pools!
Imgur: The magic of the Internet
thanks in advance
-
Contributor
Yes, add something like the following into the Customize function of a configuration file, such as TurboHUD\plugins\User\PluginEnablerOrDisablerPlugin.cs:
Code:
Hud.RunOnPlugin<ShrinePlugin>(plugin => {
foreach (IWorldDecorator decorator in plugin.HealingWellDecorator.Decorators) {
if (decorator is GroundLabelDecorator) {
GroundLabelDecorator label = (GroundLabelDecorator)decorator;
label.BackgroundBrush = Hud.Render.CreateBrush(255, 255, 22, 3, 0); //reddish background color
label.TextFont = Hud.Render.CreateFont("tahoma", 6.5f, 255, 255, 255, 255, false, false, false); //white text color
break;
}
}
});
-
Post Thanks / Like - 1 Thanks
hurrikane (1 members gave Thanks to Razorfish for this useful post)
-
Member