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 /
  • Help Room /
avatar image
0
Question by YDove · Jan 28, 2016 at 01:27 PM · arrayvector3textfield

How do I make .txt files -> arrays -> Vector3 ? (js)

Hi, I'm trying to make numbers in a text file into arrays, and then make them into 3D vectors.

the text file goes like this

alt text

It has 3 numbers in a line, and that 3 numbers represent one vector.

Here's my code.

var dataFile : TextAsset;

function Start() { var i=0; var j=0; var k=0; var l=0; var arr_1 = new Array(); var arr_2 = new Array(); var arr_3 = new Array(); var txtArr = new Array();

 while (!dataFile.text[k])
 {
     while (!dataFile.text[k]=="\n")
     {
         while (!dataFile.text[k]==" ")
         {
             if (j==0)
                 arr_1[l]=dataFile.text[k];
             else if (j==1)
                 arr_2[l]=dataFile.text[k];
             else if (j==2)
                 arr_3[l]=dataFile.text[k];
             k++;
         }
         if (j==2)
             j=0;
         else
             j++;
         l=0;
         k++;
     }
     txtArr[i]=(arr_1,arr_2,arr_3);
     k++;

 }

 Debug.Log(dataFile);

 var Vec_1 : Vector3; 
 var Vec_2 : Vector3;

 while(!txtArr[i]){
     Vec_1 = Vector3(txtArr[i][0],txtArr[i][1],txtArr[i][2]);
     Vec_2 = Vector3(txtArr[i+1][0],txtArr[i+1][1],txtArr[i+1][2]);

     CreateCylinderBetweenPoints(Vec_1, Vec_2, 0.1);
     }

}

the createcylinder~ thing is another function, so you don't have to consider that.

help me please

텍스트.png (34.6 kB)
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

3 People are following this question.

avatar image avatar image avatar image

Related Questions

Need help with multiple updating transform positions 2 Answers

assigning several positions and call array of raycasts 0 Answers

Create a 2D array (3 columns, 1000 rows)? 1 Answer

Vector3 array not showing up in inspector! 1 Answer

Get Vector3s in range 1 Answer


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