跳过引导修改
parent
c08dd94ada
commit
a81994daaf
|
|
@ -252,6 +252,9 @@ namespace Gameplay.Guide
|
|||
/// <returns></returns>
|
||||
private int GetGuideGroupId(int completeStepId)
|
||||
{
|
||||
if (completeStepId >= int.MaxValue)
|
||||
return 0; // 跳过引导
|
||||
|
||||
GuideConfig guideConfig = TableManager.Instance.Tables.GuideConfig;
|
||||
DataGuideCfg completeCfg = guideConfig.Get(completeStepId); // 已经完成的引导步骤配置
|
||||
if (null == completeCfg) // 没有获取到,说明不是存在的配置id
|
||||
|
|
|
|||
Loading…
Reference in New Issue