Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 다트기초
- XR
- optional prameter
- Unity
- 네임드 파라미터
- OPCUA
- Unity 4k 아이콘 깨짐
- Flutter
- unity 아이콘 깨짐
- c#
- Unity3d
- 포지션 파라미터
- MemoryBarrier
- 플러터
- 플러터폴더
- C# memorybarrior
- 싱글톤
- 4KUnity
- Csharp
- 메모리배리어
- unity icon
- memorymangement
- xml unity
- 유니티
- 폴더구성
- position parameter
- named parameter
- 플러터프로젝트
- 유니티최적화
- flutter folder
Archives
- Today
- Total
목록타이머 (1)
배 타다 개발자
[Unity] 디지털 시계 구현
디지털 시계 UI 중 Text를 가지고 있는 오브젝트에 접근할 수 있게 한다. DateTime.Now.Tostring 메소드를 통해서 원하는 시간을 String으로 가져오는 함수를 만든다. 1초에 한번씩 현재시간을 가져오도록 Coroutine을 만든다. Init(또는 Start) 함수에서 코루틴을 시작해준다. private void Start() { // 디지털 시계 코루틴 Start StartCoroutine(GetTimeEverySecond()); } private void GetCurrentTime() { TMP_Text dateTimeText = Get((int)GameObjects.DateTimeText).GetComponent(); dateTimeText.text = DateTi..
Graphics/Unity 3D
2021. 12. 27. 16:08