Files
tbd-station-14/Content.Shared/Examine/ExaminerComponent.cs
Leon Friedrich 6f4bb040e4 Misc stealth and box changes (#11809)
* git mv

* Disable shader while box is open

* Hide entity menu / prevent examine

* fix recursion fix recursion fix recursion fix recursion

* Better visibility checks

* min and max visibility fields

* fix reference point
2022-10-14 23:15:25 -05:00

18 lines
498 B
C#

namespace Content.Shared.Examine
{
/// <summary>
/// Component required for a player to be able to examine things.
/// </summary>
[RegisterComponent]
public sealed class ExaminerComponent : Component
{
[ViewVariables(VVAccess.ReadWrite)]
[DataField("skipChecks")]
public bool SkipChecks = false;
[ViewVariables(VVAccess.ReadWrite)]
[DataField("checkInRangeUnOccluded")]
public bool CheckInRangeUnOccluded = true;
}
}