Unity34 Unity : Scroll UI scrollveiw 오브젝트 : Scroll Rect, Mask contents 오브젝트 : contents size fitter, horizontal / vertical layour Group 2020. 5. 19. Unity : 데이터관리 사전이 길이가 왜 1인지 모르겠다 나는 2개 추가한거 같은데.... 리스트로 바꿔서 추가해도 100, 101중에 나중에 추가한 101번만 들어간다 그래서 아래쪽에서 100번이 없다고 에러가 뜨는데 내 능력으로는 이유를 잘 모르겠다ㅜㅠ 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 31 32 33 34 35 36 37 38 39 40 41 using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; public class App : MonoBehaviour { public Button[] a.. 2020. 5. 19. Unity : ObjectPool 과 Scene 교체 아.... 왜 공격을 안하지..... 졸려서 자야겠따ㅜㅜ 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.SceneManagement; public class App : MonoBehaviour { private void Awake() { UnityEngine.Object.DontDestroyOnLoad(this.gameObject); } void Start() { DataManager.GetDataInstance().DataLoad(); SceneManager.LoadScene("InGame").. 2020. 5. 15. Unity : 케릭터에 아이템 장착시켜서 공격모션 해보기 영상 class UIStudio 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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 using System.Collections; using System.Collections.Generic; using System.Run.. 2020. 5. 13. 이전 1 ··· 4 5 6 7 8 9 다음