This repository has been archived on 2026-01-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ULD_PT/Assets/Scripts/CSVReaderTest.cs
jmaniuvc 335bfbaf4c main
2025-05-29 10:49:48 +09:00

18 lines
374 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class CSVReaderTest : MonoBehaviour
{
private void Start()
{
List<Dictionary<string, object>> csv_Data = CSVReader.Read("LibraryExmaple");
for (int i = 0; i < csv_Data.Count; i++)
{
print(csv_Data[i]["weight"].ToString());
}
}
}