VREndEvent
Since version 4.0.0
VR 세션이 끝난 이후에 발생하는 이벤트
interface VREndEvent
Properties
target
>=4.0.0
target
이벤트를 발생시킨 컴포넌트의 인스턴스.
Example
viewer.on("ready", evt => {
console.log(evt.target); // = viewer
});
type
>=4.0.0
typestring
이벤트 타입.
이벤트 이름과 값이 같습니다.
Example
viewer.on("ready", evt => {
console.log(evt.type); // "ready"
});