FindGameObjectWithTag 쓰고서 값이 없으면 if써서 다른 태그를 불러올라하는 데

if문에서 ==null 말고 어케 써야될지 모르겠어용;

    private void Awake()
    {
        playerController = GameObject.FindGameObjectWithTag("Player").GetComponent<PlayerController>();
        if(PlayerController==null)
        {
            playerController = GameObject.FindGameObjectWithTag("Nothing").GetComponent<PlayerController>();
        }
    }