Exemple #1
0
        public void ControllableEntityReleased(ControllableEntity e)
        {
            var notice = new SEGarden.Notifications.AlertNotification()
            {
                Text           = "Controllable Entity " + e.EntityId + " Released",
                DisplaySeconds = 5
            };

            notice.Raise();
        }
Exemple #2
0
        public void RevealedEntityRemoved(RevealedEntity e)
        {
            var notice = new SEGarden.Notifications.AlertNotification()
            {
                Text           = "Revealed Entity " + e.EntityId + " Removed",
                DisplaySeconds = 5
            };

            notice.Raise();

            MarkNearbyObserversToObserve(e);
        }
        public void ControllableEntityControlled(ControllableEntity e)
        {
            var notice = new SEGarden.Notifications.AlertNotification() {
                Text = "Controllable Entity " + e.EntityId + " Controlled",
                DisplaySeconds = 5
            };

            notice.Raise();
        }
        public void RevealedEntityRemoved(RevealedEntity e)
        {
            var notice = new SEGarden.Notifications.AlertNotification() {
                Text = "Revealed Entity " + e.EntityId + " Removed",
                DisplaySeconds = 5
            };

            notice.Raise();

            MarkNearbyObserversToObserve(e);
        }