46 lines
1.2 KiB
C#
46 lines
1.2 KiB
C#
public class LiaoNingJiaoZhuanData
|
|
{
|
|
|
|
public int id;//UID;
|
|
|
|
public string ModuleName;//模块;
|
|
|
|
public string SubModuleName;//模块内容;
|
|
|
|
public string ModelSpriteName;//模式图片路径;
|
|
|
|
public string Operation;//操作;
|
|
|
|
public string TipSoundText;//提示语音文本;
|
|
|
|
public string SpriteName;//图片路径(名字);
|
|
|
|
public string ToolName;//工具库Or材料库;
|
|
|
|
public string TaskText;//文字提示;
|
|
|
|
public string SoundText;//配音;
|
|
|
|
public string SoundPath;//配音路径;
|
|
|
|
public string StartClipPath;//播放动画前提示语音;
|
|
|
|
public string ClipPath;//TimeLine动画路径;
|
|
|
|
public string ModelPath;//模型展示路径;
|
|
|
|
public string IsConfirm;//结束后确认提示;
|
|
|
|
public int MapGroup;//图组;
|
|
|
|
public string isHaveInteraction;//点击按钮以后是否需要交互;
|
|
|
|
public string InputGameName;//点击按钮以后需要点击的物体;
|
|
|
|
public int ModuleID;//当前是第几个模块;
|
|
|
|
public string IsHaveTwoInteraction;//点击模型之后是否还需要点击第二个模型;
|
|
|
|
public string InputTwoGameName;//点击模型之后需要点击的模型;
|
|
}
|