Artemis.Engine.Multiforms.MultiformManager.SetProcessOrder C# (CSharp) Méthode

SetProcessOrder() public méthode

Set the global process order, which is the order multiforms are updated in. The global process order may only be set once before the game begins running.
public SetProcessOrder ( string names ) : void
names string
Résultat void
        public void SetProcessOrder(string[] names)
        {
            if (Updating)
            {
                throw new MultiformException(
                    "Cannot set global multiform process order mid-update. This " +
                    "can only be set once before the game begins.");
            }
            GlobalProcessOrder = names;
        }