]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Remove `ParallaxVV` property from `ParallaxComponent` (#37617)
authorTayrtahn <tayrtahn@gmail.com>
Mon, 19 May 2025 21:36:30 +0000 (17:36 -0400)
committerGitHub <noreply@github.com>
Mon, 19 May 2025 21:36:30 +0000 (17:36 -0400)
Delete ParallaxVV

Content.Shared/Parallax/ParallaxComponent.cs

index 5df38eec4d226c3a1b443bdd171e75c10cea22f3..f5d44f90604fca54fef921bd436c566f192ed716 100644 (file)
@@ -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<IEntityManager>().Dirty(this);
-        }
-    }
 }