Artemis.Engine.Multiforms.MultiformManager.SetProcessOrder C# (CSharp) 메소드

SetProcessOrder() 공개 메소드

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
리턴 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;
        }