Space Kudzu (#5472)

This commit is contained in:
Moony
2021-11-28 20:25:36 -06:00
committed by GitHub
parent 30c87ca6b2
commit 9075cf6163
30 changed files with 617 additions and 42 deletions

View File

@@ -71,17 +71,22 @@ namespace Content.Shared.DrawDepth
Doors = DrawDepthTag.Default + 5,
/// <summary>
/// Stuff that needs to draw over most things, but not effects, like Kudzu.
/// </summary>
Overdoors = DrawDepthTag.Default + 6,
/// <summary>
/// Explosions, fire, melee swings. Whatever.
/// </summary>
Effects = DrawDepthTag.Default + 6,
Effects = DrawDepthTag.Default + 7,
Ghosts = DrawDepthTag.Default + 7,
Ghosts = DrawDepthTag.Default + 8,
/// <summary>
/// Use this selectively if it absolutely needs to be drawn above (almost) everything else. Examples include
/// the pointing arrow, the drag & drop ghost-entity, and some debug tools.
/// </summary>
Overlays = DrawDepthTag.Default + 8,
Overlays = DrawDepthTag.Default + 9,
}
}