mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2024-12-28 18:25:18 +00:00
17 lines
613 B
C#
17 lines
613 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; }
|
|
public HelmetAnimator HelmetAnimator { get; set; }
|
|
}
|