From da730e386e9c9cd6752caabb4d18c4c3a12440d7 Mon Sep 17 00:00:00 2001
From: client_Wu Xijin <364452445@qq.com>
Date: 星期六, 11 八月 2018 14:35:18 +0800
Subject: [PATCH] 2407 【开发】引导新增再次激活功能
---
Core/GameEngine/Model/Config/GuideConfig.cs | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/Core/GameEngine/Model/Config/GuideConfig.cs b/Core/GameEngine/Model/Config/GuideConfig.cs
index fa0767e..e2b025e 100644
--- a/Core/GameEngine/Model/Config/GuideConfig.cs
+++ b/Core/GameEngine/Model/Config/GuideConfig.cs
@@ -1,6 +1,6 @@
锘�//--------------------------------------------------------
// [Author]: 绗簩涓栫晫
-// [ Date ]: Thursday, June 21, 2018
+// [ Date ]: Saturday, August 11, 2018
//--------------------------------------------------------
using UnityEngine;
@@ -19,6 +19,7 @@
public int[] Steps;
public int CanSkip { get ; private set ; }
public int RemoveWhenOtherGuide { get ; private set ; }
+ public int CannotCompleteByClick { get ; private set ; }
public override string getKey()
{
@@ -48,6 +49,8 @@
CanSkip=IsNumeric(rawContents[6]) ? int.Parse(rawContents[6]):0;
RemoveWhenOtherGuide=IsNumeric(rawContents[7]) ? int.Parse(rawContents[7]):0;
+
+ CannotCompleteByClick=IsNumeric(rawContents[8]) ? int.Parse(rawContents[8]):0;
}
catch (Exception ex)
{
--
Gitblit v1.8.0