다음을 통해 공유


SpatialGestureRecognizer.ManipulationUpdated 이벤트

정의

손 이동으로 인해 조작 제스처가 업데이트되면 발생합니다.

// Register
event_token ManipulationUpdated(TypedEventHandler<SpatialGestureRecognizer, SpatialManipulationUpdatedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
SpatialGestureRecognizer::ManipulationUpdated_revoker ManipulationUpdated(auto_revoke_t, TypedEventHandler<SpatialGestureRecognizer, SpatialManipulationUpdatedEventArgs const&> const& handler) const;
public event TypedEventHandler<SpatialGestureRecognizer,SpatialManipulationUpdatedEventArgs> ManipulationUpdated;
function onManipulationUpdated(eventArgs) { /* Your code */ }
spatialGestureRecognizer.addEventListener("manipulationupdated", onManipulationUpdated);
spatialGestureRecognizer.removeEventListener("manipulationupdated", onManipulationUpdated);
- or -
spatialGestureRecognizer.onmanipulationupdated = onManipulationUpdated;
Public Custom Event ManipulationUpdated As TypedEventHandler(Of SpatialGestureRecognizer, SpatialManipulationUpdatedEventArgs) 

이벤트 유형

설명

손 상호 작용의 경우 ManipulationStarted 손이 위치를 업데이트할 때 SpatialManipulationUpdatedEventArgs 이벤트가 발생합니다.

음성 및 모션 컨트롤러 상호 작용의 경우 이 이벤트가 발생하지 않습니다.

적용 대상