2023.12.05 오늘의 기록 데이터 Class 이론
2023. 12. 5. 14:56ㆍ카테고리 없음
데이터
단일 데이터 - int float bool double string 등...
다중 데이터
선형 데이터 / 비선형 데이터
배열 array list
비선형 tree / graph
기능 / 논리
메소드(Functions)
함수의 형태
public int i () 반환값 / return 값
{
}
public void i () 반환값이 없는 함수
{
로직 작성 / 공식
}
상속할 때 붙는 단어
virtual 부모 클래스
override 자식 클래스
public | virtual / override | void i ()
{
}
유니티 활용
public Transform transform;
public Camera camera;
public AudioListener audio;
public GameObject go;
public AudioSource audioSource;
// Start is called before the first frame update
void Start()
{
Debug.Log(transform.position.z);
audioSource.volume = 0.5f;
}