sdraw_mods_cvr/ml_bft/Utils.cs
SDraw 2aaac8f7bd
New mod: Better Fingers Tracking
Default muscles values to zero
Embedding of debug symbols
2024-03-25 14:19:06 +03:00

15 lines
737 B
C#

using ABI_RC.Core.UI;
using ABI_RC.Systems.InputManagement;
using System.Reflection;
namespace ml_bft
{
static class Utils
{
static readonly FieldInfo ms_view = typeof(CohtmlControlledViewWrapper).GetField("_view", BindingFlags.NonPublic | BindingFlags.Instance);
static public void ExecuteScript(this CohtmlControlledViewWrapper p_instance, string p_script) => ((cohtml.Net.View)ms_view.GetValue(p_instance)).ExecuteScript(p_script);
public static bool AreKnucklesInUse() => ((CVRInputManager.Instance._leftController == ABI_RC.Systems.InputManagement.XR.eXRControllerType.Index) || (CVRInputManager.Instance._rightController == ABI_RC.Systems.InputManagement.XR.eXRControllerType.Index));
}
}