Tutorial.TutorialAIManager.GetNextPanning C# (CSharp) Méthode

GetNextPanning() public méthode

public GetNextPanning ( ) : CursorPanGroup
Résultat CursorPanGroup
        public CursorPanGroup GetNextPanning()
        {
            if (this.groupListCounter < this.groupList.Count) {
                return this.groupList[this.groupListCounter++];
            }
            else {
                this.groupListCounter = 0;
                return this.groupList[this.groupListCounter];
            }
        }