com.dss.instancing
v1.0.0
Published
An instanced indirect rendering system.
Downloads
2
Readme
Instancing
An instanced indirect rendering system.
How To Install
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",
...
Usage
Please see Runtime/Scripts/ExampleSetup.cs
.