Remove `ParallaxVV` property from `ParallaxComponent` (#37617)

Delete ParallaxVV
This commit is contained in:
Tayrtahn 2025-05-19 17:36:30 -04:00 committed by Quanteey
parent aeaa5d8444
commit ecb49f3eb2
1 changed files with 0 additions and 13 deletions

View 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);
}
}
}