일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 깊이 우선 탐색
- 유니티 Rotate
- 오브젝트 풀링
- 너비 우선 탐색
- 유니티 InputManager
- Mathf.Clamp
- Raycast
- 유니티 Collision
- LFS
- InputManager
- 소스코드 줄번호
- 유니티
- git-lfs
- eulerAngles
- 알고스팟
- c++ 문자열 자르기
- Quaternion.Euler
- ML-Agents
- 코드블럭 테마
- 유니티 ResourceManager
- 유니티 리소스매니저
- 유니티 Vector3
- LayerMask
- LookRotation
- 유니티 시야 가림
- 유니티 오브젝트 풀링
- c++
- unity
- 유니티 머신러닝
- 이진트리
- Today
- Total
목록IT/Unity (17)
무민은귀여워
초 단위로 쉬기 1 yield return new WaitForSeconds(시간); cs 한 프레임만 쉬기 1 yield return null; cs StartCoroutine() 메서드는 두 가지 방법으로 실행할 코루틴 메서드를 입력받는다. 1 2 StartCoroutine(SomeCoroutine()); // 코루틴 메서드를 실행한 반환값 StartCoroutine("SomeCoroutine"); // 코루틴 메서드의 cs 코루틴 메서드를 실행하면서 그 반환값을 즉시 StartCoroutine()에 입력하는 방식은 다음과 같이 실행할 코루틴 메서드에 입력값을 직접 전달할 수 있다. 1 StartCoroutine(SomeCoroutine(100)); cs 반면에 코루틴 메서드의 이름을 StartCor..
유니티 git-lfs 관련 설정 .gitattribute 파일 https://gist.github.com/nemotoo/b8a1c3a0f1225bb9231979f389fd4f3f .gitattributes for Unity3D with git-lfs .gitattributes for Unity3D with git-lfs. GitHub Gist: instantly share code, notes, and snippets. gist.github.com
Awake 스크립트가 실행될 때 한 번만 호출되는 함수다. 주로 게임의 상태 값 또는 변수의 초기화에 사용한다. Start 함수가 호출되기 전에 맨 먼저 호출된다. 스크립트가 비활성화돼 있어도 실행된다. 코루틴으로 실행 불가 Start Update 함수가 호출되기 전에 한 번만 호출된다. 스크립트가 활성화돼 있어야 실행된다. 다른 스크립트의 모든 Awake가 모두 다 실행된 이후에 실행된다. 코루틴으로 실행 가능 Update 프레임마다 호출되는 함수로 주로 게임의 핵심 로직을 작성한다. 스크립트가 활성화돼 있어야 실행된다. LateUpdate 모든 Update 함수가 호출되고 나서 한 번씩 호출된다. Update 함수에서 전처리가 끝난 후 실행해야 하는 로직에 사용한다. 카메라 이동 로직에 주로 사용하는..

https://github.com/Unity-Technologies/ml-agents/blob/master/docs/Training-ML-Agents.md Unity-Technologies/ml-agents Unity Machine Learning Agents Toolkit. Contribute to Unity-Technologies/ml-agents development by creating an account on GitHub. github.com https://www.youtube.com/watch?v=uMa4tD2bieY&list=PLctzObGsrjfwYHL1obWlVdPRbpubkuKWp&index=14 학습을 시키고 싶으면 anaconda prompt 에서 1 2 3 mlagents-lear..

https://github.com/Unity-Technologies/ml-agents/issues/1782 [0.7] Cannot drag trained model into the LearningBrain's model property · Issue #1782 · Unity-Technologies/ml-agents Hi, I updated to 0.7 from 0.6a on my Windows machine. After training my environment, I imported the resulting nn-file. After that I tried to add it to the model property of the LearningBrain, but t... github.com 더이상 tenso..
ml-agents 사용법이 달라져서 그렇다 한다. 아래 링크 참조. https://github.com/Unity-Technologies/ml-agents/blob/master/docs/Learning-Environment-Create-New.md Unity-Technologies/ml-agents Unity Machine Learning Agents Toolkit. Contribute to Unity-Technologies/ml-agents development by creating an account on GitHub. github.com 기존의 방법대로 하고 싶다면 이전 버전의 ML-Agents를 다운받아 사용하면 된다. (이 링크의 하단에서 Source code 다운) 압축을 풀고, ml-agent..

ML-Agents 다운로드 https://unity3d.com/kr/machine-learning Machine Learning - Unity Unity is the ultimate game development platform. Use Unity to build high-quality 3D and 2D games, deploy them across mobile, desktop, VR/AR, consoles or the Web, and connect with loyal and enthusiastic players and customers. unity3d.com 위 링크에서 git 프로젝트를 클론 1 2 $ git clone "https://github.com/Unity-Technologies/ml-age..