Skip to content

Instantly share code, notes, and snippets.

@todorok1
Last active February 1, 2019 10:04
CSVファイルからScriptableObjectにデータをセットするサンプル
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[CreateAssetMenu(menuName = "MyScriptable/Create CSV Impoter")]
public class CsvImporter : ScriptableObject {
public TextAsset csvFile;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment