Predicted gas pumps (#33717)
* Predicted gas pumps I wanted to try out atmos and first thing I found. * a * Remove details range
This commit is contained in:
25
Content.Shared/Atmos/Components/GasPressurePumpComponent.cs
Normal file
25
Content.Shared/Atmos/Components/GasPressurePumpComponent.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using Robust.Shared.GameStates;
|
||||
|
||||
namespace Content.Shared.Atmos.Components;
|
||||
|
||||
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
|
||||
public sealed partial class GasPressurePumpComponent : Component
|
||||
{
|
||||
[DataField, AutoNetworkedField]
|
||||
public bool Enabled = true;
|
||||
|
||||
[DataField("inlet")]
|
||||
public string InletName = "inlet";
|
||||
|
||||
[DataField("outlet")]
|
||||
public string OutletName = "outlet";
|
||||
|
||||
[DataField, AutoNetworkedField]
|
||||
public float TargetPressure = Atmospherics.OneAtmosphere;
|
||||
|
||||
/// <summary>
|
||||
/// Max pressure of the target gas (NOT relative to source).
|
||||
/// </summary>
|
||||
[DataField]
|
||||
public float MaxTargetPressure = Atmospherics.MaxOutputPressure;
|
||||
}
|
||||
Reference in New Issue
Block a user