Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 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 TemplateR · Dec 13, 2015 at 02:52 PM · arrayfilereadtxt

How to read text file to array for my generateLetter script?

Hello,

I´m writing a game level, where you must collect letters from a word and putting it in the correct order. The thing is, that I have 3 word in an arraylist. What I wanted to have is, that the words should be loaded from a txt-files into my level instead from an array.

So my question is: How to do it?

Here is my generateLetter Script with Array, which was written in JavaScript:

 #pragma strict
 //für den Namensraum System.IO
 import System.IO;
 
 //für das Prefab
 static var letter : TextMesh;
 //für die Positionen
 var minX : int;
 var maxX : int;
 var minZ : int;
 var maxZ : int;
 
 //für die bereits gesammelten Buchstaben
 private var collectedLetters : String;
 
 //für die Wörter
 var words : String[] = ["Baum", "Blatt", "Ast"];
 private var word : String;
 
 function Start () {
     //ist ein TextMesh übergeben worden?
     if (letter == null) {
         Debug.Log("Sie müssen ein TextMesh angeben.");
         return;
     }
     //ein zufälliges Wort ermitteln
     //word ist eine private Member-Variable
     word = words[Random.Range(0, words.Length)];
     //die Buchstaben im vorgegebenen Bereich verteilen
     for (var i : int = 0; i < word.Length; i++) {
         var position: Vector3 = Vector3(Random.Range(minX, maxX), 1, Random.Range(minZ, maxZ));    
         var letterBox : TextMesh = Instantiate(letter,position, transform.rotation);
         letterBox.text = word[i].ToString();
     }
 }
 
 function Update () {
 
 }
 
 function CollectLetters (letter : String) {
     //die Buchstaben anhängen
     collectedLetters = collectedLetters + letter;
 }
 
 function OnDestroy() {
     //den Dateinamen erstellen
     var filename : String;
     filename = Path.Combine(Application.persistentDataPath, "letters.txt");
 
     //eine neue Instanz von StreamWriter erzeugen
     var myFile : StreamWriter = new StreamWriter(filename);
     //die Zeichenkette speichern
     myFile.WriteLine(collectedLetters);
     //und das Suchwort
     myFile.WriteLine(word);
     //Datei schließen
     myFile.Close();
 }
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

0 Replies

· Add your reply
  • Sort: 

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

2 People are following this question.

avatar image avatar image

Related Questions

Help me about reading .TXT File 4 Answers

How do I read read from and write to a text file? 2 Answers

How can I read data from a text file, putting a large amount of data into structures 2 Answers

Save/Copy a .txt file a runtime 1 Answer

C# Convert json arrays to unity arrys 3 Answers


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