An instanced indirect rendering system.
npm install com.dss.instancingAn instanced indirect rendering system.
The instancing package uses the scoped registry feature to import
dependent packages. Please add the following sections to the package manifest
file (Packages/manifest.json).
To the scopedRegistries section:
```
{
"name": "DSS",
"url": "https://registry.npmjs.com",
"scopes": [ "com.dss" ]
}
To the dependencies section:
``
"com.dss.instancing": "1.0.0"
After changes, the manifest file should look like below:
``
{
"scopedRegistries": [
{
"name": "DSS",
"url": "https://registry.npmjs.com",
"scopes": [ "com.dss" ]
}
],
"dependencies": {
"com.dss.instancing": "1.0.0",
...
Please see Runtime/Scripts/ExampleSetup.cs`.