250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 터치디자이너 interface
- 터치디자이너 참조
- particleGPU
- 터치디자이너 클론
- 터치디자이너 list
- 터치디자이너 인터페이스
- touchdesigner displace
- 터치디자이너 강의
- 터치디자이너 timeline
- 터치디자이너 오퍼레이터
- 터치디자이너 함수
- 터치디자이너 파이썬
- touchdesinger
- touchdesigner particle
- displace
- touchdesigner GPU
- 터치디자이너 if
- ableton live 10
- 터치디자이너 reference
- 파이썬
- 터치디자이너 replicator
- TDableton
- 터치디자이너 튜토리얼
- 파이썬 if
- 터치디자이너 Instancing
- 터치디자이너
- TouchDesigner
- 터치디자이너 python
- 파이썬reference
- 터치디자이너 에이블톤
Archives
- Today
- Total
caLAB
[유니티 VR] 장치 인식 코드 본문
728x90
VR 장치가 연결되어 있는지 확인할 수 있는 코드.
VR이 장비가 연결되어 있는지 아닌지에 대한 확인을 해서
연결이 안되어 있을 때는 PC로 전환되도록 작업할 수 있도록 구현 중....!
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.XR;
public class vrDeviceDetector : MonoBehaviour
{
private void Start()
{
var inputDevices = new List<UnityEngine.XR.InputDevice>();
InputDevices.GetDevices(inputDevices);
foreach(var device in inputDevices)
{
Debug.Log(string.Format("Device found with name'{0}' and role '{1}'", device.name, device.role.ToString()));
if(device.name == "Oculus Quest2")
{
Debug.Log("detected device");
}
}
}
}
728x90
반응형
'Unity > 유니티VR' 카테고리의 다른 글
[유니티 VR + 네트워크] 캐릭터 리깅 네트워크 동기화 (0) | 2021.11.18 |
---|---|
[유니티 VR] VR 캐릭터 리깅하기 (0) | 2021.11.04 |
[유니티 VR 네트워크 개발] PC와 VR 플레이어 동기화 (0) | 2021.10.20 |
[유니티 VR] 컨트롤러 인터렉션 (0) | 2021.10.05 |
[유니티 VR 네트워크 개발] 유니티 VR클럽 개발기(feat. XR toolkit 세팅) (0) | 2021.09.26 |
Comments