From 47e3a9e94423e98113482e510fd67c8ddbccd6e8 Mon Sep 17 00:00:00 2001
From: client_Wu Xijin <364452445@qq.com>
Date: 星期六, 24 十一月 2018 20:21:22 +0800
Subject: [PATCH] 5038 【1.3】4G环境下,地图分包下载显示优化
---
Core/GameEngine/Model/Config/PriorBundleConfig.cs | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/Core/GameEngine/Model/Config/PriorBundleConfig.cs b/Core/GameEngine/Model/Config/PriorBundleConfig.cs
index 2ad589e..b0dab0c 100644
--- a/Core/GameEngine/Model/Config/PriorBundleConfig.cs
+++ b/Core/GameEngine/Model/Config/PriorBundleConfig.cs
@@ -1,6 +1,6 @@
锘�//--------------------------------------------------------
// [Author]: 绗簩涓栫晫
-// [ Date ]: Thursday, November 01, 2018
+// [ Date ]: Saturday, November 24, 2018
//--------------------------------------------------------
using UnityEngine;
@@ -15,6 +15,7 @@
public string AssetABName { get ; private set; }
public int AssetType { get ; private set ; }
public int Prior { get ; private set ; }
+ public int mapId { get ; private set ; }
public override string getKey()
{
@@ -31,6 +32,8 @@
AssetType=IsNumeric(rawContents[2]) ? int.Parse(rawContents[2]):0;
Prior=IsNumeric(rawContents[3]) ? int.Parse(rawContents[3]):0;
+
+ mapId=IsNumeric(rawContents[4]) ? int.Parse(rawContents[4]):0;
}
catch (Exception ex)
{
--
Gitblit v1.8.0