quantum-space-buddies/QSB/Player/PlayerInfoParts/Animation.cs

14 lines
429 B
C#
Raw Normal View History

2022-03-24 15:02:31 +00:00
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;
}