com.dss.core-utils

A collection of useful Unity extensions and utilities.


Keywords
unity, utilities, extensions, helpers, tools
License
BSD-3-Clause
Install
npm install com.dss.core-utils@1.6.2

Documentation

unity-core-utils

Please see the readme in the package directory for information on all of the included utilities.

How To Install

The core-utils 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.core-utils": "1.6.12"

After changes, the manifest file should look like below:

{
  "scopedRegistries": [
    {
      "name": "DSS",
      "url": "https://registry.npmjs.com",
      "scopes": [ "com.dss" ]
    }
  ],
  "dependencies": {
    "com.dss.core-utils": "1.6.12",
    ...