/Metatex

Metadata-only texture importer for Unity

Primary LanguageC#The UnlicenseUnlicense

Metatex

photo

Metatex is a metadata-only texture asset importer for Unity. It procedurally generates a texture from metadata at import-time.

It provides the following texture generators at the moment:

  • Shader/Material baker
  • Solid color
  • Linear/radial gradient
  • Colormaps (Matplotlib colormaps, Turbo, HSLuv and HSV)
  • Checkerboard
  • UV checker
  • TV test card

Related Project

  • Metamesh - Metadata-only mesh asset importer

How To Install

This package uses the scoped registry feature to resolve package dependencies. Add the following lines to the manifest file (Packages/manifest.json).

To the scopedRegistries section:

{
  "name": "Keijiro",
  "url": "https://registry.npmjs.com",
  "scopes": [ "jp.keijiro" ]
}

To the dependencies section:

"jp.keijiro.metatex": "1.0.1"

After the changes, the manifest file should look like:

{
  "scopedRegistries": [
    {
      "name": "Keijiro",
      "url": "https://registry.npmjs.com",
      "scopes": [ "jp.keijiro" ]
    }
  ],
  "dependencies": {
    "jp.keijiro.metatex": "1.0.1",
    ...