├── .gitattributes ├── .gitignore ├── AlphaAtlasManager.cs ├── Editor ├── CreateAlphaAtlas.cs └── CustomPackerPolicy.cs ├── LICENSE ├── README.md └── SplitImage.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashyiyi/UGUIAlphaAtlas/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashyiyi/UGUIAlphaAtlas/HEAD/.gitignore -------------------------------------------------------------------------------- /AlphaAtlasManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashyiyi/UGUIAlphaAtlas/HEAD/AlphaAtlasManager.cs -------------------------------------------------------------------------------- /Editor/CreateAlphaAtlas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashyiyi/UGUIAlphaAtlas/HEAD/Editor/CreateAlphaAtlas.cs -------------------------------------------------------------------------------- /Editor/CustomPackerPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashyiyi/UGUIAlphaAtlas/HEAD/Editor/CustomPackerPolicy.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashyiyi/UGUIAlphaAtlas/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashyiyi/UGUIAlphaAtlas/HEAD/README.md -------------------------------------------------------------------------------- /SplitImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashyiyi/UGUIAlphaAtlas/HEAD/SplitImage.cs --------------------------------------------------------------------------------