1.0.1 • Published 4 years ago

rocks.innovation.shader-kit v1.0.1

Weekly downloads
1
License
UNLICENSED
Repository
gitlab
Last release
4 years ago

Shader Kit

A library containing a set of shaders and tools.

Requires the Unity software version 2018.4 (or above).

Getting Started

Setting up a project

  • Using the Unity software version 2018.4 (or above), create a new project using the 3D Template or open an existing project.
  • Ensure the project Scripting Runtime Version is set to .NET 4.x Equivalent.
    • In the Unity software select Main Menu -> Edit -> Project Settings to open the Project Settings inspector.
    • Select Player from the left hand menu in the Project Settings window.
    • In the Player settings panel expand Other Settings.
    • Ensure the Scripting Runtime Version is set to .NET 4.x Equivalent.

Adding the package to the Unity project manifest

  • Navigate to the Packages directory of your project.
  • Adjust the project manifest file manifest.json in a text editor.

    • Ensure https://verdaccio.qm.innovation.rocks/ is part of scopedRegistries.
      • Ensure rocks.innovation is part of scopes.
    • Add rocks.innovation.shader-kit to dependencies, stating the latest version.

    A minimal example ends up looking like this. Please note that the version X.Y.Z stated here is to be replaced with the desired released version.

    {
      "scopedRegistries": [
        {
          "name": "inr-unity",
          "url": "https://verdaccio.qm.innovation.rocks/",
          "scopes": [
            "rocks.innovation"
          ]
        }
      ],
      "dependencies": {
        "rocks.innovation.shader-kit": "X.Y.Z",
        ...
      }
    }
  • Switch back to the Unity software and wait for it to finish importing the added package.

Updating to the latest version

The package will show up in the Unity Package Manager UI once the above steps have been carried out. From then on the package can be updated by selecting the package in the Unity Package Manager and clicking on the Update button or using the version selection UI.

1.0.1

4 years ago