quantum-space-buddies/QSB/Player/PlayerInfoParts/Animation.cs
2022-06-02 11:29:17 +01:00

16 lines
561 B
C#

using QSB.Animation.Player;
using QSB.Animation.Player.Thrusters;
using QSB.PlayerBodySetup.Remote;
namespace QSB.Player;
public partial class PlayerInfo
{
public bool Visible => IsLocalPlayer || _ditheringAnimator == null || _ditheringAnimator.FullyVisible;
public AnimationSync AnimationSync { get; }
public JetpackAccelerationSync JetpackAcceleration { get; set; }
internal QSBDitheringAnimator _ditheringAnimator;
public DreamWorldSpawnAnimator DreamWorldSpawnAnimator { get; set; }
public RemotePlayerFluidDetector FluidDetector { get; set; }
}