• Как отобразить текст из файла txt в UI Unity?

    @GORA4 Автор вопроса
    Хорошо, а как можно вывести текст не в консоль, а в текст Unity?

    using UnityEngine;
    using System;
    using System.IO;
    using System.Threading.Tasks;
    
    public class TextUI : MonoBehaviour
        {
        void Start()
        {
            static async Task Main(string[] args)
            {
                string path = @"C:\Users\Professional\Dropbox\SD\text.txt";
    
                try
                {
                    using (StreamReader sr = new StreamReader(path))
                    {
                        Console.WriteLine(sr.ReadToEnd());
                    }
                    // асинхронное чтение
                    using (StreamReader sr = new StreamReader(path))
                    {
                        Console.WriteLine(await sr.ReadToEndAsync());
                    }
                }
                catch (Exception e)
                {
                    Console.WriteLine(e.Message);
                }
            }
        }
    }
  • Как отобразить текст из файла txt в UI Unity?

    @GORA4 Автор вопроса
    Александр Лыкасов,
    Да, конечно.
    Писал не сам, нашел в интернете.

    using UnityEngine;
    using UnityEditor;
    using System.IO;
    public class HandleTextFile : MonoBehaviour
    {
        // This is how I read a textfile, contained within the Resources
        // folder:
        TextAsset textFile;
        string text;
        string[] lines;
        void Start()
        {
            textFile = Resources.Load("Resources\test") as TextAsset; // Loads file
            text = textFile.ToString(); // Converts to string
            lines = text.Split('\n'); // Splits per newline
            // Do something with it
        }
    }