Atmos debug helpers (#2108)

* Atmos debug overlay

* Pressure direction information

* Atmos debug overlay: show excited tiles
This commit is contained in:
20kdc
2020-09-21 00:13:17 +01:00
committed by GitHub
parent 0ea8792501
commit da463097f0
7 changed files with 416 additions and 1 deletions

View File

@@ -93,6 +93,9 @@ namespace Content.Server.Atmos
private AtmosDirection _pressureDirection;
// I'm assuming there's a good reason the original variable was made private, but this information is also important.
public AtmosDirection PressureDirectionForDebugOverlay => _pressureDirection;
[ViewVariables, UsedImplicitly]
private int PressureDirectionInt => (int)_pressureDirection;