mirror of
https://github.com/NotAKidoS/NAK_CVR_Mods.git
synced 2026-01-01 14:17:31 +00:00
moved folders
This commit is contained in:
parent
3b103b685e
commit
44dd36271e
12 changed files with 65 additions and 16 deletions
43
PlapPlapForAll/Components/StopHighlightPropagation.cs
Normal file
43
PlapPlapForAll/Components/StopHighlightPropagation.cs
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
using ABI_RC.Core.InteractionSystem;
|
||||
using ABI_RC.Core.InteractionSystem.Base;
|
||||
using UnityEngine;
|
||||
|
||||
namespace NAK.PlapPlapForAll;
|
||||
|
||||
public class StopHighlightPropagation : Pickupable
|
||||
{
|
||||
public override void OnGrab(InteractionContext context, Vector3 grabPoint)
|
||||
{
|
||||
// throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public override void OnDrop(InteractionContext context)
|
||||
{
|
||||
// throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public override void OnUseDown(InteractionContext context)
|
||||
{
|
||||
// throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public override void OnUseUp(InteractionContext context)
|
||||
{
|
||||
// throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public override void FlingTowardsTarget(ControllerRay controllerRay)
|
||||
{
|
||||
// throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public override bool CanPickup { get; }
|
||||
public override bool DisallowTheft { get; }
|
||||
public override float MaxGrabDistance { get; }
|
||||
public override float MaxPushDistance { get; }
|
||||
public override bool IsAutoHold { get; }
|
||||
public override bool IsObjectRotationAllowed { get; }
|
||||
public override bool IsObjectPushPullAllowed { get; }
|
||||
public override bool IsTelepathicGrabAllowed { get; }
|
||||
public override bool IsObjectUseAllowed { get; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue