mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-01 03:32:38 +00:00
14 lines
429 B
C#
14 lines
429 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;
|
|||
|
}
|