C#함수1 04_코딩기초(4)-함수 addition 04_코딩기초(4)-함수 addition 어떠한 계산을 하는 과정을 넣어두고, 어떠한 역할을 특정한 작업을 목표로 할 수 있도록 하는것 Void Start / void update→이거도 함수 중에 하나 void(자료형) addition() public class 4 : MonoBehaviour { // Start is called before the first frame update void Start() { addition(); //2.함수 호출 } // Update is called once per frame void Update() { } void addition() { Debug.Log("This is Function"); //1. 함수를 선언한것 } } using System.Collectio.. 2022. 5. 8. 이전 1 다음 LIST