├── Editor.meta ├── Editor ├── TMPSpriteAtlasEditor.asmref ├── TMPSpriteAtlasEditor.asmref.meta ├── TMPSpriteAtlasEditor.cs ├── TMPSpriteAtlasEditor.cs.meta ├── TMPSpriteAtlasMenu.cs └── TMPSpriteAtlasMenu.cs.meta ├── Gizmos.meta ├── Gizmos ├── TMP - Sprite Asset Icon.psd └── TMP - Sprite Asset Icon.psd.meta ├── LICENSE ├── LICENSE.meta ├── README.md ├── README.md.meta ├── TMPSpriteAtlas.asmref ├── TMPSpriteAtlas.asmref.meta ├── TMPSpriteAtlas.cs ├── TMPSpriteAtlas.cs.meta ├── package.json └── package.json.meta /Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBarendt/TMProSpriteAtlas/HEAD/Editor.meta -------------------------------------------------------------------------------- /Editor/TMPSpriteAtlasEditor.asmref: -------------------------------------------------------------------------------- 1 | { 2 | "reference": "Unity.TextMeshPro.Editor" 3 | } -------------------------------------------------------------------------------- /Editor/TMPSpriteAtlasEditor.asmref.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBarendt/TMProSpriteAtlas/HEAD/Editor/TMPSpriteAtlasEditor.asmref.meta -------------------------------------------------------------------------------- /Editor/TMPSpriteAtlasEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBarendt/TMProSpriteAtlas/HEAD/Editor/TMPSpriteAtlasEditor.cs -------------------------------------------------------------------------------- /Editor/TMPSpriteAtlasEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b613863f777867c4f8bb1a657e1e5234 -------------------------------------------------------------------------------- /Editor/TMPSpriteAtlasMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBarendt/TMProSpriteAtlas/HEAD/Editor/TMPSpriteAtlasMenu.cs -------------------------------------------------------------------------------- /Editor/TMPSpriteAtlasMenu.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2bfa1847457fb27489d978d599edd307 -------------------------------------------------------------------------------- /Gizmos.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBarendt/TMProSpriteAtlas/HEAD/Gizmos.meta -------------------------------------------------------------------------------- /Gizmos/TMP - Sprite Asset Icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBarendt/TMProSpriteAtlas/HEAD/Gizmos/TMP - Sprite Asset Icon.psd -------------------------------------------------------------------------------- /Gizmos/TMP - Sprite Asset Icon.psd.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBarendt/TMProSpriteAtlas/HEAD/Gizmos/TMP - Sprite Asset Icon.psd.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBarendt/TMProSpriteAtlas/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBarendt/TMProSpriteAtlas/HEAD/LICENSE.meta -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBarendt/TMProSpriteAtlas/HEAD/README.md -------------------------------------------------------------------------------- /README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBarendt/TMProSpriteAtlas/HEAD/README.md.meta -------------------------------------------------------------------------------- /TMPSpriteAtlas.asmref: -------------------------------------------------------------------------------- 1 | { 2 | "reference": "Unity.TextMeshPro" 3 | } -------------------------------------------------------------------------------- /TMPSpriteAtlas.asmref.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBarendt/TMProSpriteAtlas/HEAD/TMPSpriteAtlas.asmref.meta -------------------------------------------------------------------------------- /TMPSpriteAtlas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBarendt/TMProSpriteAtlas/HEAD/TMPSpriteAtlas.cs -------------------------------------------------------------------------------- /TMPSpriteAtlas.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBarendt/TMProSpriteAtlas/HEAD/TMPSpriteAtlas.cs.meta -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBarendt/TMProSpriteAtlas/HEAD/package.json -------------------------------------------------------------------------------- /package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBarendt/TMProSpriteAtlas/HEAD/package.json.meta --------------------------------------------------------------------------------