일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 유니티 Json 데이터 연동
- Oculus
- 유니티
- HAPTIC
- CGV
- 길건너 친구들
- 유니티 UI
- 연습
- 오브젝트 풀링
- 팀프로젝트
- 드래곤 플라이트
- input system
- 드래곤 플라이트 모작
- 앱 배포
- XR
- meta xr
- 개발일지
- 팀 프로젝트
- 개발
- 멀티플레이
- 포트폴리오
- 가상현실
- VR
- 유니티 GUI
- OVR
- meta
- Photon Fusion
- ChatGPT
- 오큘러스
- 모작
- Today
- Total
목록유니티 GUI (2)
EasyCastleUNITY
유니티 RequireComponent https://artiper.tistory.com/105 [Unity] RequireComponent란? Unity - Scripting API: RequireComponent When you add a script which uses RequireComponent to a GameObject, the required component will automatically be added to the GameObject. This is useful to avoid setup errors. For example a script might require that a artiper.tistory.com 애니메이션 이벤트 마지막 프레임에 이벤트 추가 애니메이션 이벤트 활용 us..
정적 스크롤 뷰 -> 많이 사용되므로 여러번 만들어 보기 버튼 이벤트 추가 Cell의 종류는 2개, 기본 셀과 광고 셀로 나뉜다. 기본 셀의 스크립트를 상속 받아 광고 셀 스크립트를 만든다. 이러한 셀들을 스크롤뷰에서 관리한다. UIChestCell using System.Collections; using System.Collections.Generic; using TMPro; using UnityEngine; using UnityEngine.UI; public class UIChestCell : MonoBehaviour { public enum eChestType { Wooden,Sliver,Golden,Epic,Legendary } public System.Action onBuyButtonClick;..