MonoGdx.Scene2D.Group.SwapActor C# (CSharp) 메소드

SwapActor() 공개 메소드

public SwapActor ( Actor first, Actor second ) : bool
first Actor
second Actor
리턴 bool
        public bool SwapActor(Actor first, Actor second)
        {
            int firstIndex = Children.IndexOf(first);
            int secondIndex = Children.IndexOf(second);

            return SwapActor(firstIndex, secondIndex);
        }

Same methods

Group::SwapActor ( int first, int second ) : bool