This commit is contained in:
Han
2025-04-01 18:26:48 +08:00
parent c3e2616c3a
commit ac499e2202
39 changed files with 1258 additions and 5 deletions

View File

@@ -0,0 +1,34 @@
using System.Collections;
using System.Collections.Generic;
using System.Threading.Tasks;
using UnityEngine;
using Stary.Evo.TableTextConversion;
public class Test : MonoBehaviour
{
// Start is called before the first frame update
/*async void Start()
{
Task<AudioTableData> audioTableData = ReadDumpInformation.Read<AudioTableData>();
await audioTableData;
AudioTableData data = audioTableData.Result;
if (data != null)
{
Debug.Log($"UnityEvo:{data.infos[3].name}");
}
}*/
void Start()
{
AudioTableData audioTableData = ReadDumpInformation.ReadInEditor<AudioTableData>();
if (audioTableData != null)
{
Debug.Log($"UnityEvo:{audioTableData.infos[3].name}");
}
}
// Update is called once per frame
void Update()
{
}
}