111
This commit is contained in:
28
Assets/05.TableTextConversion/RunTime/Base/UIEntity.cs
Normal file
28
Assets/05.TableTextConversion/RunTime/Base/UIEntity.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Sirenix.OdinInspector;
|
||||
|
||||
namespace Stary.Evo.TableTextConversion
|
||||
{
|
||||
[Serializable]
|
||||
public class UIEntity
|
||||
{
|
||||
// 序号
|
||||
[GUIColor(0, 1, 0)] public int index;
|
||||
// 名称
|
||||
public string uiid;
|
||||
// 名称描述
|
||||
public string filename;
|
||||
|
||||
public string uitype;
|
||||
public List<SubtitleInfo> subtitle;
|
||||
}
|
||||
[Serializable]
|
||||
public class SubtitleInfo
|
||||
{
|
||||
public string lineid;
|
||||
public string subtitle;
|
||||
public float start;
|
||||
public float end;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user