Я пытаюсь переместить куб на экране в соответствии с данными из csvfile, но это не работает. Может ли кто-нибудь помочь мне с этим кодом? - PullRequest
0 голосов
/ 30 марта 2019

Я пытаюсь переместить куб на экран в соответствии с данными из csvfile, но он не работает.Может кто-нибудь помочь мне с этим кодом?

с помощью UnityEngine;

public class LeitorCSV : MonoBehaviour

{
    public GameObject cubeTest;
    public TextAsset csvFile;

    // Update is called once per frame
    void Update()
    {
        ReadCSV();
    }

    private void ReadCSV()
    {
        string[] records = csvFile.text.Split('\n');
        for (int i = 1; i < records.Length; i++)
        {
            string[] fields = records[i].Split(',');
            cubeTest.transform.Translate(float.Parse(fields[1]), 
float.Parse(fields[2]), float.Parse(fields[3]));
        }
    }
}

1 Ответ

0 голосов
/ 01 апреля 2019

Я пробовал так и не работает.

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

public class leitorCSV2 : MonoBehaviour
{
    public GameObject cubeTest;
    public TextAsset csvFile;

    // Update is called once per frame
    void Update()
    {
        readCSV();


    }

    void readCSV()
    {
        string[] records = csvFile.text.Split('\n');

        for (int i = 1; i < records.Length; i++)
        {
            string[] fields = records[i].Split(',');

            float x = float.TryParse(fields[1], out x) ? x : 0;
            float y = float.TryParse(fields[2], out y) ? y : 0;
            float z = float.TryParse(fields[3], out z) ? z : 0;



            cubeTest.transform.Translate(new Vector3(x, y, z) * 
Time.deltaTime);
        }
    }
}
...