Class PlayingFootstepEventArgs
Contains all information before the footsteps are being shown to SCP-939.
public class PlayingFootstepEventArgs : IScp939Event, IPlayerEvent, IDeniableEvent, IExiledEvent
- Inheritance
-
PlayingFootstepEventArgs
- Implements
- Inherited Members
- Extension Methods
Constructors
PlayingFootstepEventArgs(Player, Player, bool)
Initializes a new instance of the PlayingFootstepEventArgs class.
public PlayingFootstepEventArgs(Player target, Player player, bool isAllowed = true)
Parameters
target
PlayerThe player who's being shown to SCP-939.
player
PlayerThe player who's controlling SCP-939.
isAllowed
boolIndicates whether the footstep action is allowed.
Properties
IsAllowed
Gets or sets a value indicating whether footsteps are visible.
public bool IsAllowed { get; set; }
Property Value
Player
Gets the player who's controlling SCP-939.
public Player Player { get; }
Property Value
Scp939
Gets the Scp939Role triggering the event.
public Scp939Role Scp939 { get; }
Property Value
Target
Gets the player who's being shown to SCP-939.
public Player Target { get; }