유니티에서 manifest 파일을 수정하여 패키지 설치하기

유니티에서 manifest 파일을 수정하여 패키지 설치하기

manifest.json 파일의 dependencies 목록에 git URL을 추가하여 패키지를 설치하는 방법

프로젝트에서 git 패키지를 사용하려면 git 클라이언트가 컴퓨터에 설치되어있고 시스템 환경 변수 path에 git.exe파일의 경로가 추가되어있어야한다.

시스템 환경 변수 path에 git.exe파일 경로 추가하기

1)유니티 프로젝트의 Packages 폴더 하위에서 manifest.json 파일을 확인할수있다.

 

2)텍스트 편집기에서 manifest.json 파일을 열기한다.

 

3)dependencies는 프로젝트에서 이용 가능한 패키지 목록을 의미한다.

 

4)dependencies 목록에 설치하려는 패키지의 저장소 git URL을 추가한다.

 

5)파일을 저장하고 유니티를 재실행하면 해당 패키지가 설치된것을 확인할수있다.

 

Project manifest
https://docs.unity3d.com/Manual/upm-manifestPrj.html

 

Unity - Manual: Project manifest

Project manifest When Unity loads a project, the Unity Package Manager reads the project manifest so that it can compute a list of which packages to retrieve and load. When a user installs or uninstalls a package through the Package Manager window, the Pac

docs.unity3d.com

 

git URL
https://docs.unity3d.com/kr/2019.4/Manual/upm-git.html

 

Git URL - Unity 매뉴얼

When the Package Manager fetches a package from a Git repository, it adds the package locally to your project. This allows you to easily test unpublished changes, but you cannot use it to contribute to that Git repository. To set up an existing local Git r

docs.unity3d.com

 

댓글

Designed by JB FACTORY