From a53d9c165c595b27f24c4165d77b37b68571ef55 Mon Sep 17 00:00:00 2001
From: client_linchunjie <461730578@qq.com>
Date: 星期一, 05 十一月 2018 20:26:48 +0800
Subject: [PATCH] 4529【前端】【1.2】BOSS秀增加跳过按钮
---
Core/GameEngine/Model/Config/ActorShowConfig.cs | 27 +++++++++++++++------------
1 files changed, 15 insertions(+), 12 deletions(-)
diff --git a/Core/GameEngine/Model/Config/ActorShowConfig.cs b/Core/GameEngine/Model/Config/ActorShowConfig.cs
index d531b2f..ab8f437 100644
--- a/Core/GameEngine/Model/Config/ActorShowConfig.cs
+++ b/Core/GameEngine/Model/Config/ActorShowConfig.cs
@@ -1,6 +1,6 @@
锘�//--------------------------------------------------------
// [Author]: 绗簩涓栫晫
-// [ Date ]: Tuesday, June 12, 2018
+// [ Date ]: Monday, November 05, 2018
//--------------------------------------------------------
using UnityEngine;
@@ -9,8 +9,8 @@
namespace TableConfig {
- public partial class ActorShowConfig : ConfigBase {
-
+ public partial class ActorShowConfig : ConfigBase {
+
public int ID { get ; private set ; }
public int NpcID { get ; private set ; }
public int MapID { get ; private set ; }
@@ -34,15 +34,16 @@
public int Dialogue { get ; private set ; }
public int soundId { get ; private set ; }
public int soundTime { get ; private set ; }
+ public int step { get ; private set ; }
- public override string getKey()
- {
- return ID.ToString();
+ public override string getKey()
+ {
+ return ID.ToString();
}
public override void Parse() {
- try
- {
+ try
+ {
ID=IsNumeric(rawContents[0]) ? int.Parse(rawContents[0]):0;
NpcID=IsNumeric(rawContents[1]) ? int.Parse(rawContents[1]):0;
@@ -118,10 +119,12 @@
soundId=IsNumeric(rawContents[21]) ? int.Parse(rawContents[21]):0;
soundTime=IsNumeric(rawContents[22]) ? int.Parse(rawContents[22]):0;
- }
- catch (Exception ex)
- {
- DebugEx.Log(ex);
+
+ step=IsNumeric(rawContents[23]) ? int.Parse(rawContents[23]):0;
+ }
+ catch (Exception ex)
+ {
+ DebugEx.Log(ex);
}
}
--
Gitblit v1.8.0