[유니티 소소모임] 1주차. 유니티 기초 (Editor: Borybop)
C# 프로그래밍 기초 1. 변수형 Variable int: 정수형 데이터 float: 실수형 데이터, 소수점까지 포함 //숫자 뒤 f를 붙여줄 것float hellohello = 15.5f;string: 문자열 데이터bool: 논리형 데이터, 참/거짓 데이터를 포함 2. 그룹형 변수 Group Variable배열 Array: {}로 배열을 선언string[] numbers = {"하나", "둘", "셋"};Debug.log("숫자 하나둘셋 출력!");Debug.log(numbers[0]);Debug.log(numbers[1]);Debug.log(numbers[2]);리스트 List: 로 변수형을 선언List animals = new List();animals.Add("강아지");animals.Add(..
24-25/Untiy
2024. 10. 4. 12:04