Skip to content

Instantly share code, notes, and snippets.

@todorok1
Last active February 1, 2019 10:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save todorok1/0ea60a5ee393fa523024f6d8f0334218 to your computer and use it in GitHub Desktop.
Save todorok1/0ea60a5ee393fa523024f6d8f0334218 to your computer and use it in GitHub Desktop.
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