일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 백준
- 이것이자바다확인문제
- BOJ1655
- java
- 백준온라인저지
- 백준괄호
- 백준9012
- KT포트포워딩
- 합성곱연산
- 카카오코테
- 윤곽선검출
- 코딩테스트실력진단
- 이것이자바다
- 백준10828
- 냅색알고리즘
- 딥러닝
- 백준스택
- 2019카카오코테
- 이것이자바다9장
- 스파르타코딩클럽
- BOJ
- 운영체제
- 확인문제
- 가운데를말해요
- 백준평범한배낭
- 백준가운데를말해요
- 코테
- 컴퓨터비전
- 코드트리
- 웹개발기초
- Today
- Total
목록[2021] 🎓 졸업작품 (9)
코딩하는 락커
참고 https://answers.unity.com/questions/993877/ui-setting-hierarchy-order-of-ui-objects-by-script.html https://docs.unity3d.com/ScriptReference/Transform.SetSiblingIndex.html exampleObject.transform.SetAsLastSibling(); 졸작 할 때 날 살려준 코드 .. 고맙습니다^v^...
참고 https://prosto.tistory.com/146 GameObject.Find("GameObject 이름")
참고 https://docs.unity3d.com/2018.1/Documentation/ScriptReference/EventSystems.EventSystem.SetSelectedGameObject.html GameObject Image = EventSystem.current.currentSelectedGameObject;
참고 https://answers.unity.com/questions/651984/convert-sprite-image-to-texture.html public static Texture2D textureFromSprite(Sprite sprite) { if(sprite.rect.width != sprite.texture.width){ Texture2D newText = new Texture2D((int)sprite.rect.width,(int)sprite.rect.height); Color[] newColors = sprite.texture.GetPixels((int)sprite.textureRect.x, (int)sprite.textureRect.y, (int)sprite.textureRect.wid..
참고 https://kukuta.tistory.com/195 Rect rect = new Rect(0, 0, testTexture.width, testTexture.height); Sprite.Create(testTexture, rect, new Vector2(0.5f, 0.5f)); 진짜 정말정말 많이 썼던 코드^v^
참고 https://forum.unity.com/threads/solved-change-ui-source-image.367215/ using UnityEngine.UI transform.GetChild(i).GetComponent().sprite = Sprite
참고 https://multicore-it.com/93 using UnityEngine.UI; GameObject.Find("Text").GetComponent().color = Color.black;
참고 http://theeye.pe.kr/archives/tag/waituntil https://m.blog.naver.com/PostView.naver?isHttpsRedirect=true&blogId=happybaby56&logNo=221322535793 에러 내용 : Inumerate를 사용해서 서버에서 통신하여 이미지 data를 다 다운받을 동안 yield하게 했더니 data를 다 내려받지도 않았는데 배열에 접근하여 IndexOutOfRange 에러가 남 해결 방법 : IEnumerator안에서 StartCoroutine()으로 IEnumerator를 호출하면 호출된 IEnumerator가 끝날때까지 그 다음 코드를 실행하지 않는다는 점을 사용하여 IEnumerator를 중첩하여 호출 IEnume..