文本文件到 Unity 3D GUI 画布文本框

文本文件到 Unity 3D GUI 画布文本框

因此,有用户给了我这个代码,他声称这个代码可以完成我想要的功能......即显示代码中注明的 txt 文件并将其中的单行信息发布到 GUI 文本框中...

然而,什么也没有发生——有什么想法出了什么问题吗?

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
using System.IO;

public class driverVersionText : MonoBehaviour
{

    public Text driverVerText = null;
    // Start is called before the first frame update
    void Start()
    {
        driverVerText.text = System.IO.File.ReadAllLines(@"C:\DriverVersion.txt");
    }
}

相关内容