mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2024-12-29 03:28:26 +00:00
16 lines
561 B
C#
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; }
|
|
}
|