次の方法で共有


SpatialGestureRecognizer.NavigationUpdated イベント

定義

手またはモーション コントローラーの動きによって ナビゲーション ジェスチャが更新されたときに発生します。

// Register
event_token NavigationUpdated(TypedEventHandler<SpatialGestureRecognizer, SpatialNavigationUpdatedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
SpatialGestureRecognizer::NavigationUpdated_revoker NavigationUpdated(auto_revoke_t, TypedEventHandler<SpatialGestureRecognizer, SpatialNavigationUpdatedEventArgs const&> const& handler) const;
public event TypedEventHandler<SpatialGestureRecognizer,SpatialNavigationUpdatedEventArgs> NavigationUpdated;
function onNavigationUpdated(eventArgs) { /* Your code */ }
spatialGestureRecognizer.addEventListener("navigationupdated", onNavigationUpdated);
spatialGestureRecognizer.removeEventListener("navigationupdated", onNavigationUpdated);
- or -
spatialGestureRecognizer.onnavigationupdated = onNavigationUpdated;
Public Custom Event NavigationUpdated As TypedEventHandler(Of SpatialGestureRecognizer, SpatialNavigationUpdatedEventArgs) 

イベントの種類

注釈

手の操作の場合、NavigationStarted ハンドがその位置を更新すると、SpatialNavigationUpdatedEventArgs イベントが発生します。

音声操作の場合、このイベントは発生しません。

モーション コントローラーの操作の場合、 NavigationStarted コントローラーが移動されると、このイベントが発生します。

適用対象