2.5.1 if문으로 조건 분기하기 특정한 조건이 맞을 때만 스크립트를 실행하고 싶다면 if문을 사용 if문은 관계연산자를 사용해서 조건식을 사용 ※ if 문 사용하기 using System.Collections; using System.Collections.Generic; using UnityEngine; // 유니티가 동작하는데 필요한 기능 제공 public class test : MonoBehaviour { // Start is called before the first frame update void Start() { int herbNum = 1; if (herbNum == 1) { Debug.Log("체력을 50 회복"); } } } 결과값 보기 더보기 체력을 50 회복 herbNum = 5; ..