コード例 #1
0
        public void DestroyEntity(Entity entity)
        {
            foreach (var component in _components.Where(c => c.Entity == entity).ToArray())
            {
                DetachComponent(component);
            }

            if (entity.Name != null)
            {
                _entitiesByName.Remove(entity.Name);
            }

            _entities.Remove(entity);
            EntityDestroyed?.Invoke(this, entity);
        }
コード例 #2
0
 private void Sprite_AnimationDone()
 {
     EntityDestroyed?.Invoke(this);
 }
コード例 #3
0
 private void OnEntityDestroyed(Entity entity)
 {
     EntityDestroyed?.Invoke(entity);
 }
コード例 #4
0
ファイル: HcMap.cs プロジェクト: umby24/ZBase
 public void EntityRemove(Entity e)
 {
     EntityDestroyed?.Invoke(e);
 }
コード例 #5
0
ファイル: Powerup.cs プロジェクト: KAkerstrom/MonoCoopGame
 public void Destroy(GameState gameState, Player player = null)
 {
     TileDestroyed?.Invoke(this, player);
     EntityDestroyed?.Invoke(this);
 }
コード例 #6
0
ファイル: Entity.cs プロジェクト: daramkun/MintEngine
 internal void Destroyed()
 {
     EntityDestroyed?.Invoke(this, EventArgs.Empty);
 }
コード例 #7
0
ファイル: bullet.cs プロジェクト: KAkerstrom/MonoCoopGame
 public void Destroy(GameState gameState)
 {
     EntityDestroyed?.Invoke(this);
 }