phi-lira / SmartTexture

Unity tool to pack texture channels into a single texture.
MIT License
167 stars 23 forks source link

SmartTexture Asset for Unity

SmartTexture is a custom asset for Unity that allows you a channel packing workflow in the editortextures and use them in the Unity editor for a streamlined workflow. SmartTextures work as a regular 2D texture asset and you can assign it to material inspectors.

Dependency tracking is handled by SmartTexture, that means you can change input textures and the texture asset will be re-generated. The input textures are editor only dependencies, they will not be included in the build, unless they are referenced by another asset or scene.

inspector

NOTE

This package is still a Proof of Concept (POC) and it's still experimental. You can request features or submit bugs by creating new issues in the issue tab. For feature request please add "enhancement" label.


Installation

SmartTexture is a unity package and you can install it from Package Manager.

Option 1: Install package via Github.

Option 2: Clone or download this Github project and install it as a local package.

How to use

1) Create a SmartTexture asset by clicking on Asset -> Create -> Smart Texture, or by right-clicking on the Project Window and then Create -> Smart Texture.

create

2) An asset will be created in your project.

asset

3) On the asset inspector you can configure input textures and texture settings for your smart texture. 4) Hit Apply button to generate the texture with selected settings.

inspector

5) Now you can use this texture as any regular 2D texture in your project.

assign

Acknowledgements