mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-09 12:54:51 +00:00
72 lines
1.7 KiB
C#
72 lines
1.7 KiB
C#
using QuantumUNET;
|
|
using System;
|
|
using UnityEngine;
|
|
|
|
namespace QSB.Animation
|
|
{
|
|
public class CrouchSync : QSBNetworkBehaviour
|
|
{
|
|
public AnimFloatParam CrouchParam { get; } = new AnimFloatParam();
|
|
|
|
private const float CrouchSendInterval = 0.1f;
|
|
private const float CrouchChargeThreshold = 0.01f;
|
|
private const float CrouchSmoothTime = 0.05f;
|
|
private const int CrouchLayerIndex = 1;
|
|
|
|
private float _sendTimer;
|
|
private float _lastSentJumpChargeFraction;
|
|
|
|
private AnimationSync _animationSync;
|
|
private PlayerCharacterController _playerController;
|
|
private Animator _bodyAnim;
|
|
|
|
public void Init(AnimationSync animationSync, PlayerCharacterController playerController, Animator bodyAnim)
|
|
{
|
|
_animationSync = animationSync;
|
|
_playerController = playerController;
|
|
_bodyAnim = bodyAnim;
|
|
}
|
|
|
|
public void Update()
|
|
{
|
|
if (IsLocalPlayer)
|
|
{
|
|
SyncLocalCrouch();
|
|
return;
|
|
}
|
|
SyncRemoteCrouch();
|
|
}
|
|
|
|
private void SyncLocalCrouch()
|
|
{
|
|
if (_playerController == null)
|
|
{
|
|
return;
|
|
}
|
|
_sendTimer += Time.unscaledDeltaTime;
|
|
if (_sendTimer < CrouchSendInterval)
|
|
{
|
|
return;
|
|
}
|
|
var jumpChargeFraction = _playerController.GetJumpChargeFraction();
|
|
if (Math.Abs(jumpChargeFraction - _lastSentJumpChargeFraction) < CrouchChargeThreshold)
|
|
{
|
|
return;
|
|
}
|
|
_animationSync.SendCrouch(jumpChargeFraction);
|
|
_lastSentJumpChargeFraction = jumpChargeFraction;
|
|
_sendTimer = 0;
|
|
}
|
|
|
|
private void SyncRemoteCrouch()
|
|
{
|
|
if (_bodyAnim == null)
|
|
{
|
|
return;
|
|
}
|
|
CrouchParam.Smooth(CrouchSmoothTime);
|
|
var jumpChargeFraction = CrouchParam.Current;
|
|
_bodyAnim.SetLayerWeight(CrouchLayerIndex, jumpChargeFraction);
|
|
}
|
|
}
|
|
} |