SpatialInteractionManager.SourceLost 이벤트

정의

손, 모션 컨트롤러 또는 음성 소스를 더 이상 사용할 수 없는 경우에 발생합니다.

// Register
event_token SourceLost(TypedEventHandler<SpatialInteractionManager, SpatialInteractionSourceEventArgs const&> const& handler) const;

// Revoke with event_token
void SourceLost(event_token const* cookie) const;

// Revoke with event_revoker
SpatialInteractionManager::SourceLost_revoker SourceLost(auto_revoke_t, TypedEventHandler<SpatialInteractionManager, SpatialInteractionSourceEventArgs const&> const& handler) const;
public event TypedEventHandler<SpatialInteractionManager,SpatialInteractionSourceEventArgs> SourceLost;
function onSourceLost(eventArgs) { /* Your code */ }
spatialInteractionManager.addEventListener("sourcelost", onSourceLost);
spatialInteractionManager.removeEventListener("sourcelost", onSourceLost);
- or -
spatialInteractionManager.onsourcelost = onSourceLost;
Public Custom Event SourceLost As TypedEventHandler(Of SpatialInteractionManager, SpatialInteractionSourceEventArgs) 

이벤트 유형

적용 대상