From 80e7711966df2dcba7749a4632def0666a0eae03 Mon Sep 17 00:00:00 2001 From: Tayrtahn Date: Mon, 19 May 2025 17:36:30 -0400 Subject: [PATCH] Remove `ParallaxVV` property from `ParallaxComponent` (#37617) Delete ParallaxVV --- Content.Shared/Parallax/ParallaxComponent.cs | 13 ------------- 1 file changed, 13 deletions(-) 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); - } - } } -- 2.51.2