安装
We recommend using OpenUPM.
Unity UI Storyboard relies on many open source libraries. By using OpenUPM, you can automatically remove many dependencies.
If for some reason you don't want to use OpenUPM, you'll need to resolve the dependencies yourself. Dependencies are defined in the Dependenciesfor the dependencies
Use OpenUPM (recommended)
Install using the command-line interface (recommended)
Navigate to the location of your Unity project
Enter the command below
openupm add com.kwanjoong.unityuistoryboardInstall via package manager
Edit->>.Project Settings ->Package ManagerRegister a new Scoped Registry (or modify an already existing OpenUPM entry)
Name: package.openupm.com
URL: https://package.openupm.comSaveorApplyor clickWindow-> clickPackage Manager 열기+ClickAdd package by name...orAdd package from git URL...选择com.kwanjoong.unityuistoryboardto the nameEnter the latest/desired version (e.g. 0.1.0)
AddClick
or Packages/manifest.json you can also insert the code below directly into
{
"scopedRegistries": [
{
"name": "package.openupm.com",
"url": "https://package.openupm.com",
"scopes": []
}
],
"dependencies": {
"com.kwanjoong.unityuistoryboard": "0.1.0"
}
}Installing with Git and a Package Manager (not recommended)
Window->GitPackage Manager 열기+ClickAdd package from git URL...Selecthttps://github.com/kwan3854/UnityUIStoryboard.git 입력주의: 직접 의존성을 해소하세요.
Last updated