UnityEditor.ObjectPreview.MoveNextTarget C# (CSharp) Méthode

MoveNextTarget() public méthode

Called to iterate through the targets, this will be used when previewing more than one target.

public MoveNextTarget ( ) : bool
Résultat bool
        public virtual bool MoveNextTarget()
        {
            this.m_ReferenceTargetIndex++;
            return (this.m_ReferenceTargetIndex < (this.m_Targets.Length - 1));
        }