728x90 c#31 Unity & C# ~ 코루틴으로 회전하기 (Rotate Coroutine) Coroutine rotCoroutine = null; float rotSpeed = 30.0f; public void RotStartFunc() { rotCoroutine = StartCoroutine(CoroutineRotFunc()); } IEnumerator CoroutineRotFunc() { var angles = transform.rotation.eulerAngles; angles.z -= Time.deltaTime * rotSpeed; transform.rotation = Quaternion.Euler(angles); yield return null; rotCoroutine = StartCoroutine(CoroutineRotFunc()); } public void RotStopFunc().. 2022. 5. 31. Unity & C# ~ Singleton(싱글톤) //예제1 private static T _instance = null; public static T _Instance { get { if (_instance == null) { _instance = FindObjectOfType(typeof(T)) as T; } return _instance; } } //예제2 private static T _instance = null; public static T _Instance { get { if (_instance == null) { _instance = FindObjectOfType(typeof(T)) as T; if (_instance == null) { GameObject obj = new GameObject(); obj.name = "NAME"; _in.. 2022. 5. 20. Unity & C# ~ String.Format 자리수 참조 : https://docs.microsoft.com/ko-kr/dotnet/api/system.string.format?view=net-6.0 String.Format 메서드 (System) 지정된 형식에 따라 개체의 값을 문자열로 변환하여 다른 문자열에 삽입 합니다. String.Format 메서드를 처음 사용하는 경우 String.Format 메서드 시작 섹션에서 대략적인 내용을 살펴보세요. String.For docs.microsoft.com String.Format("{0:#,0}", parameter); //parameter은 int형 //result // input 0 => output 0 // input 1000 => output 1,000 String.Format("{0:###-###.. 2022. 4. 27. Unity & C# ~ Property 프로퍼티 최종 수정 : 22.09.23 참조 : https://stackoverflow.com/questions/3847832/understanding-private-setters understanding private setters I don't understand the need of having private setters which started with C# 2. Having a setter method for me is letting the user to set some variables in that class. In doing so, we will not expo... stackoverflow.com //int 자리에 자료형 대입 public int parameters { get; set; } pu.. 2022. 4. 27. Dictionary 배열 사용 Dictionary dic = new Dictionary(); KEY값 길이 - dic.Count(); KEY 0번의 배열 길이 - dic[0].Length; foreach(T t in T[KEY] { //t값 } 2022. 3. 15. Unity & C# ~ using 문 * 최초 작성일 : 2022.02.17 * 최종 수정일 : 2022.02.17 using문은 using문을 사용한 메서드의 닫는 중괄호에 도달하면 해당 파일이 삭제(dispose)됨. //예제 using (var file = new System.IO.StreamWriter("WriteLines2.txt")) { int skippedLines = 0; foreach (string line in lines) { if (!line.Contains("Second")) { file.WriteLine(line); } else { skippedLines++; } } return skippedLines; } // file is disposed here (불러온 파일이 삭제) 2022. 2. 17. 이전 1 2 3 4 5 6 다음 SMALL