본문 바로가기
프로그래밍/Unity

Unity - 오브젝트 가까운 순으로 정렬 feat Linq

by neive 2021. 3. 25.
728x90
using System.Linq;

void Test()
{
        var list = GameObject.FindGameObjectsWithTag("Enemy").OrderBy(
            x => Vector2.Distance(transform.position, x.transform.position)
            ).ToList();
}

 

728x90

댓글