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
- Raycast
- InputManager
- 오브젝트 풀링
- ML-Agents
- 알고스팟
- Quaternion.Euler
- 유니티 리소스매니저
- c++ 문자열 자르기
- LookRotation
- LayerMask
- git-lfs
- c++
- 소스코드 줄번호
- 이진트리
- 유니티 시야 가림
- eulerAngles
- 유니티 Vector3
- 깊이 우선 탐색
- 유니티 Rotate
- 유니티 오브젝트 풀링
- Mathf.Clamp
- 유니티 ResourceManager
- LFS
- 유니티 Collision
- 유니티 머신러닝
- 유니티 InputManager
- 코드블럭 테마
- 유니티
- 너비 우선 탐색
- unity
Archives
- Today
- Total
반응형
목록유니티 리소스매니저 (1)
무민은귀여워
[유니티] ResourceManager
입력한 경로의 프리팹 리소스를 로드해, 프로그램 실행 중 인스턴스를 생성/삭제 할 수 있게한다. public class ResourceManager { public T Load(string path) where T : Object { return Resources.Load(path); } public GameObject Instantiate(string path, Transform parent = null) { GameObject prefab = Load($"Prefabs/{path}"); // 경로는 최상위 폴더를 Resources로 한다 if (prefab == null) { Debug.Log($"Failed to load prefab : {path}"); return null; } return Ob..
IT/Unity
2022. 5. 17. 17:26
반응형