Remove ParallaxVV property from ParallaxComponent (#37617)
Delete ParallaxVV
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user