Skip to content

Instantly share code, notes, and snippets.

@todorok1
Last active February 7, 2019 12:45
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/4e816ebe924a7c4b273a87098bd4ab6f to your computer and use it in GitHub Desktop.
Save todorok1/4e816ebe924a7c4b273a87098bd4ab6f to your computer and use it in GitHub Desktop.
CSVファイルをXMLファイルに変換するEditor拡張の準備
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[CreateAssetMenu(menuName = "MyScriptable/Create CSV to XML Converter")]
public class CsvToXmlConverter : ScriptableObject {
public TextAsset csvFile;
public string xmlFileName;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment