분류 전체보기 163

Async Task

비동기 프로그래밍을 가능하게 함. 내부적으로 스레드를 생성.( 일부 생성 안되는 경우도 있다는 해외글이 있긴하나 평범하게 쓴다면 무시 ) Unity 에서 테스트 using System.Collections; using System.Collections.Generic; using System.Threading.Tasks; using UnityEngine; public class Test_AsyncTask1 : MonoBehaviour { int back = 0; int next = 0; #region TEST1 public void Test1() { Debug.Log("aaa"); a1(); Debug.Log("bbb"); } public async Task a1() { while (next < 10) {..

C# 2019.09.10

Unity IAP 결제 오류.

UnityEngine.VR.VRSettings.get_enabled 라는 에러가 나서 검색해보니 저런게 있더라; 동일에러 : https://forum.unity.com/threads/unityengine-vr-vrsettings-get_enabled.552436/ 해결방법 : https://forum.unity.com/threads/iap-troubleshooting-remove-and-reinstall-unity-iap.511747/ The Manual covers how to add Unity IAP into your project: https://docs.unity3d.com/Manual/UnityIAPSettingUp.html However, there are some times when you ..

카테고리 없음 2019.08.23

UML 기호 작성중

상속 (Generalization ) 더보기 public class Base{ } public class Test : Base{ } 인터페이스 상속 (Interface Realization) 더보기 public interface Interface { } public Class TestA : Interface { } 집합, 집합 연관( Aggregation ) 관계 더보기 public class Engine{ } public class Car{ Engine engine; public Car(Engine eng) engine = eng; } } 합성, 합성 연관 (Composition) 더보기 public class Engine{} public class Car{ Engine engine; public Cr..

개발 기타/UML 2019.08.08