Skip to content

Instantly share code, notes, and snippets.

@todorok1
Created February 6, 2019 12:53
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/9867fb6eb23dacf6413030ddfcee4579 to your computer and use it in GitHub Desktop.
Save todorok1/9867fb6eb23dacf6413030ddfcee4579 to your computer and use it in GitHub Desktop.
CSVファイルをエクスポートするEditor拡張のためのScriptableObject
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[CreateAssetMenu(menuName = "MyScriptable/Create CSV Exporter")]
public class CsvExporter : ScriptableObject {
public string fileName;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment