trouble-in-terror-town/Assets/Scripts/Player/Character/CharacterReffrenceHub.cs
Mikolaj f9dca9cddb update engine version and fixed AddForce movement
I updated engine to 2021.3.1f1 LTS and got AddForce movement properly (I like it), next up is springing, crouching, jumping and .... ladders
2022-04-24 23:09:06 +02:00

16 lines
551 B
C#

using UnityEngine;
namespace TTTSC.Player.Character
{
public class CharacterReffrenceHub : MonoBehaviour
{
public Rigidbody characterRigidbody;
public PlayerStateEnforcer playerStateEnforcrer;
public PlayerStateMachine playerStateMachine;
public Controller.CharacterMovementConfig characterMovementConfig;
public Controller.CharacterStateMachine characterStateMachine;
public Controller.PlayerInputReceiver playerInputReceiver;
public Controller.CharacterHover characterHover;
}
}