UI 文本转换开发

This commit is contained in:
2025-04-25 10:02:32 +08:00
parent 748be76146
commit bb0ef93e78
3 changed files with 115 additions and 47 deletions

View File

@@ -22,6 +22,7 @@ namespace Stary.Evo.TableTextConversion
public string filename;
public string uitype;
public List<SubtitleInfo> subtitle;
public string nodelocation;
@@ -34,6 +35,14 @@ namespace Stary.Evo.TableTextConversion
public string notes;
}
[Serializable]
public class SubtitleInfo
{
public string lineid;
public string subtitle;
public float start;
public float end;
}
}
}