set up basic walking, running, jumping
TODO: crouching, climbing
This commit is contained in:
15
Assets/Scripts/Runtime/ConstantStrings.cs
Normal file
15
Assets/Scripts/Runtime/ConstantStrings.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using UnityEngine;
|
||||
|
||||
namespace Boxfriend
|
||||
{
|
||||
public class ConstantStrings
|
||||
{
|
||||
public const string PlayerActionMap = "Player";
|
||||
public const string InteractInput = "Interact";
|
||||
public const string JumpInput = "Jump";
|
||||
public const string MoveInput = "Move";
|
||||
public const string CrouchInput = "Crouch";
|
||||
public const string SprintInput = "Sprint";
|
||||
public const string LookInput = "Look";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user