Skip to content

Instantly share code, notes, and snippets.

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