Class CalmingDownEventArgs
Contains all information before SCP-096 calms down.
public class CalmingDownEventArgs : IScp096Event, IPlayerEvent, IDeniableEvent, IExiledEvent
- Inheritance
-
CalmingDownEventArgs
- Implements
- Inherited Members
- Extension Methods
Constructors
CalmingDownEventArgs(Player, bool, bool)
Initializes a new instance of the CalmingDownEventArgs class.
public CalmingDownEventArgs(Player player, bool shouldClearEnragedTimeLeft, bool isAllowed = true)
Parameters
player
PlayerThe player who's controlling SCP-096.
shouldClearEnragedTimeLeft
boolisAllowed
boolIndicates whether SCP-096 can calm down.
Properties
IsAllowed
Gets or sets a value indicating whether SCP-096 can be enraged.
public bool IsAllowed { get; set; }
Property Value
Player
Gets the player who's controlling SCP-096.
public Player Player { get; }
Property Value
Scp096
Gets the Scp096Role triggering the event.
public Scp096Role Scp096 { get; }
Property Value
ShouldClearEnragedTimeLeft
Gets or sets a value indicating whether SCP-096 enrage time left should be cleared.
public bool ShouldClearEnragedTimeLeft { get; set; }