From: Tayrtahn Date: Mon, 19 May 2025 21:36:30 +0000 (-0400) Subject: Remove `ParallaxVV` property from `ParallaxComponent` (#37617) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=80e7711966df2dcba7749a4632def0666a0eae03;p=space-station-14.git Remove `ParallaxVV` property from `ParallaxComponent` (#37617) Delete ParallaxVV --- diff --git a/Content.Shared/Parallax/ParallaxComponent.cs b/Content.Shared/Parallax/ParallaxComponent.cs index 5df38eec4d..f5d44f9060 100644 --- a/Content.Shared/Parallax/ParallaxComponent.cs +++ b/Content.Shared/Parallax/ParallaxComponent.cs @@ -12,17 +12,4 @@ public sealed partial class ParallaxComponent : Component // I wish I could use a typeserializer here but parallax is extremely client-dependent. [DataField, AutoNetworkedField] public string Parallax = "Default"; - - [UsedImplicitly, ViewVariables(VVAccess.ReadWrite)] - // ReSharper disable once InconsistentNaming - public string ParallaxVV - { - get => Parallax; - set - { - if (value.Equals(Parallax)) return; - Parallax = value; - IoCManager.Resolve().Dirty(this); - } - } }