Replace UltimateXR with HurricaneVR

This commit is contained in:
2024-08-08 17:01:07 +02:00
parent e8658374d6
commit fb21dbbb73
5932 changed files with 358362 additions and 2174150 deletions

View File

@@ -0,0 +1,28 @@
using HurricaneVR.Framework.Core.Grabbers;
namespace HurricaneVR.TechDemo.Scripts
{
public class DemoPassthroughSocket : HVRSocket
{
protected override void Start()
{
base.Start();
ScaleGrabbable = false;
GrabbableMustBeHeld = true;
GrabsFromHand = true;
CanRemoveGrabbable = false;
ParentDisablesGrab = true;
}
protected override void OnGrabbed(HVRGrabArgs args)
{
AllowGrabbing = false;
AllowHovering = false;
args.Cancel = true;
Grabbed.Invoke(this, args.Grabbable);
ForceRelease();
PlaySocketedSFX(args.Grabbable.Socketable);
}
}
}