Artemis.Engine.UpdatableObject.Pause C# (CSharp) Метод

Pause() публичный Метод

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
Результат void
        public void Pause()
        {
            IsPaused = true;
        }