private void RemoveFromAnimations(ArObject arObject) { _billboardAnimations.RemoveAll(x => arObject.Id == x.PoiId); _onCreateAnimations.RemoveAll(x => arObject.Id == x.PoiId); _onFollowAnimations.RemoveAll(x => arObject.Id == x.PoiId); _onFocusAnimations.RemoveAll(x => arObject.Id == x.PoiId); _inFocusAnimations.RemoveAll(x => arObject.Id == x.PoiId); _onClickAnimations.RemoveAll(x => arObject.Id == x.PoiId); _allAnimations = null; }
public void Add(ArObject arObject) { _arObjects.Add(arObject); }