Display short url and normal one, small changes and fixes

This commit is contained in:
Natsumi
2021-12-06 02:08:36 +13:00
parent 78bc71bd6b
commit b998e04274
4 changed files with 67 additions and 34 deletions

View File

@@ -211,9 +211,14 @@ namespace VRCX
}
}
public void SetVR(bool active, bool hmdOverlay, bool wristOverlay)
public void SetVR(bool active, bool hmdOverlay, bool wristOverlay, bool menuButton)
{
VRCXVR.Instance.SetActive(active, hmdOverlay, wristOverlay);
VRCXVR.Instance.SetActive(active, hmdOverlay, wristOverlay, menuButton);
}
public void TriggerLeftHand()
{
VRCXVR.Instance.TriggerLeftHand();
}
public void RefreshVR()