Skip to content
Jack Cooper edited this page Jul 15, 2026 · 2 revisions

These packages are hosted on a private npm registry.

To use them, you need to add the TrickleCharge Registry to your Unity project's manifest.json file or via the Unity project settings:
Project SettingsPackage ManagerScoped Registries.

Scoped registry details:


Example manifest.json

{
    "dependencies": {
        "com.tricklecharge.unity.art.core": "0.0.1",
        "com.tricklecharge.unity.art.devart": "0.0.5",
        "com.tricklecharge.unity.attributes": "0.0.1",
        "com.tricklecharge.unity.drone": "0.0.2",
        "com.tricklecharge.unity.math": "0.0.2",
        "com.tricklecharge.unity.physics": "0.0.2",
        "com.tricklecharge.unity.vehicles": "0.0.1",
    },
    "scopedRegistries": [
    {
      "name": "TrickleCharge Registry",
      "url": "https://npm.tricklecharge.dev/",
      "scopes": [
        "com.tricklecharge.unity"
      ]
    }
  ]
}

Add as local packages

You can also clone the repo and add the packages directly:

{
    "dependencies": {
        "com.tricklecharge.unity.art.core": "file:S:/Dev/Unity/Devpacks/Packages/com.tricklecharge.unity.art.core",
        "com.tricklecharge.unity.art.devart": "file:S:/Dev/Unity/Devpacks/Packages/com.tricklecharge.unity.art.devart",
        "com.tricklecharge.unity.attributes": "file:S:/Dev/Unity/Devpacks/Packages/com.tricklecharge.unity.attributes",
        "com.tricklecharge.unity.drone": "file:S:/Dev/Unity/Devpacks/Packages/com.tricklecharge.unity.drone",
        "com.tricklecharge.unity.math": "file:S:/Dev/Unity/Devpacks/Packages/com.tricklecharge.unity.math",
        "com.tricklecharge.unity.physics": "file:S:/Dev/Unity/Devpacks/Packages/com.tricklecharge.unity.physics",
        "com.tricklecharge.unity.vehicles": "file:S:/Dev/Unity/Devpacks/Packages/com.tricklecharge.unity.vehicles"
    }
}

Clone this wiki locally