12345678910111213 |
- using UnityEngine;
- using System.IO;
- using System.Text;
- using UnityEditor;
- public class ScriptableObjectToExcelExporter
- {
- }
- // 使用方法示例
- // MyObject myObject = ... 从某处获取或创建MyObject实例
- // string filePath = "path/to/your/file.csv";
- // ScriptableObjectToExcelExporter.ExportScriptableObjectToExcel(myObject, filePath);
|