Artemis.Engine.Effectors.EffectableObject.InternalUpdate C# (CSharp) Method

InternalUpdate() private method

private InternalUpdate ( ) : void
return void
        internal override void InternalUpdate()
        {
            base.InternalUpdate();

            if (!IsPaused)
            {
                foreach (var kvp in NamedEffectors)
                {
                    kvp.Value.UpdateEffector(this);
                }

                foreach (var effector in AnonymousEffectors)
                {
                    effector.UpdateEffector(this);
                }
            }
        }