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,27 @@
using System;
using HurricaneVR.Framework.Components;
using UnityEditor;
using UnityEngine;
namespace HurricaneVR.Editor
{
[CustomEditor(typeof(HVRRotationLimiter))]
public class HVRRotationLimiterEditor : UnityEditor.Editor
{
protected void OnEnable()
{
}
public override void OnInspectorGUI()
{
EditorGUILayout.HelpBox("Used in conjunction with the HVRRotationTracker." +
$"{Environment.NewLine}Joint limits will be placed on the axis of rotation assigned on the tracker " +
"when the AngleFromStart reported by the tracker becomes in range of that limit.", MessageType.Info);
base.OnInspectorGUI();
}
}
}