• Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
  • Help Room /
avatar image
Question by androniq · Feb 08, 2020 at 11:20 AM · spritetextmeshatlas

Workflow for TextMesh Pro sprite glyphs?

I have a folder with sprites w$$anonymous$$ch I want to use as glyphs in TextMesh Pro textboxes. From time to time, new sprites are added to that folder. I want to organize a workflow in such way that every time I add a sprite called xxx, I could use it as <sprite name="xxx"> in TextMesh.

I tried to create a Sprite Atlas from folder, but I cannot find any way to export the Sprite Atlas into a texture. Currently, I need to place all new sprites manually onto a big texture and re-create the entire TextMesh Sprite Asset file. How can I improve my workflow? (1 - automatically convert an atlas into a texture [Sprite Asset is not created if an atlas is selected, it wants specifically a texture], 2 - refresh the Sprite Asset file so it reflects changes in an underlying texture)

Comment
OnatKorucu

People who like this

1 Show 0
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

1 Reply

· Add your reply
  • Sort: 
avatar image
Best Answer

Answer by androniq · May 09, 2020 at 06:57 AM

Finally came out with t$$anonymous$$s solution.

 using System.IO;
 using System.Linq;
 using TMPro;
 using UnityEngine;
 using UnityEngine.TextCore;
 
 namespace Assets.Scripts.Utilities
 {
     public class Glypher : MonoBehaviour
     {
         public int GlyphWidth = 32;
         public int GlyphHeight = 32;
         public int GlyphsInRow = 8;
 
         public TMP_SpriteAsset Asset;
 
         public void RepackGlyphs()
         {
             Debug.Log("Repacking glyphs...");            
             var path = Path.Combine(Directory.GetCurrentDirectory(), @"Assets\Resources\Glyphs");
             var outputPath = Path.Combine(Directory.GetCurrentDirectory(), @"Assets\Resources\GlyphBuild\texture.png");
             var files = Directory.EnumerateFiles(path, "*.png").ToList();
             var rowNumber = (files.Count - 1) / GlyphsInRow + 1;
             var completeWidth = GlyphsInRow * GlyphWidth;
             var completeHeight = GlyphHeight * rowNumber;
             var image = new Texture2D(completeWidth, completeHeight, TextureFormat.BGRA32, false);
             var yIndex = rowNumber - 1;
             var xIndex = 0;
             Asset?.spriteGlyphTable.Clear();
             Asset?.spriteCharacterTable.Clear();
             uint index = 0;
             foreach (var glyph in files)
             {
                 var texture = new Texture2D(GlyphWidth, GlyphHeight);
                 using (var file = new FileStream(glyph, FileMode.Open))
                 {
                     using (var memstream = new MemoryStream())
                     {
                         file.CopyTo(memstream);
                         var tbytes = memstream.ToArray();
                         texture.LoadImage(tbytes);
                     }
                 }
                 var pixels = texture.GetPixels32();
                 image.SetPixels32(xIndex * GlyphWidth, yIndex * GlyphHeight, GlyphWidth, GlyphHeight, pixels);
 
                 var spriteGlyph = new TMP_SpriteGlyph
                 {
                     glyphRect = new GlyphRect { width = GlyphWidth, height = GlyphHeight - 1, x = xIndex * GlyphWidth, y = yIndex * GlyphHeight },
                     metrics = new GlyphMetrics { width = GlyphWidth, height = GlyphHeight - 1, horizontalBearingY = 28, horizontalBearingX = 0, horizontalAdvance = 32 },
                     index = index
                 };
                 Asset?.spriteGlyphTable.Add(spriteGlyph);
 
                 var spriteCharacter = new TMP_SpriteCharacter(0, spriteGlyph)
                 {
                     name = Path.GetFileNameWithoutExtension(glyph),
                     glyphIndex = index++
                 };
                 Asset?.spriteCharacterTable.Add(spriteCharacter);
 
                 xIndex++;
                 if (xIndex >= GlyphsInRow)
                 {
                     xIndex = 0;
                     yIndex--;
                 }
             }
 
             var bytes = image.EncodeToPNG();
             using (var stream = new FileStream(outputPath, FileMode.Create))
             {
                 stream.Write(bytes, 0, bytes.Length);
             }
 
             if (Asset == null)
                 Debug.LogWarning("Right-click the created texture, Create > TextMeshPro > Sprite Asset and specify the resulting asset in Glypher and in TMP Settings, then repack glyphs again");
             else
                 Debug.Log("Repacking glyphs done!");
         }
     }
 }
 

Then, I have a custom editor to run t$$anonymous$$s script from a button click:

 using UnityEditor;
 using UnityEngine;
 
 namespace Assets.Scripts.Utilities
 {
     [CustomEditor(typeof(Glypher))]
     public class GlypherEditor : Editor
     {
         public override void OnInspectorGUI()
         {
             DrawDefaultInspector();
 
             var glypher = (Glypher)target;
             if (GUILayout.Button("Repack glyphs"))
             {
                 glypher.RepackGlyphs();
             }
         }
     }
 }
 

Finally, I create the sprite asset manually - but only for the first time. Then I specify t$$anonymous$$s asset in Glypher component properties (I have a separate GameObject for devtime utilities, and t$$anonymous$$s GameObject can be safely removed on game startup) AND in TMP Settings (possibly there's a way to do that programmatically also, but since it's a one-time action, I didn't investigate t$$anonymous$$s possibility). Every time new pngs are added to Assets\Resources\Glyphs folder, I then click Repack Glyphs on Glypher inspector, and my glyph table gets updated. Names of the glyphs are taken from file names. A few notes:

  1. T$$anonymous$$s code relies completely on assumption that all your glyphs are the same size. If it's not 32*32, you have to specify it in GlyphWidth&GlyphHeight properties of the Glypher.

  2. Possibly a SpriteAtlas can be used to pack textures more efficiently, but again - I didn't run into limitations yet, so didn't check t$$anonymous$$s possibility.

  3. For the first run you may leave texture property unset - it will create the texture and instruct you of further actions in the log.

Hope it's helpful for anyone else.

Comment
OnatKorucu

People who like this

1 Show 0 · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Welcome to Unity Answers

If you’re new to Unity Answers, please check our User Guide to help you navigate through our website and refer to our FAQ for more information.

Before posting, make sure to check out our Knowledge Base for commonly asked Unity questions.

Check our Moderator Guidelines if you’re a new moderator and want to work together in an effort to improve Unity Answers and support our users.

Follow this Question

Answers Answers and Comments

229 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Get sprite atlas name 1 Answer

Sprite Atlas bug on Android 6? 0 Answers

Any way to access Sprite atlas in editor. I want add folder or sprite by editro script. 0 Answers

How to get a readable sprite from a unreadable sprite that is packed into an sprite atlas in player builds 0 Answers

Question for @Mavina , What Program? 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges