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
@@ -1,16 +1,19 @@
using UnityEngine;
using UnityEngine.Serialization;
namespace VRSDK.Locomotion
{
//this scripts handles aim marker position and rotation
public class VR_AimMarker : MonoBehaviour
{
[SerializeField] private GameObject marker = null;
[SerializeField] private BoxCollider collider = null;
[FormerlySerializedAs("collider")]
[SerializeField] private BoxCollider markerCollider = null;
[SerializeField] private float slopeLimit;
public GameObject Marker { get { return marker; } }
public BoxCollider Collider { get { return collider; } }
public BoxCollider Collider { get { return markerCollider; } }
public float SlopeLimit { get { return slopeLimit; } }
private void Awake()
@@ -52,4 +55,3 @@ namespace VRSDK.Locomotion
}
}