次の方法で共有


SpatialEntityWatcher.Updated イベント

定義

既存の空間エンティティのメタデータが参加者によって更新されたときに発生するイベント。

// Register
event_token Updated(TypedEventHandler<SpatialEntityWatcher, SpatialEntityUpdatedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
SpatialEntityWatcher::Updated_revoker Updated(auto_revoke_t, TypedEventHandler<SpatialEntityWatcher, SpatialEntityUpdatedEventArgs const&> const& handler) const;
public event TypedEventHandler<SpatialEntityWatcher,SpatialEntityUpdatedEventArgs> Updated;
function onUpdated(eventArgs) { /* Your code */ }
spatialEntityWatcher.addEventListener("updated", onUpdated);
spatialEntityWatcher.removeEventListener("updated", onUpdated);
- or -
spatialEntityWatcher.onupdated = onUpdated;
Public Custom Event Updated As TypedEventHandler(Of SpatialEntityWatcher, SpatialEntityUpdatedEventArgs) 

イベントの種類

注釈

デバイスが環境の詳細を学習する際に発生する空間アンカーの位置の調整は、この Updated イベントでは表されないことに注意してください。 ローカル アンカーに必要なのと同様に、アプリは各フレームのアンカーの座標系の変更に対応する必要があります。

適用対象