Artemis.Engine.UpdatableObject.Pause C# (CSharp) Method

Pause() public method

Pause automatic updating. This will only have an effect if ManuallyUpdate is false, in which case the engine automatically updates the object. Regardless of whether or not automatic updating is paused, directly calling "Update" will still update the object.
public Pause ( ) : void
return void
        public void Pause()
        {
            IsPaused = true;
        }