Remove ParallaxVV property from ParallaxComponent (#37617)

Delete ParallaxVV
This commit is contained in:
Tayrtahn
2025-05-19 17:36:30 -04:00
committed by GitHub
parent c3e6beed85
commit 80e7711966

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