Keijiro is prolific!
However, I cannot see how to install his Lasp package, despite it having a Install section in the readme.
Whilst he describes modifying a few files, how does this serve to install anything?
How does this work? Does it work? It seems to do nothing, for me.
Below is the verbatim copy from the github, on how to install, that never seems to say how to install:
How To Install
This package uses the scoped registry feature to resolve package dependencies. Please add the following sections to the manifest file (Packages/manifest.json).
To the scopedRegistries section:
"name": "Unity NuGet",
"url": "https://unitynuget-registry.azurewebsites.net",
"scopes": [ "org.nuget" ]
},
{
"name": "Keijiro",
"url": "https://registry.npmjs.com",
"scopes": [ "jp.keijiro" ]
}```
To the dependencies section:
```"jp.keijiro.lasp": "2.1.4"
After changes, the manifest file should look like below:
"scopedRegistries": [
{
"name": "Unity NuGet",
"url": "https://unitynuget-registry.azurewebsites.net",
"scopes": [ "org.nuget" ]
},
{
"name": "Keijiro",
"url": "https://registry.npmjs.com",
"scopes": [ "jp.keijiro" ]
}
],
"dependencies": {
"jp.keijiro.lasp": "2.1.4",```
...