2023/11/22 5

[Giant vs Human 팀프로젝트/Meta Quest, VR, Oculus] Haptic feedback(진동)

해야할 것 : GameObject를 만지면 진동이 오게 만든다. 만들기 위해 준비할 것 1. GameObject Cube를 만들어준다. 2. Cube에다가 Haptic 시스템을 적용할 Scripts를 넣어준다 .3. Scripts 작성 using System.Collections; using System.Collections.Generic; using UnityEngine; public class TestHaptic : MonoBehaviour { public void OnSelect() { float primaryIndexTrigger = OVRInput.Get(OVRInput.Axis1D.PrimaryIndexTrigger); float primaryHandTrigger = OVRInput.Get(O..