Ugui Text Wrap problem

Source: Internet
Author: User
Some people say that the text of Ugui cannot be changed, and some people say that you can wrap it by \ n and enclose the entire string.
In fact they are not on a channel at all.
So let's just say that the text of the text component is assigned a "<color=red>xxxx</color>\nxxxx" by the code, which is definitely a line-wrapping effect; In the text component of the Inspector panel input the same content is not, even if the hand is not copied in the wrong, this Nima what ghost.
Later found that it has secretly turned into a \\n, so we just have to change it back on the line.
Using Unityengine;
Using Unityengine.ui;
   
public class Ryantextlinefeed:monobehaviour
{
    Text myText;
   
    void Start ()
    {
        myText = getcomponent<text> ();
        Mytext.text = MyText.text.Replace ("\\n", "\ n");}
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.