fix: widen note lanes and clear warnings

This commit is contained in:
jongjae0305
2026-05-26 18:54:56 +09:00
parent 182d2c90b9
commit abd3c9bb36
33 changed files with 109 additions and 93 deletions
@@ -34,6 +34,7 @@ namespace VRSDK
#region PUBLIC
public VR_SDK CurrentSDK { get { return currentSDK; } }
public ControllerGestureConfig GestureConfig { get { return gestureConfig; } }
public List<VR_Interactable> InteractList { get { return interactList; } }
public List<VR_Highlight> HighlightList { get { return highlightList; } }
public List<VR_Grabbable> GrabbableList { get { return grabbableList; } }
@@ -43,7 +44,7 @@ namespace VRSDK
{
if (player == null)
{
player = FindObjectOfType<VR_Player>();
player = FindFirstObjectByType<VR_Player>();
player.Construct();
}
@@ -140,4 +141,3 @@ namespace VRSDK
}
}