Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 Jun 22
sparklines
Close Help
  • 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 /
avatar image
0
Question by SuperSparkplug · Jan 24, 2014 at 08:05 AM · materialfonttextmeshprocedural-generation

Changing the font of a textmesh?

In my game, I have a series of a textMesh objects that procedurally generate as the game goes on through my code. However, I want to play with the typography to make it better than just Arial font. I've been looking up tutorials on how to put extra fonts in my game but the problem is they all use existing objects.

My textmesh objects don't exist unless the game is already running. I've tried adding font to my textmeshes while the game is running by dragging the font to the object on my hierarchy and it works as it creates a new material over the text, however trying to do this with code only produces disastrous results. The most I can get is that it makes my text into random pink squares that are in the completely wrong position. I've been tinkering with the code, but I can't get it to create a new text material over the textmeshes.

Here is my code for text generation. Does anyone have any idea how to accomplish this and changed the text render material.

         foreach (var gameObj in FindObjectsOfType(typeof(GameObject)) as GameObject[]) {
             if (gameObj.name == "Body") {
     
                 objText.Add (new GameObject ("TextObject"));
 
 
                 TextMesh textMesh = objText.Last ().AddComponent<TextMesh> ();
                 Font ArialFont = (Font)Resources.GetBuiltinResource (typeof(Font), "Arial.ttf");
                 textMesh.font = ArialFont;
                 
                 textMesh.text = Util.WordWrap (content.answers[doorAnswer].text, 20);
                 textMesh.renderer.material = ArialFont.material;
                 textMesh.fontSize = 15;
                 textMesh.fontStyle = FontStyle.Bold;

Comment
Add comment
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
0

Answer by canbeing · May 28, 2014 at 09:56 AM

I Use renderer.sharedMaterial instead of textMesh.renderer.material. And that works fine!

     Renderer renderer = go.GetComponent<Renderer>();
     if (renderer != null && renderer.sharedMaterial!=null && renderer.sharedMaterial.Equals(FontToReplace.material))
     {
         renderer.sharedMaterial = FontForIos.material;
     }
Comment
Add comment · 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.

Follow this Question

Answers Answers and Comments

19 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

Related Questions

How to add font material to TextMesh in the code? 0 Answers

Is there ANY way to enter "Font Material" in the inspector? 0 Answers

How do I access built in shaders and fonts? 1 Answer

Custom Font works in editor but not in build 2 Answers

using a different shader on font material 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