27 lines
1012 B
C#
27 lines
1012 B
C#
// SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com>
|
|
// SPDX-FileCopyrightText: 2025 Aviu00 <93730715+Aviu00@users.noreply.github.com>
|
|
// SPDX-FileCopyrightText: 2025 Misandry <mary@thughunt.ing>
|
|
// SPDX-FileCopyrightText: 2025 Spatison <137375981+Spatison@users.noreply.github.com>
|
|
// SPDX-FileCopyrightText: 2025 gus <august.eymann@gmail.com>
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
using System.Numerics;
|
|
|
|
namespace Content.Shared._Goobstation.Overlays;
|
|
|
|
public abstract partial class BaseVisionOverlayComponent : Component
|
|
{
|
|
[DataField, ViewVariables(VVAccess.ReadOnly)]
|
|
public virtual Vector3 Tint { get; set; } = new(0.3f, 0.3f, 0.3f);
|
|
|
|
[DataField, ViewVariables(VVAccess.ReadOnly)]
|
|
public virtual float Strength { get; set; } = 2f;
|
|
|
|
[DataField, ViewVariables(VVAccess.ReadOnly)]
|
|
public virtual float Noise { get; set; } = 0.5f;
|
|
|
|
[DataField, ViewVariables(VVAccess.ReadOnly)]
|
|
public virtual Color Color { get; set; } = Color.White;
|
|
}
|