mirror of
https://github.com/NotAKidoS/NAK_CVR_Mods.git
synced 2025-09-04 15:29:22 +00:00
Move many mods to Deprecated folder, fix spelling
This commit is contained in:
parent
5e822cec8d
commit
0042590aa6
539 changed files with 7475 additions and 3120 deletions
42
.Deprecated/SuperAwesomeMod/Interaction/CVRPlayerHand.cs
Normal file
42
.Deprecated/SuperAwesomeMod/Interaction/CVRPlayerHand.cs
Normal file
|
@ -0,0 +1,42 @@
|
|||
using ABI_RC.Core.InteractionSystem;
|
||||
using ABI_RC.Core.InteractionSystem.Base;
|
||||
using ABI_RC.Systems.InputManagement;
|
||||
using UnityEngine;
|
||||
using UnityEngine.Serialization;
|
||||
|
||||
namespace ABI_RC.Core.Player.Interaction
|
||||
{
|
||||
public class CVRPlayerHand : MonoBehaviour
|
||||
{
|
||||
#region Fields
|
||||
|
||||
[SerializeField]
|
||||
private CVRHand _hand;
|
||||
|
||||
// Pickup rig
|
||||
[SerializeField] private Transform rayDirection;
|
||||
[SerializeField] private Transform _attachmentPoint;
|
||||
[SerializeField] private Transform _pivotPoint;
|
||||
[SerializeField] private VelocityTracker _velocityTracker;
|
||||
|
||||
// Pickup state
|
||||
private bool _isHoldingObject;
|
||||
private Pickupable _heldPickupable;
|
||||
private Pickupable _proximityPickupable;
|
||||
|
||||
#endregion Fields
|
||||
|
||||
#region Unity Events
|
||||
|
||||
|
||||
#endregion Unity Events
|
||||
|
||||
#region Private Methods
|
||||
|
||||
#endregion Private Methods
|
||||
|
||||
#region Public Methods
|
||||
|
||||
#endregion Public Methods
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue