C# 클래스 OVRPluginEvent, Lucid-VR

Communicates with native plugin functions that run on the rendering thread.
파일 보기 프로젝트 열기: UCSDVR/Lucid-VR 1 사용 예제들

공개 메소드들

메소드 설명
Issue ( RenderEventType eventType ) : void

Immediately issues the given event.

IssueWithData ( RenderEventType eventType, int eventData ) : void

Create a data channel through the single 32-bit integer we are given to communicate with the plugin. Split the 32-bit integer event data into two separate "send-two-bytes" plugin events. Then issue the explicit event that makes use of the data.

비공개 메소드들

메소드 설명
DecodeData ( int eventData ) : int
EncodeData ( int eventId, int eventData, int pos ) : int
EncodeType ( int eventType ) : int

메소드 상세

Issue() 공개 정적인 메소드

Immediately issues the given event.
public static Issue ( RenderEventType eventType ) : void
eventType RenderEventType
리턴 void

IssueWithData() 공개 정적인 메소드

Create a data channel through the single 32-bit integer we are given to communicate with the plugin. Split the 32-bit integer event data into two separate "send-two-bytes" plugin events. Then issue the explicit event that makes use of the data.
public static IssueWithData ( RenderEventType eventType, int eventData ) : void
eventType RenderEventType
eventData int
리턴 void