A class that is used to modify existing boss health bars. To add them, use ModBossBar instead.
More...
Inherits Terraria.ModLoader.ModType.
|
virtual void | PostDraw (SpriteBatch spriteBatch, NPC npc, BossBarDrawParams drawParams) |
| Allows you to draw things after the bar has been drawn. skipped is true if you or another mod has skipped drawing the bar (possibly hiding it or in favor of new visuals). More...
|
|
virtual bool | PreDraw (SpriteBatch spriteBatch, NPC npc, ref BossBarDrawParams drawParams) |
| Allows you to draw things before the default draw code is ran. Return false to prevent drawing the bar. Returns true by default. More...
|
|
sealed override void | SetupContent () |
| If you make a new ModType, seal this override, and call SetStaticDefaults in it. More...
|
|
virtual bool | IsLoadingEnabled (Mod mod) |
| Allows you to stop Mod.AddContent from actually adding this content. Useful for items that can be disabled by a config. More...
|
|
virtual void | Load () |
| Allows you to perform one-time loading tasks. Beware that mod content has not finished loading here, things like ModContent lookup tables or ID Sets are not fully populated. More...
|
|
virtual void | SetStaticDefaults () |
| Allows you to modify the properties after initial loading has completed. More...
|
|
virtual void | Unload () |
| Allows you to safely unload things you added in Load. More...
|
|
A class that is used to modify existing boss health bars. To add them, use ModBossBar instead.
◆ PostDraw()
virtual void Terraria.ModLoader.GlobalBossBar.PostDraw |
( |
SpriteBatch |
spriteBatch, |
|
|
NPC |
npc, |
|
|
BossBarDrawParams |
drawParams |
|
) |
| |
|
virtual |
Allows you to draw things after the bar has been drawn. skipped is true if you or another mod has skipped drawing the bar (possibly hiding it or in favor of new visuals).
- Parameters
-
spriteBatch | The spriteBatch that is drawn on |
npc | The NPC this bar is focused on |
drawParams | The draw parameters for the boss bar |
◆ PreDraw()
virtual bool Terraria.ModLoader.GlobalBossBar.PreDraw |
( |
SpriteBatch |
spriteBatch, |
|
|
NPC |
npc, |
|
|
ref BossBarDrawParams |
drawParams |
|
) |
| |
|
virtual |
Allows you to draw things before the default draw code is ran. Return false to prevent drawing the bar. Returns true by default.
- Parameters
-
spriteBatch | The spriteBatch that is drawn on |
npc | The NPC this bar is focused on |
drawParams | The draw parameters for the boss bar |
- Returns
true
for allowing drawing, false
for preventing drawing
◆ Register()
sealed override void Terraria.ModLoader.GlobalBossBar.Register |
( |
| ) |
|
|
protectedvirtual |
◆ SetupContent()
sealed override void Terraria.ModLoader.GlobalBossBar.SetupContent |
( |
| ) |
|
|
virtual |