csharp 使用脚本更改TextMesh Pro文本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 使用脚本更改TextMesh Pro文本相关的知识,希望对你有一定的参考价值。

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using TMPro;  // Make sure to add this import statement

public class ChangeText : MonoBehaviour
{
    // Place this script on the Canvas. 
    // Drop the text element into the following channel:

    public TextMeshProUGUI changingText;

    // NOTE: this will not work with basic text.

    public void TextChange(string newText) // Point your button to this method. You can pass whatever text you want through that interface 
                                           // or just remove the parameter and put your string in here.
    {
        changingText.GetComponent<TextMeshProUGUI>().text = newText;
    }
}

以上是关于csharp 使用脚本更改TextMesh Pro文本的主要内容,如果未能解决你的问题,请参考以下文章

TextMesh Pro

csharp 从脚本中更改UI中的文本

在 Unity 中更改分辨率时,如何使我的 UI 文本以我的 2d 对象为中心?

csharp 4-25-WindowsFormsApp1 #pro_OBJ

csharp 4-25-WindowsFormsApp3 #pro_OBJ

csharp 4-25-WindowsFormsApp2 #pro_OBJ