diff --git a/Assets/Editor/BFOthersTools/ExportExcelTools/ExportExcelTools.cs b/Assets/Editor/BFOthersTools/ExportExcelTools/ExportExcelTools.cs
index d0afb4d3c..3233a366f 100644
--- a/Assets/Editor/BFOthersTools/ExportExcelTools/ExportExcelTools.cs
+++ b/Assets/Editor/BFOthersTools/ExportExcelTools/ExportExcelTools.cs
@@ -123,7 +123,6 @@ namespace BFEditor
}
}
- // 检查monster
String luaConfigPath = null;
if(isDeveloper)
{
@@ -135,6 +134,75 @@ namespace BFEditor
}
var configDirInfo = new DirectoryInfo(luaConfigPath);
var configFileInfos = configDirInfo.GetFiles(suffix, SearchOption.TopDirectoryOnly);
+
+ // 检查棋盘文件格式
+
+ var luaScriptString = @"local cfg = require('app/config/chapter_board')
+ if not cfg or not cfg.data then
+ return ''
+ end
+ cfg = cfg.data
+ local tempMap = {}
+ local addErrorInfo = function(errorInfo, cfgId, errorStr)
+ if not tempMap[cfgId] then
+ tempMap[cfgId] = true
+ table.insert(errorInfo, 'cfgId = ' .. cfgId)
+ end
+
+ table.insert(errorInfo, ' ' .. errorStr)
+ end
+
+ local errorInfo = {}
+ for k, info in pairs(cfg) do
+ local board = info.board
+ if not board then
+ addErrorInfo(errorInfo, k, '没有board字段,请检查')
+ end
+
+ if #board < 49 then
+ addErrorInfo(errorInfo, k, '没有board长度不足,请检查,当前长度为' .. #board)
+ end
+
+ for index, v in ipairs(board) do
+ if not v[1] then
+ addErrorInfo(errorInfo, k, 'board字段中' .. index .. '索引没有格子类型')
+ end
+ if not v[2] then
+ addErrorInfo(errorInfo, k, 'board字段中' .. index .. '索引没有元素类型')
+ end
+ end
+
+ local mystery_box_board = info.mystery_box_board
+ if mystery_box_board then
+ for index, v in ipairs(mystery_box_board) do
+ if not v[1] then
+ addErrorInfo(errorInfo, k, 'mystery_box_board字段中' .. index .. '索引没有格子类型')
+ end
+ if not v[2] then
+ addErrorInfo(errorInfo, k, 'mystery_box_board字段中' .. index .. '索引没有元素类型')
+ end
+ end
+ end
+ end
+ if #errorInfo > 0 then
+ return table.concat(errorInfo, '\n');
+ end
+
+ return ''";
+ var resultStr = env.DoString(luaScriptString);
+ if (resultStr.Length > 0)
+ {
+ foreach(var strObj in resultStr)
+ {
+ var str = Convert.ToString(strObj);
+ if(!String.IsNullOrEmpty(str))
+ {
+ sb.Append(str + "\n");
+ }
+ }
+ }
+
+ // 检查monster
string monsterConfigListLua = "{";
foreach (var file in configFileInfos)
{
@@ -145,7 +213,7 @@ namespace BFEditor
}
}
monsterConfigListLua += "}";
- var luaScriptString = "local ids = {}\n local MONSTER_LIST = " + monsterConfigListLua + "\n";
+ luaScriptString = "local ids = {}\n local MONSTER_LIST = " + monsterConfigListLua + "\n";
luaScriptString += @"local str = {}
for i, name in ipairs(MONSTER_LIST) do
if name ~= 'monster_base' and name ~= 'monster_position' and name ~= 'monster_position_base' then
@@ -162,7 +230,7 @@ namespace BFEditor
return table.concat(str, '\n');
end
return ''";
- var resultStr = env.DoString(luaScriptString);
+ resultStr = env.DoString(luaScriptString);
if (resultStr.Length > 0)
{
foreach(var strObj in resultStr)
@@ -175,58 +243,58 @@ namespace BFEditor
}
}
// 检查怪物的坐标信息
- var luaScriptString2 = @"local MONSTER_POSITION_KEY = { 'monster_1','monster_2','monster_3','monster_4','monster_5','monster_6','monster_7','monster_8','monster_9','monster_10','monster_11','monster_12'}
- local list = {'enemy_id_1', 'enemy_id_2', 'enemy_id_3'}
- local list2 = {'enemy_position_1', 'enemy_position_2', 'enemy_position_3'}
- local positionConf = require('app/config/monster_position_base').data
- local monsterPositionConf = require('app/config/monster_position').data
- local stage = require('app/config/story_stage').data
- local str = {}
- for k, v in pairs(stage) do
- for k2, v2 in ipairs(list) do
- if v[v2] then
- local monsterPosition = v[list2[k2]]
- for i, monsterId in ipairs(v[v2]) do
- local monsterPositionInfo = monsterPositionConf[monsterPosition]
- local positionInfo = positionConf[monsterPositionInfo[MONSTER_POSITION_KEY[i]]]
- if positionInfo == nil then
- table.insert(str, 'stage表的id为' .. k .. '的第' .. k2 .. '波怪的坐标有问题')
- end
- end
- end
- end
- end
- local stage2 = require('app/config/adventure_stage').data
- for k, v in pairs(stage2) do
- for k2, v2 in ipairs(list) do
- if v[v2] then
- local monsterPosition = v[list2[k2]]
- for i, monsterId in ipairs(v[v2]) do
- local monsterPositionInfo = monsterPositionConf[monsterPosition]
- local positionInfo = positionConf[monsterPositionInfo[MONSTER_POSITION_KEY[i]]]
- if positionInfo == nil then
- table.insert(str, 'adventure_stage表的id为' .. k .. '的第' .. k2 .. '波怪的坐标有问题')
- end
- end
- end
- end
- end
- if #str > 0 then
- return table.concat(str, '\n');
- end
- return ''";
- var resultStr2 = env.DoString(luaScriptString2);
- if (resultStr2.Length > 0)
- {
- foreach(var strObj in resultStr2)
- {
- var str = Convert.ToString(strObj);
- if(!String.IsNullOrEmpty(str))
- {
- sb.Append(str + "\n");
- }
- }
- }
+ // var luaScriptString2 = @"local MONSTER_POSITION_KEY = { 'monster_1','monster_2','monster_3','monster_4','monster_5','monster_6','monster_7','monster_8','monster_9','monster_10','monster_11','monster_12'}
+ // local list = {'enemy_id_1', 'enemy_id_2', 'enemy_id_3'}
+ // local list2 = {'enemy_position_1', 'enemy_position_2', 'enemy_position_3'}
+ // local positionConf = require('app/config/monster_position_base').data
+ // local monsterPositionConf = require('app/config/monster_position').data
+ // local stage = require('app/config/story_stage').data
+ // local str = {}
+ // for k, v in pairs(stage) do
+ // for k2, v2 in ipairs(list) do
+ // if v[v2] then
+ // local monsterPosition = v[list2[k2]]
+ // for i, monsterId in ipairs(v[v2]) do
+ // local monsterPositionInfo = monsterPositionConf[monsterPosition]
+ // local positionInfo = positionConf[monsterPositionInfo[MONSTER_POSITION_KEY[i]]]
+ // if positionInfo == nil then
+ // table.insert(str, 'stage表的id为' .. k .. '的第' .. k2 .. '波怪的坐标有问题')
+ // end
+ // end
+ // end
+ // end
+ // end
+ // local stage2 = require('app/config/adventure_stage').data
+ // for k, v in pairs(stage2) do
+ // for k2, v2 in ipairs(list) do
+ // if v[v2] then
+ // local monsterPosition = v[list2[k2]]
+ // for i, monsterId in ipairs(v[v2]) do
+ // local monsterPositionInfo = monsterPositionConf[monsterPosition]
+ // local positionInfo = positionConf[monsterPositionInfo[MONSTER_POSITION_KEY[i]]]
+ // if positionInfo == nil then
+ // table.insert(str, 'adventure_stage表的id为' .. k .. '的第' .. k2 .. '波怪的坐标有问题')
+ // end
+ // end
+ // end
+ // end
+ // end
+ // if #str > 0 then
+ // return table.concat(str, '\n');
+ // end
+ // return ''";
+ // var resultStr2 = env.DoString(luaScriptString2);
+ // if (resultStr2.Length > 0)
+ // {
+ // foreach(var strObj in resultStr2)
+ // {
+ // var str = Convert.ToString(strObj);
+ // if(!String.IsNullOrEmpty(str))
+ // {
+ // sb.Append(str + "\n");
+ // }
+ // }
+ // }
env.Dispose();
return sb;
}
@@ -274,19 +342,19 @@ namespace BFEditor
// ExportExcelTools.SpecialProcessSkill(isDeveloper, SkillSpecialOnOutput);
// ExportExcelTools.dealMonsterConfig(isDeveloper);
- // var sb = ExportExcelTools.CheckLuaConfig(isDeveloper);
- // if (sb.ToString().Length > 0)
- // {
- // failFlag = true;
- // designSuccFlag = false;
- // Debug.Log("导表规范检查异常!!!");
- // Debug.Log(sb.ToString());
- // EditorUtility.DisplayDialog("导入失败配置", sb.ToString(), "ok");
- // }
- // else
- // {
- // Debug.Log("配置规范检查通过.");
- // }
+ var sb = ExportExcelTools.CheckLuaConfig(isDeveloper);
+ if (sb.ToString().Length > 0)
+ {
+ failFlag = true;
+ designSuccFlag = false;
+ Debug.Log("导表规范检查异常!!!");
+ Debug.Log(sb.ToString());
+ EditorUtility.DisplayDialog("导入失败配置", sb.ToString(), "ok");
+ }
+ else
+ {
+ Debug.Log("配置规范检查通过.");
+ }
AssetDatabase.SaveAssets();
AssetDatabase.Refresh();
diff --git a/Assets/Scripts/Component/Helper/CharacterSpineHelper.cs b/Assets/Scripts/Component/Helper/CharacterSpineHelper.cs
index bfd8111cb..1f7038d5f 100644
--- a/Assets/Scripts/Component/Helper/CharacterSpineHelper.cs
+++ b/Assets/Scripts/Component/Helper/CharacterSpineHelper.cs
@@ -35,6 +35,14 @@ namespace BF
public void PlayAnimation(string animName, bool loop, bool forceRefresh)
{
+#if UNITY_EDITOR
+ float duration = GetAnimationDuration(animName);
+ if(BFLog.LogAssert(duration > 0, this.gameObject.name + " not have " + animName))
+ {
+ return;
+ }
+#endif
+
animationState.SetAnimation(0, animName, loop);
if (forceRefresh)
{
@@ -232,7 +240,11 @@ namespace BF
public float GetAnimationDuration(string name)
{
- return skeletonGraphic.skeletonDataAsset.GetAnimationStateData().SkeletonData.FindAnimation(name).Duration;
+ Spine.Animation animation = skeletonGraphic.skeletonDataAsset.GetAnimationStateData().SkeletonData.FindAnimation(name);
+ if (animation == null){
+ return 0.0f;
+ }
+ return animation.Duration;
}
public float GetAnimationKeyFrameTime(string name)
diff --git a/Assets/Scripts/Component/Helper/PrefabHelper.cs b/Assets/Scripts/Component/Helper/PrefabHelper.cs
index 2c9d57564..e125abab8 100644
--- a/Assets/Scripts/Component/Helper/PrefabHelper.cs
+++ b/Assets/Scripts/Component/Helper/PrefabHelper.cs
@@ -361,6 +361,38 @@ namespace BF
}
}
+ public float GetRectWidth(int index)
+ {
+ RectTransform rectTransform = null;
+ if (index >= 0 && index < prefabList.Count)
+ {
+ rectTransform = prefabList[index].gameObject.transform as RectTransform;
+ return rectTransform.rect.width;
+ }
+ else if (index < 0)
+ {
+ rectTransform = this.transform as RectTransform;
+ return rectTransform.rect.width;
+ }
+ return 0.0f;
+ }
+
+ public float GetRectHeight(int index)
+ {
+ RectTransform rectTransform = null;
+ if (index >= 0 && index < prefabList.Count)
+ {
+ rectTransform = prefabList[index].gameObject.transform as RectTransform;
+ return rectTransform.rect.height;
+ }
+ else if (index < 0)
+ {
+ rectTransform = this.transform as RectTransform;
+ return rectTransform.rect.height;
+ }
+ return 0.0f;
+ }
+
public void SetPosition(int index, float x, float y, float z)
{
if (index >= 0 && index < prefabList.Count)
diff --git a/Assets/Scripts/Component/UI/BFLayout/BFGridLayout.cs b/Assets/Scripts/Component/UI/BFLayout/BFGridLayout.cs
index 628a2919c..36c136fb2 100644
--- a/Assets/Scripts/Component/UI/BFLayout/BFGridLayout.cs
+++ b/Assets/Scripts/Component/UI/BFLayout/BFGridLayout.cs
@@ -171,7 +171,7 @@ namespace BF
if (ConstraintType == Constraint.Flexible)
{
column = (int) Math.Floor((rectSize.x + Spaceing.x) / (CellSize.x + Spaceing.x));
- column = Math.Min(column, childCount);
+ column = Math.Max(1, Math.Min(column, childCount));
if (childCount % column == 0)
{
diff --git a/Assets/XLua/Gen/BF_PrefabHelperWrap.cs b/Assets/XLua/Gen/BF_PrefabHelperWrap.cs
index fa505a9de..2bb881c5a 100644
--- a/Assets/XLua/Gen/BF_PrefabHelperWrap.cs
+++ b/Assets/XLua/Gen/BF_PrefabHelperWrap.cs
@@ -21,7 +21,7 @@ namespace XLua.CSObjectWrap
{
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
System.Type type = typeof(BF.PrefabHelper);
- Utils.BeginObjectRegister(type, L, translator, 0, 39, 4, 1);
+ Utils.BeginObjectRegister(type, L, translator, 0, 41, 4, 1);
Utils.RegisterFunc(L, Utils.METHOD_IDX, "GetGameObjectByName", _m_GetGameObjectByName);
Utils.RegisterFunc(L, Utils.METHOD_IDX, "GetListCount", _m_GetListCount);
@@ -44,6 +44,8 @@ namespace XLua.CSObjectWrap
Utils.RegisterFunc(L, Utils.METHOD_IDX, "AddSizeDelta", _m_AddSizeDelta);
Utils.RegisterFunc(L, Utils.METHOD_IDX, "GetSizeDelta", _m_GetSizeDelta);
Utils.RegisterFunc(L, Utils.METHOD_IDX, "CacheSizeDelt", _m_CacheSizeDelt);
+ Utils.RegisterFunc(L, Utils.METHOD_IDX, "GetRectWidth", _m_GetRectWidth);
+ Utils.RegisterFunc(L, Utils.METHOD_IDX, "GetRectHeight", _m_GetRectHeight);
Utils.RegisterFunc(L, Utils.METHOD_IDX, "SetPosition", _m_SetPosition);
Utils.RegisterFunc(L, Utils.METHOD_IDX, "AddPosition", _m_AddPosition);
Utils.RegisterFunc(L, Utils.METHOD_IDX, "SetLocalPosition", _m_SetLocalPosition);
@@ -729,6 +731,64 @@ namespace XLua.CSObjectWrap
}
+ [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
+ static int _m_GetRectWidth(RealStatePtr L)
+ {
+ try {
+
+ ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
+
+
+ BF.PrefabHelper gen_to_be_invoked = (BF.PrefabHelper)translator.FastGetCSObj(L, 1);
+
+
+
+ {
+ int _index = LuaAPI.xlua_tointeger(L, 2);
+
+ var gen_ret = gen_to_be_invoked.GetRectWidth( _index );
+ LuaAPI.lua_pushnumber(L, gen_ret);
+
+
+
+ return 1;
+ }
+
+ } catch(System.Exception gen_e) {
+ return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
+ }
+
+ }
+
+ [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
+ static int _m_GetRectHeight(RealStatePtr L)
+ {
+ try {
+
+ ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
+
+
+ BF.PrefabHelper gen_to_be_invoked = (BF.PrefabHelper)translator.FastGetCSObj(L, 1);
+
+
+
+ {
+ int _index = LuaAPI.xlua_tointeger(L, 2);
+
+ var gen_ret = gen_to_be_invoked.GetRectHeight( _index );
+ LuaAPI.lua_pushnumber(L, gen_ret);
+
+
+
+ return 1;
+ }
+
+ } catch(System.Exception gen_e) {
+ return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
+ }
+
+ }
+
[MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
static int _m_SetPosition(RealStatePtr L)
{
diff --git a/Assets/arts/atlas/icon/item.asset b/Assets/arts/atlas/icon/item.asset
index 86160d260..94a56c28b 100644
--- a/Assets/arts/atlas/icon/item.asset
+++ b/Assets/arts/atlas/icon/item.asset
@@ -14,6 +14,7 @@ MonoBehaviour:
m_EditorClassIdentifier:
spriteList:
- {fileID: 21300000, guid: ca105ffa7d9ffc347a89f665c9e3c5e5, type: 3}
+ - {fileID: 21300000, guid: c4cb736ccf6b8be4d9846836cade4735, type: 3}
- {fileID: 21300000, guid: 52da05fc5df88be4d8a092e24ccfa7fb, type: 3}
- {fileID: 21300000, guid: 3c09c3571cc8aff4fbaee4765d7f856f, type: 3}
- {fileID: 21300000, guid: fea4f86213a880344bcffd2308591e61, type: 3}
@@ -27,4 +28,4 @@ MonoBehaviour:
- {fileID: 21300000, guid: 899882c0d56e96d4caf5d82d2b469729, type: 3}
- {fileID: 21300000, guid: 91e9e926c6246844aba4b734caefb6f9, type: 3}
- {fileID: 21300000, guid: d4b21efb128aa8f4093adba3d467d268, type: 3}
- spriteNameList: 31000000320000003300000034000000350000003600000037000000df0dcedbe00dcedbe10dcedbe20dcedbe30dcedb7ef2dcef0e84dc76
+ spriteNameList: 3100000021060000320000003300000034000000350000003600000037000000df0dcedbe00dcedbe10dcedbe20dcedbe30dcedb7ef2dcef0e84dc76
diff --git a/Assets/arts/atlas/icon/item.spriteatlas b/Assets/arts/atlas/icon/item.spriteatlas
index f638a6341..fb3e5ce57 100644
--- a/Assets/arts/atlas/icon/item.spriteatlas
+++ b/Assets/arts/atlas/icon/item.spriteatlas
@@ -73,6 +73,7 @@ SpriteAtlas:
- {fileID: 21300000, guid: ca105ffa7d9ffc347a89f665c9e3c5e5, type: 3}
- {fileID: 21300000, guid: d4b21efb128aa8f4093adba3d467d268, type: 3}
- {fileID: 21300000, guid: 236fd81c35a9c1a4ca098eeeddd1821b, type: 3}
+ - {fileID: 21300000, guid: c4cb736ccf6b8be4d9846836cade4735, type: 3}
- {fileID: 21300000, guid: 52da05fc5df88be4d8a092e24ccfa7fb, type: 3}
- {fileID: 21300000, guid: f676744f0970161499163cc5d342e1ad, type: 3}
m_PackedSpriteNamesToIndex:
@@ -88,6 +89,7 @@ SpriteAtlas:
- 1
- frame_select
- frame_2
+ - 12
- 2
- frame_1
m_RenderDataMap: {}
diff --git a/Assets/arts/atlas/icon/task.asset.meta b/Assets/arts/atlas/icon/task.asset.meta
index 376ca28b3..af3c1116e 100644
--- a/Assets/arts/atlas/icon/task.asset.meta
+++ b/Assets/arts/atlas/icon/task.asset.meta
@@ -4,5 +4,5 @@ NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
- assetBundleName:
+ assetBundleName: arts/textures/icon/task.ab
assetBundleVariant:
diff --git a/Assets/arts/atlas/icon/task.spriteatlas.meta b/Assets/arts/atlas/icon/task.spriteatlas.meta
index 4908db662..77ae8fe14 100644
--- a/Assets/arts/atlas/icon/task.spriteatlas.meta
+++ b/Assets/arts/atlas/icon/task.spriteatlas.meta
@@ -4,5 +4,5 @@ NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 4343727234628468602
userData:
- assetBundleName:
+ assetBundleName: arts/textures/icon/task.ab
assetBundleVariant:
diff --git a/Assets/arts/atlas/ui/battle.asset b/Assets/arts/atlas/ui/battle.asset
index 5d36c443e..82756fced 100644
--- a/Assets/arts/atlas/ui/battle.asset
+++ b/Assets/arts/atlas/ui/battle.asset
@@ -15,6 +15,7 @@ MonoBehaviour:
spriteList:
- {fileID: 21300000, guid: b1230a75f4f278246854472f8e66182f, type: 3}
- {fileID: 21300000, guid: b4eb3a5ebff984c49ab18ba4a98799a5, type: 3}
+ - {fileID: 21300000, guid: 36e2163b4404615408f9bb0bead26217, type: 3}
- {fileID: 21300000, guid: fe047417c1765ae408c718cdde9c74a8, type: 3}
- {fileID: 21300000, guid: c38a84bed7b6ae443a92e10fd79b3e1e, type: 3}
- {fileID: 21300000, guid: 39cd734eccabde14fb2c3cffddc8d39a, type: 3}
@@ -24,12 +25,18 @@ MonoBehaviour:
- {fileID: 21300000, guid: f37b1779751e6de42b14f4d4c8f52609, type: 3}
- {fileID: 21300000, guid: 4e3da980631dad04785f6ea58dc3447f, type: 3}
- {fileID: 21300000, guid: 306205473d3cf1f4a9d821c3e2971092, type: 3}
+ - {fileID: 21300000, guid: 5aee1f758e4facd4591114d2156b6bfa, type: 3}
+ - {fileID: 21300000, guid: 3b491c50f91f0bd41862458a5c3a878f, type: 3}
+ - {fileID: 21300000, guid: 79ab89b577d0b34439a5694e8b4d66c8, type: 3}
+ - {fileID: 21300000, guid: 319d224bc95ce3a4e81c11c0f0f6266c, type: 3}
- {fileID: 21300000, guid: c2461f38eb50425419e412a32e1b2a64, type: 3}
- {fileID: 21300000, guid: f866c72d7ff31d84580d50b5b6cbb679, type: 3}
- {fileID: 21300000, guid: d860c7ea2dcad1c4a804fe48f07fcdf3, type: 3}
- {fileID: 21300000, guid: dfc7b64e38bed054fb7f4ae52e1586d6, type: 3}
- {fileID: 21300000, guid: 0928e747552d400468dcd7ba0a5cf10a, type: 3}
- {fileID: 21300000, guid: cd8cf65d131e4bf44a2d7c37bfe60080, type: 3}
+ - {fileID: 21300000, guid: 7b1941eab1a2f1e4d898491b572be0d8, type: 3}
+ - {fileID: 21300000, guid: 6c78b12198b78934fb18b95ef0ed9d73, type: 3}
- {fileID: 21300000, guid: 10dac87d52e3e6647ad3d1644b607922, type: 3}
- {fileID: 21300000, guid: 09dc5de1bb43f8e4fb620fdf5c1fdd9e, type: 3}
- {fileID: 21300000, guid: 6bbb916e771550640b39c658dbe4508f, type: 3}
@@ -37,8 +44,10 @@ MonoBehaviour:
- {fileID: 21300000, guid: 3d4e7f797f9e52a428caf685cb9d945d, type: 3}
- {fileID: 21300000, guid: 84a8e79f7596403459578a2297a00864, type: 3}
- {fileID: 21300000, guid: fb43ca103930b98418608ba14f871c21, type: 3}
+ - {fileID: 21300000, guid: f125f1d792bebc84082b65fcf8bf7286, type: 3}
- {fileID: 21300000, guid: 2deaa61a5f1d4fd44b611e3d5819ce7a, type: 3}
- {fileID: 21300000, guid: a9fd7e9a8eb4d1c488fd097ca4956501, type: 3}
+ - {fileID: 21300000, guid: afcf9e53b76eef44dba33da9caa87fc3, type: 3}
- {fileID: 21300000, guid: 260a5446c0f52084da7a05ddc0cecae8, type: 3}
- {fileID: 21300000, guid: bb012b114a991f44c8583c6cc270981d, type: 3}
- {fileID: 21300000, guid: 143a02006f322054e926abff54bc2953, type: 3}
@@ -68,11 +77,22 @@ MonoBehaviour:
- {fileID: 21300000, guid: e53d6e8ee4f256040a5d26aa8233520b, type: 3}
- {fileID: 21300000, guid: 634f8eff83cb4cd4780e6afae3bc6c65, type: 3}
- {fileID: 21300000, guid: d135766030d953b4bbb3ca2404fe28da, type: 3}
+ - {fileID: 21300000, guid: 42dfc3a8f5eda504abbaad83525865f1, type: 3}
+ - {fileID: 21300000, guid: 6dbdc0ebfecc85b4fa92d9ba6daeff71, type: 3}
+ - {fileID: 21300000, guid: b2f310782ddb4844b8cce60785415fa5, type: 3}
- {fileID: 21300000, guid: 4883eddf5771c424c964bc2e32f2cb09, type: 3}
- {fileID: 21300000, guid: b11c2f63c86e22644bbe1d930815c6c8, type: 3}
- {fileID: 21300000, guid: 90cd8a98ab36f5f429ca27d808dc664f, type: 3}
+ - {fileID: 21300000, guid: 97b4e14627583bc4999dcbe5eec17a9e, type: 3}
+ - {fileID: 21300000, guid: 87057dffa9a1a5845a920a694008eb48, type: 3}
+ - {fileID: 21300000, guid: 9b9c2c350f044674099b0adef495d39d, type: 3}
+ - {fileID: 21300000, guid: 8d4b8d154edf8074baae6ca59f21d3ff, type: 3}
+ - {fileID: 21300000, guid: 68ed38ec5bbdf4d41a1bb3ce8e0788b6, type: 3}
+ - {fileID: 21300000, guid: 2911e099b97c96e4cae408c5afcba617, type: 3}
+ - {fileID: 21300000, guid: 65b3e4d9836417646882f2b62892e2a7, type: 3}
- {fileID: 21300000, guid: 423cf212d1afa6a4aa5874da25e9b30e, type: 3}
- {fileID: 21300000, guid: 79656e8810168454eabe93c524a9878a, type: 3}
+ - {fileID: 21300000, guid: b3bd50f185f228e4dbaadba439fc9fd7, type: 3}
- {fileID: 21300000, guid: 52ac764cef5804147aa8efe734be0a01, type: 3}
- {fileID: 21300000, guid: 9f4d825138b34164cb6e9e64406dd12a, type: 3}
- spriteNameList: 73ef7596df354ed3919850e8929850e8939850e8949850e8959850e8969850e8979850e8947eef9a6672136537aa723a01d54ed3ede09396eee09396efe09396f0e09396bd9b0e69be9b0e69bf9b0e69c09b0e69c19b0e69c29b0e69c39b0e690d7ccc49132253d386d89f5487d89f5488d89f5489d89f5442e685d543e685d5ccb53bb2cdb53bb2d120b00dd220b00d50fb2eba51fb2eba73ea16e874ea16e81e5457221f5457222bf929362cf92936cf0775471557dd4782b8592383b8592383b74c9784b74c978c8d63ad107222fd627da494f525e9108b9601006e14a268a0bc6ec803e47506d77eae8fd87eae8faa3b37002623b5b6
+ spriteNameList: 73ef7596df354ed3e0354ed3919850e8929850e8939850e8949850e8959850e8969850e8979850e8947eef9a66721365ecf57d11edf57d11eef57d11eff57d1137aa723a01d54ed3ede09396eee09396efe09396f0e09396f1e09396f2e09396bd9b0e69be9b0e69bf9b0e69c09b0e69c19b0e69c29b0e69c39b0e69ffac52d30d7ccc49132253d387156e7a86d89f5487d89f5488d89f5489d89f5442e685d543e685d5ccb53bb2cdb53bb2d120b00dd220b00d50fb2eba51fb2eba73ea16e874ea16e81e5457221f5457222bf929362cf92936cf0775471557dd4782b8592383b8592383b74c9784b74c978c8d63ad107222fd627da494f525e9108b960100de4705065e9f32002bc532006e14a268a0bc6ec803e475062dbb75a5923679a5f1fc030ae6cb80424208558f4308558f4408558fd77eae8fd87eae8fd97eae8faa3b37002623b5b6
diff --git a/Assets/arts/atlas/ui/battle.spriteatlas b/Assets/arts/atlas/ui/battle.spriteatlas
index 016712000..047fc65a8 100644
--- a/Assets/arts/atlas/ui/battle.spriteatlas
+++ b/Assets/arts/atlas/ui/battle.spriteatlas
@@ -64,45 +64,64 @@ SpriteAtlas:
- {fileID: 21300000, guid: 143a02006f322054e926abff54bc2953, type: 3}
- {fileID: 21300000, guid: fb43ca103930b98418608ba14f871c21, type: 3}
- {fileID: 21300000, guid: 63461d20be12601408351e3c6df6d799, type: 3}
+ - {fileID: 21300000, guid: 3b491c50f91f0bd41862458a5c3a878f, type: 3}
- {fileID: 21300000, guid: d135766030d953b4bbb3ca2404fe28da, type: 3}
- {fileID: 21300000, guid: 4e3da980631dad04785f6ea58dc3447f, type: 3}
- {fileID: 21300000, guid: 829c31a0f5439a94caee22785f2edfdc, type: 3}
- {fileID: 21300000, guid: bb012b114a991f44c8583c6cc270981d, type: 3}
+ - {fileID: 21300000, guid: 6c78b12198b78934fb18b95ef0ed9d73, type: 3}
- {fileID: 21300000, guid: fe271741bc843c8438da54d6990e17c0, type: 3}
- {fileID: 21300000, guid: 9f4d825138b34164cb6e9e64406dd12a, type: 3}
- {fileID: 21300000, guid: 09dc5de1bb43f8e4fb620fdf5c1fdd9e, type: 3}
+ - {fileID: 21300000, guid: b3bd50f185f228e4dbaadba439fc9fd7, type: 3}
- {fileID: 21300000, guid: 63805602ca8fdd74b9a1696bbe71d217, type: 3}
- {fileID: 21300000, guid: 423cf212d1afa6a4aa5874da25e9b30e, type: 3}
- {fileID: 21300000, guid: 35d30742d8a5d0641a6e7b0b18f323a1, type: 3}
- {fileID: 21300000, guid: 8a3687a2ce1b5fd44baaea4d5688ae34, type: 3}
+ - {fileID: 21300000, guid: afcf9e53b76eef44dba33da9caa87fc3, type: 3}
- {fileID: 21300000, guid: b11c2f63c86e22644bbe1d930815c6c8, type: 3}
- {fileID: 21300000, guid: ea9f61c48549694489d855a4a5f0bf77, type: 3}
+ - {fileID: 21300000, guid: 8d4b8d154edf8074baae6ca59f21d3ff, type: 3}
+ - {fileID: 21300000, guid: 9b9c2c350f044674099b0adef495d39d, type: 3}
- {fileID: 21300000, guid: b1230a75f4f278246854472f8e66182f, type: 3}
+ - {fileID: 21300000, guid: 5aee1f758e4facd4591114d2156b6bfa, type: 3}
+ - {fileID: 21300000, guid: 79ab89b577d0b34439a5694e8b4d66c8, type: 3}
- {fileID: 21300000, guid: 6977af166b59e254a869ca5639e56bec, type: 3}
+ - {fileID: 21300000, guid: 97b4e14627583bc4999dcbe5eec17a9e, type: 3}
- {fileID: 21300000, guid: 260a5446c0f52084da7a05ddc0cecae8, type: 3}
- {fileID: 21300000, guid: 2ac6685652497304e92e5d80a0e2b523, type: 3}
- {fileID: 21300000, guid: fe047417c1765ae408c718cdde9c74a8, type: 3}
- {fileID: 21300000, guid: 0ebd413772dcdd44aacc3aa4882d9db9, type: 3}
- {fileID: 21300000, guid: 306205473d3cf1f4a9d821c3e2971092, type: 3}
- {fileID: 21300000, guid: 0928e747552d400468dcd7ba0a5cf10a, type: 3}
+ - {fileID: 21300000, guid: f125f1d792bebc84082b65fcf8bf7286, type: 3}
- {fileID: 21300000, guid: 8dac4cd77ddbe4544b8a44602bb5c9be, type: 3}
- {fileID: 21300000, guid: fe261bf7aa095154c959b88cc97168f3, type: 3}
- {fileID: 21300000, guid: c2461f38eb50425419e412a32e1b2a64, type: 3}
+ - {fileID: 21300000, guid: b2f310782ddb4844b8cce60785415fa5, type: 3}
- {fileID: 21300000, guid: 79656e8810168454eabe93c524a9878a, type: 3}
- {fileID: 21300000, guid: 90cd8a98ab36f5f429ca27d808dc664f, type: 3}
+ - {fileID: 21300000, guid: 42dfc3a8f5eda504abbaad83525865f1, type: 3}
- {fileID: 21300000, guid: 331e6bd86c6815246bbdc3582757afde, type: 3}
- {fileID: 21300000, guid: f37b1779751e6de42b14f4d4c8f52609, type: 3}
- {fileID: 21300000, guid: 3d4e7f797f9e52a428caf685cb9d945d, type: 3}
+ - {fileID: 21300000, guid: 2911e099b97c96e4cae408c5afcba617, type: 3}
+ - {fileID: 21300000, guid: 65b3e4d9836417646882f2b62892e2a7, type: 3}
- {fileID: 21300000, guid: 2deaa61a5f1d4fd44b611e3d5819ce7a, type: 3}
- {fileID: 21300000, guid: a9fd7e9a8eb4d1c488fd097ca4956501, type: 3}
- {fileID: 21300000, guid: 816486ca69b027b4bb3438882fd42f2b, type: 3}
+ - {fileID: 21300000, guid: 7b1941eab1a2f1e4d898491b572be0d8, type: 3}
- {fileID: 21300000, guid: d860c7ea2dcad1c4a804fe48f07fcdf3, type: 3}
- {fileID: 21300000, guid: 9bb2f10b15aa44a4fa22ec0655146511, type: 3}
+ - {fileID: 21300000, guid: 36e2163b4404615408f9bb0bead26217, type: 3}
+ - {fileID: 21300000, guid: 319d224bc95ce3a4e81c11c0f0f6266c, type: 3}
- {fileID: 21300000, guid: 1421585b364b1fb4ab0d951bb5d0f35d, type: 3}
+ - {fileID: 21300000, guid: 6dbdc0ebfecc85b4fa92d9ba6daeff71, type: 3}
- {fileID: 21300000, guid: a497edeb9fd18b34f945e6ad0a980058, type: 3}
- {fileID: 21300000, guid: 6e0fd41cbc1e6f44e82bedc0d5a92b54, type: 3}
- {fileID: 21300000, guid: 52ac764cef5804147aa8efe734be0a01, type: 3}
- {fileID: 21300000, guid: 67bbbb8c1478fd2499c68c245a3aadcf, type: 3}
+ - {fileID: 21300000, guid: 68ed38ec5bbdf4d41a1bb3ce8e0788b6, type: 3}
- {fileID: 21300000, guid: f866c72d7ff31d84580d50b5b6cbb679, type: 3}
- {fileID: 21300000, guid: 744dbd3d5c288644c8a8b96958a0e89b, type: 3}
- {fileID: 21300000, guid: 045a5a4df9f45a748851f849cac3f835, type: 3}
@@ -122,50 +141,70 @@ SpriteAtlas:
- {fileID: 21300000, guid: e8a869bf5b5b1a2469b54cc718b6642e, type: 3}
- {fileID: 21300000, guid: be484dcfccac44f48bece88cc9294c8f, type: 3}
- {fileID: 21300000, guid: 4883eddf5771c424c964bc2e32f2cb09, type: 3}
+ - {fileID: 21300000, guid: 87057dffa9a1a5845a920a694008eb48, type: 3}
- {fileID: 21300000, guid: 634f8eff83cb4cd4780e6afae3bc6c65, type: 3}
m_PackedSpriteNamesToIndex:
- battle_progress_3
- battle_hinder_7
- battle_skill_bg_yellow_2
+ - battle_chest_2
- ice
- battle_btn_magnifier
- battle_skill_bg_2
- battle_progress_2
+ - battle_dec_6
- battle_board_4
- yellow_1
- battle_hinder_2
+ - stone_3
- battle_skill_line_8
- stone_1
- battle_skill_bg_blue_2
- battle_skill_colorful
+ - battle_pig
- purple_1_1
- battle_hinder_4
+ - rocket_up
+ - rocket_right
- battle_bag_1
+ - battle_chest_1
+ - battle_chest_3
- battle_progress_4
+ - rocket_down
- battle_progress_1
- battle_skill_bg_purple_2
- battle_board_1
- battle_progress_bg_2
- battle_btn_setting
- battle_dec_3
+ - battle_lamp
- battle_skill_bg_green_1
- battle_skill_bg_red_1
- battle_circle
+ - lock
- stone_2
- red_1
+ - jelly
- battle_progress_bg_1
- battle_board_7
- battle_hinder_5
+ - stick_2
+ - stick_3
- battle_line_1
- battle_mask
- battle_skill_line_9
+ - battle_dec_5
- battle_dec_1
- blue_1
+ - battle_bg_3
+ - battle_chest_4
- battle_title_2
+ - leaf
- battle_skill_bg_blue_1
- battle_skill_line_10
- vine
- battle_skill_bg_red_2
+ - stick_1
- battle_crit
- battle_board_5
- battle_skill_bg_green_2
@@ -185,6 +224,7 @@ SpriteAtlas:
- battle_skill_bg_1
- combo_ban_1
- purple_1
+ - rocket_left
- green_1
m_RenderDataMap: {}
m_Tag: battle
diff --git a/Assets/arts/atlas/ui/bounty.asset b/Assets/arts/atlas/ui/bounty.asset
index 1375567be..4680d553e 100644
--- a/Assets/arts/atlas/ui/bounty.asset
+++ b/Assets/arts/atlas/ui/bounty.asset
@@ -13,32 +13,22 @@ MonoBehaviour:
m_Name: bounty
m_EditorClassIdentifier:
spriteList:
- - {fileID: 21300000, guid: 629d2799050b92948993cd0c8e54d7a3, type: 3}
- - {fileID: 21300000, guid: 1734d5dedf39b3f43bd39412edb2615a, type: 3}
+ - {fileID: 21300000, guid: 38e2716343d274e4e936c8f1cd4f04cd, type: 3}
+ - {fileID: 21300000, guid: cd61c99d1fb3ae740b3f5a7399d51969, type: 3}
- {fileID: 21300000, guid: 129dd3d736ed34c4fad5b31566a74c30, type: 3}
- - {fileID: 21300000, guid: 36b420b3d94d1b8458db06272b49eab7, type: 3}
- - {fileID: 21300000, guid: 7d0893dc7f7172a44b8713375c7a32a9, type: 3}
- - {fileID: 21300000, guid: 8366f22f59c8a6840be1c646c5f37e11, type: 3}
- {fileID: 21300000, guid: 4e4e9cc80d2948847b3f4b7b148a552e, type: 3}
- - {fileID: 21300000, guid: 6fb5d12de7aca034d8f183f776d9f8d5, type: 3}
- - {fileID: 21300000, guid: 9d2eb30dfced47944a6134ec966d8cda, type: 3}
- - {fileID: 21300000, guid: 94aeed8ec01133f48a7940f2edc98137, type: 3}
- - {fileID: 21300000, guid: 6f8bbf7bd3381fa4b89421b2bbf5f18e, type: 3}
- - {fileID: 21300000, guid: 4e9c888273b8cde458767467108f3244, type: 3}
- - {fileID: 21300000, guid: 851ac675a07e7474ca0c23da99a35626, type: 3}
- - {fileID: 21300000, guid: fc37c948a73d0414a9adf5772765fd1a, type: 3}
- - {fileID: 21300000, guid: 7f9fc7f0b97dea94883ecab2f67f3689, type: 3}
- - {fileID: 21300000, guid: 8189c5f6129e5d7468ccd20331ebda66, type: 3}
- - {fileID: 21300000, guid: 288857298dfb0974585196ea0dc9cbed, type: 3}
- - {fileID: 21300000, guid: db008d54389c1864fa3a49f568a91a50, type: 3}
+ - {fileID: 21300000, guid: 2af436c80c32cb046bb90c11245ea4ed, type: 3}
+ - {fileID: 21300000, guid: d3aa1d33a76ef724092054945d8d0dae, type: 3}
- {fileID: 21300000, guid: 4393de5389e82684c9f54914198f42f9, type: 3}
- {fileID: 21300000, guid: b1af5501d58b0f644bb5be24c48d945e, type: 3}
+ - {fileID: 21300000, guid: 175b37d7c69fd6949a2e4a0a4341637f, type: 3}
- {fileID: 21300000, guid: 9363ca013a7b55e4e97c21d9c76c106b, type: 3}
+ - {fileID: 21300000, guid: cd95e95c8e43f3448ae79f4d57256d3a, type: 3}
- {fileID: 21300000, guid: 6b4c13fa6c8a1074e936610079fb615f, type: 3}
- - {fileID: 21300000, guid: 9cd5fb289c1067942a7a2760b65125e0, type: 3}
- - {fileID: 21300000, guid: c9929c5bd047beb47a2e2a57e2ed42ee, type: 3}
- - {fileID: 21300000, guid: b05e32974fe7d244aacdd77423c5ec8b, type: 3}
- - {fileID: 21300000, guid: ed63cf25ab96cf2439715383facdbce5, type: 3}
+ - {fileID: 21300000, guid: ec349a60916cc3f4cb81184993574d26, type: 3}
+ - {fileID: 21300000, guid: 53718e7d402adb34c9303187c20ee358, type: 3}
+ - {fileID: 21300000, guid: 3f41bb7e064d25847928226fa42467f5, type: 3}
- {fileID: 21300000, guid: 48896080b277b7347afc80414a9b0e04, type: 3}
- - {fileID: 21300000, guid: 8a4e6e8c30f7d2247bf203d0f5ac0be4, type: 3}
- spriteNameList: ce8da21dd38da21d849d74b52c131ff92d131ff92e131ff9859d74b54b131ff94e131ff952131ff9889d74b58a9d74b58b9d74b58c9d74b57a52b5967b52b5967c52b5967d52b596823ae87ba086ca96a286ca96a486ca96a686ca96a786ca96a886ca960823a71dbc8c6a5076bc7064
+ - {fileID: 21300000, guid: ada861ca87f0269478847b6c463e77ec, type: 3}
+ - {fileID: 21300000, guid: 6767eb4bb7d152447bb08b909b34c239, type: 3}
+ spriteNameList: cb8da21dcc8da21d849d74b5859d74b5869d74b5813ae87b823ae87ba086ca96a186ca96a286ca96a386ca96a486ca96a586ca96ba8c6a50bb8c6a50bc8c6a50b3ca3bc71033235c
diff --git a/Assets/arts/atlas/ui/bounty.spriteatlas b/Assets/arts/atlas/ui/bounty.spriteatlas
index bb358f403..8f38b773d 100644
--- a/Assets/arts/atlas/ui/bounty.spriteatlas
+++ b/Assets/arts/atlas/ui/bounty.spriteatlas
@@ -61,63 +61,43 @@ SpriteAtlas:
cachedData: {fileID: 0}
m_MasterAtlas: {fileID: 0}
m_PackedSprites:
+ - {fileID: 21300000, guid: ec349a60916cc3f4cb81184993574d26, type: 3}
- {fileID: 21300000, guid: 48896080b277b7347afc80414a9b0e04, type: 3}
- - {fileID: 21300000, guid: 7f9fc7f0b97dea94883ecab2f67f3689, type: 3}
- {fileID: 21300000, guid: b1af5501d58b0f644bb5be24c48d945e, type: 3}
- {fileID: 21300000, guid: 9363ca013a7b55e4e97c21d9c76c106b, type: 3}
- - {fileID: 21300000, guid: 4e9c888273b8cde458767467108f3244, type: 3}
+ - {fileID: 21300000, guid: d3aa1d33a76ef724092054945d8d0dae, type: 3}
- {fileID: 21300000, guid: 4393de5389e82684c9f54914198f42f9, type: 3}
- - {fileID: 21300000, guid: 36b420b3d94d1b8458db06272b49eab7, type: 3}
- - {fileID: 21300000, guid: db008d54389c1864fa3a49f568a91a50, type: 3}
- - {fileID: 21300000, guid: ed63cf25ab96cf2439715383facdbce5, type: 3}
- - {fileID: 21300000, guid: 851ac675a07e7474ca0c23da99a35626, type: 3}
- - {fileID: 21300000, guid: 8189c5f6129e5d7468ccd20331ebda66, type: 3}
- - {fileID: 21300000, guid: b05e32974fe7d244aacdd77423c5ec8b, type: 3}
+ - {fileID: 21300000, guid: 38e2716343d274e4e936c8f1cd4f04cd, type: 3}
- {fileID: 21300000, guid: 129dd3d736ed34c4fad5b31566a74c30, type: 3}
- - {fileID: 21300000, guid: 9cd5fb289c1067942a7a2760b65125e0, type: 3}
- - {fileID: 21300000, guid: fc37c948a73d0414a9adf5772765fd1a, type: 3}
+ - {fileID: 21300000, guid: 175b37d7c69fd6949a2e4a0a4341637f, type: 3}
+ - {fileID: 21300000, guid: 2af436c80c32cb046bb90c11245ea4ed, type: 3}
- {fileID: 21300000, guid: 4e4e9cc80d2948847b3f4b7b148a552e, type: 3}
- - {fileID: 21300000, guid: 288857298dfb0974585196ea0dc9cbed, type: 3}
- - {fileID: 21300000, guid: 629d2799050b92948993cd0c8e54d7a3, type: 3}
+ - {fileID: 21300000, guid: ada861ca87f0269478847b6c463e77ec, type: 3}
- {fileID: 21300000, guid: 6b4c13fa6c8a1074e936610079fb615f, type: 3}
- - {fileID: 21300000, guid: c9929c5bd047beb47a2e2a57e2ed42ee, type: 3}
- - {fileID: 21300000, guid: 6f8bbf7bd3381fa4b89421b2bbf5f18e, type: 3}
- - {fileID: 21300000, guid: 8a4e6e8c30f7d2247bf203d0f5ac0be4, type: 3}
- - {fileID: 21300000, guid: 7d0893dc7f7172a44b8713375c7a32a9, type: 3}
- - {fileID: 21300000, guid: 9d2eb30dfced47944a6134ec966d8cda, type: 3}
- - {fileID: 21300000, guid: 6fb5d12de7aca034d8f183f776d9f8d5, type: 3}
- - {fileID: 21300000, guid: 94aeed8ec01133f48a7940f2edc98137, type: 3}
- - {fileID: 21300000, guid: 1734d5dedf39b3f43bd39412edb2615a, type: 3}
- - {fileID: 21300000, guid: 8366f22f59c8a6840be1c646c5f37e11, type: 3}
+ - {fileID: 21300000, guid: 6767eb4bb7d152447bb08b909b34c239, type: 3}
+ - {fileID: 21300000, guid: cd95e95c8e43f3448ae79f4d57256d3a, type: 3}
+ - {fileID: 21300000, guid: 53718e7d402adb34c9303187c20ee358, type: 3}
+ - {fileID: 21300000, guid: cd61c99d1fb3ae740b3f5a7399d51969, type: 3}
+ - {fileID: 21300000, guid: 3f41bb7e064d25847928226fa42467f5, type: 3}
m_PackedSpriteNamesToIndex:
+ - bounty_dec_6
- bounty_line_3
- - bounty_btn_1
- bounty_dec_1
- bounty_dec_3
- - bounty_board_7
+ - bounty_btn_main_0
- bounty_btn_main_1
- - bounty_board_10
- - bounty_btn_4
- - bounty_line
- - bounty_board_8
- - bounty_btn_2
- - bounty_dec_9
+ - bounty_bg_1
- bounty_board_1
- - bounty_dec_7
- - bounty_board_9
+ - bounty_dec_2
+ - bounty_board_3
- bounty_board_2
- - bounty_btn_3
- - bounty_bg_4
+ - bounty_progress_1
- bounty_dec_5
- - bounty_dec_8
- - bounty_board_5
- - bounty_title_1
- - bounty_board_11
- - bounty_board_23
- - bounty_board_20
- - bounty_board_27
- - bounty_bg_9
- - bounty_board_12
+ - bounty_select
+ - bounty_dec_4
+ - bounty_line_1
+ - bounty_bg_2
+ - bounty_line_2
m_RenderDataMap: {}
m_Tag: bounty
m_IsVariant: 0
diff --git a/Assets/arts/atlas/ui/common.asset b/Assets/arts/atlas/ui/common.asset
index fd4d873e2..9047653b0 100644
--- a/Assets/arts/atlas/ui/common.asset
+++ b/Assets/arts/atlas/ui/common.asset
@@ -31,7 +31,14 @@ MonoBehaviour:
- {fileID: 21300000, guid: baac6818c7f9ee248a78358bd8adf2ed, type: 3}
- {fileID: 21300000, guid: 4120bbee8eb48d641ad3d46398bb3fa4, type: 3}
- {fileID: 21300000, guid: 37058029318370c46be63c3fbe4d1758, type: 3}
+ - {fileID: 21300000, guid: 15b627938e203f545ac49661789d7351, type: 3}
+ - {fileID: 21300000, guid: b5366e3fbfd5bde4c85d58b28af1a050, type: 3}
+ - {fileID: 21300000, guid: 27bcccd51cdee104bad42c0e2d59d35e, type: 3}
+ - {fileID: 21300000, guid: a5649cd0bacb4934bbe6a22dca87cf40, type: 3}
- {fileID: 21300000, guid: 1a3eea633d6dc9249b5caf2aee32cdfa, type: 3}
+ - {fileID: 21300000, guid: 3867c71afb1f02049b1fee7399381aaa, type: 3}
+ - {fileID: 21300000, guid: 79b105ace3ad8d747a6cdd5d9e08c890, type: 3}
+ - {fileID: 21300000, guid: 3f4e012cd25229546b5f5859ebecdf66, type: 3}
- {fileID: 21300000, guid: dc05a38a7a24b1e46be66fd07ad92ef8, type: 3}
- {fileID: 21300000, guid: dd9f53f83308a3a4799e84f5ccc9fd79, type: 3}
- {fileID: 21300000, guid: 7cc4f1e808d2d6c45a721ee91ea63866, type: 3}
@@ -39,6 +46,9 @@ MonoBehaviour:
- {fileID: 21300000, guid: d31ab4bae352c3d4481cb54328c5f3c2, type: 3}
- {fileID: 21300000, guid: d9bf4f9aeccbaef4db450cefbf2c0f2d, type: 3}
- {fileID: 21300000, guid: 3285af8e91260c847a0fdb96770d5c96, type: 3}
+ - {fileID: 21300000, guid: 1e55a4a32dd1ec240af52ddccebc7c46, type: 3}
+ - {fileID: 21300000, guid: c692df1f4d1dfed42a66007b4e4cb315, type: 3}
+ - {fileID: 21300000, guid: 7f07ec09931338d42bf26e2d0eb26677, type: 3}
- {fileID: 21300000, guid: a2d6692a383652f4fad43c69cc9f6d83, type: 3}
- {fileID: 21300000, guid: 7372681aea33b7b4099e3685b7ee975e, type: 3}
- {fileID: 21300000, guid: 0bf8a7cbeee241d429745b8e3af4b0b3, type: 3}
@@ -55,10 +65,12 @@ MonoBehaviour:
- {fileID: 21300000, guid: 9bc39501344a8494daeaf1035cb736db, type: 3}
- {fileID: 21300000, guid: 6257321a157c2d24abce62bfdffa3d3b, type: 3}
- {fileID: 21300000, guid: a3e18e0ffb96a7249ac39a5edf69b469, type: 3}
+ - {fileID: 21300000, guid: 33eb4a26b60c789498ae5382b6b6251b, type: 3}
- {fileID: 21300000, guid: 13b1668a707250d4cac750f73ca8f3c3, type: 3}
- {fileID: 21300000, guid: 3a491a78e8f193f428361be7b7a45dfb, type: 3}
- {fileID: 21300000, guid: bbc8dc8d2ae3e364990b159c9a7ef3df, type: 3}
- {fileID: 21300000, guid: f65bbb56e45988348b8aeb0272f58047, type: 3}
+ - {fileID: 21300000, guid: 15a10479bd4a42c459af0778f0f3c004, type: 3}
- {fileID: 21300000, guid: 7e9c0788fba4a824f9213b892c30a542, type: 3}
- {fileID: 21300000, guid: 7fd4f0c3c01d5b74da31ef5c8844b95d, type: 3}
- {fileID: 21300000, guid: 1dedff3e909ee054b874a2fbaff044c0, type: 3}
@@ -70,6 +82,8 @@ MonoBehaviour:
- {fileID: 21300000, guid: d4fc31efb520b904dbc964028c78b257, type: 3}
- {fileID: 21300000, guid: 7dcb5c792e21d83488db1e0ef85036c8, type: 3}
- {fileID: 21300000, guid: 59664f7585dc89f4aa7d96b2f601d19b, type: 3}
+ - {fileID: 21300000, guid: ccaac0bda1f3fcb45bfd9d7500b0810b, type: 3}
+ - {fileID: 21300000, guid: 070fd6553e0b5bf4a816757085221bda, type: 3}
- {fileID: 21300000, guid: bf5180354d324cb4685dcfb6480b6a65, type: 3}
- {fileID: 21300000, guid: cc36a2865259e6a449af8d0bfe2b7165, type: 3}
- {fileID: 21300000, guid: 8557e6412e7e6464495c2efa8f5f2f78, type: 3}
@@ -79,7 +93,10 @@ MonoBehaviour:
- {fileID: 21300000, guid: 3b14bc3747e2c3248b47a3ac14d44d6d, type: 3}
- {fileID: 21300000, guid: 89783d5ddc9ab034687ff93732ebdfe0, type: 3}
- {fileID: 21300000, guid: 31c5ffb6550fe564ab9f5159f4e9a1a6, type: 3}
+ - {fileID: 21300000, guid: 5140a3a33b636314fb3d07bdc4c9c0f3, type: 3}
- {fileID: 21300000, guid: 55feeb1282994f248bebbf10510de820, type: 3}
+ - {fileID: 21300000, guid: c4514947f60678c4e90c498ef095db61, type: 3}
+ - {fileID: 21300000, guid: f68fde5de9bc3bb4bb20c8c2e8de00e1, type: 3}
- {fileID: 21300000, guid: 3df1f1c0900d28e48958abf63b77fd5e, type: 3}
- {fileID: 21300000, guid: a806bb907d2075d44a8ea0a190a92c52, type: 3}
- {fileID: 21300000, guid: 66f7e9bcf829fc04d816daa40ffaad77, type: 3}
@@ -87,5 +104,6 @@ MonoBehaviour:
- {fileID: 21300000, guid: b8056a6868f41394c95a779ca9ccc217, type: 3}
- {fileID: 21300000, guid: b9543992e195f2f47a68966feb242e7a, type: 3}
- {fileID: 21300000, guid: d19a454e30a654347bc427e316fa1cbf, type: 3}
+ - {fileID: 21300000, guid: ed4354e6b5195924492ab2e872cfe945, type: 3}
- {fileID: 21300000, guid: 56c233d89e320ac4891f34a6706ffc0c, type: 3}
- spriteNameList: e9a43d8deba43d8deca43d8d0ae27a1a2757a7712857a7712957a7712a57a7718b243e8d8c243e8d8d243e8dc48e80a0ec49916fed49916fee49916fef49916ff049916ff149916fc58e80a0c68e80a0c78e80a0c88e80a0c98e80a0ca8e80a0cb8e80a0cc8e80a0a5c7820c01853b19be2eb195bf2eb195c02eb195e8945815e9945815ea9458150c8b0b1a0d8b0b1a0e8b0b1a7d33eeca7e33eeca7f33eecab415951a1fecadc922ecadc9a4a12138e0c7a11a50349739e1c7a11ae2c7a11ae3c7a11ae4c7a11ae5c7a11ae6c7a11ae7c7a11ae8c7a11a826e418d7a737b477b737b47ffce428d252af848262af848272af848a07f7c4e3c864f1b7351fb6991c62c357451fb697551fb69b6ad7c4fb7ad7c4fb8ad7c4fb9ad7c4fbaad7c4fbbad7c4fbcad7c4fc569b158
+ spriteNameList: e9a43d8deba43d8deca43d8d0ae27a1a2757a7712857a7712957a7712a57a7718b243e8d8c243e8d8d243e8dc48e80a0ec49916fed49916fee49916fef49916ff049916ff149916ff249916ff349916ff449916ff549916fc58e80a00b4a916f0c4a916f0d4a916fc68e80a0c78e80a0c88e80a0c98e80a0ca8e80a0cb8e80a0cc8e80a0bed8328da3c7820ca4c7820ca5c7820c01853b19be2eb195bf2eb195c02eb195e8945815e9945815ea9458150c8b0b1a0d8b0b1a0e8b0b1a7d33eeca7e33eeca7f33eecab415951a1fecadc920ecadc922ecadc9a4a12138e0c7a11a5034973951349739e1c7a11ae2c7a11ae3c7a11ae4c7a11ae5c7a11ae6c7a11ae7c7a11ae8c7a11a826e418d7a737b477b737b477c737b477d737b47ffce428d252af848262af848272af848a07f7c4e3c864f1b7351fb6991c62c357451fb69f03a2d357551fb697651fb69a15c468db6ad7c4fb7ad7c4fb8ad7c4fb9ad7c4fbaad7c4fbbad7c4fbcad7c4fbdad7c4fc569b158
diff --git a/Assets/arts/atlas/ui/common.spriteatlas b/Assets/arts/atlas/ui/common.spriteatlas
index 9c43d8a95..e5f754f18 100644
--- a/Assets/arts/atlas/ui/common.spriteatlas
+++ b/Assets/arts/atlas/ui/common.spriteatlas
@@ -63,6 +63,7 @@ SpriteAtlas:
m_PackedSprites:
- {fileID: 21300000, guid: a806bb907d2075d44a8ea0a190a92c52, type: 3}
- {fileID: 21300000, guid: 3df1f1c0900d28e48958abf63b77fd5e, type: 3}
+ - {fileID: 21300000, guid: a5649cd0bacb4934bbe6a22dca87cf40, type: 3}
- {fileID: 21300000, guid: 608361016deab9a4993d756f0a187d74, type: 3}
- {fileID: 21300000, guid: 9bc39501344a8494daeaf1035cb736db, type: 3}
- {fileID: 21300000, guid: 8557e6412e7e6464495c2efa8f5f2f78, type: 3}
@@ -72,6 +73,9 @@ SpriteAtlas:
- {fileID: 21300000, guid: b3ebf3220061a824c8f4a3919ee39a33, type: 3}
- {fileID: 21300000, guid: b9543992e195f2f47a68966feb242e7a, type: 3}
- {fileID: 21300000, guid: 1a3eea633d6dc9249b5caf2aee32cdfa, type: 3}
+ - {fileID: 21300000, guid: 15b627938e203f545ac49661789d7351, type: 3}
+ - {fileID: 21300000, guid: 5140a3a33b636314fb3d07bdc4c9c0f3, type: 3}
+ - {fileID: 21300000, guid: 1e55a4a32dd1ec240af52ddccebc7c46, type: 3}
- {fileID: 21300000, guid: 7fd4f0c3c01d5b74da31ef5c8844b95d, type: 3}
- {fileID: 21300000, guid: 5758461464520334caa2a2487dca2fc6, type: 3}
- {fileID: 21300000, guid: 9abaaf4457b41ea46ba4f998c247ddb6, type: 3}
@@ -79,16 +83,21 @@ SpriteAtlas:
- {fileID: 21300000, guid: b7ec10a4771dc744eba18a4cc4491c01, type: 3}
- {fileID: 21300000, guid: 4f0b41158f74bfd4a9b0ee0116ff6bb0, type: 3}
- {fileID: 21300000, guid: bf5180354d324cb4685dcfb6480b6a65, type: 3}
+ - {fileID: 21300000, guid: 070fd6553e0b5bf4a816757085221bda, type: 3}
- {fileID: 21300000, guid: 59664f7585dc89f4aa7d96b2f601d19b, type: 3}
- {fileID: 21300000, guid: e71034853e8f2eb4e9be049af351872e, type: 3}
+ - {fileID: 21300000, guid: 27bcccd51cdee104bad42c0e2d59d35e, type: 3}
+ - {fileID: 21300000, guid: 33eb4a26b60c789498ae5382b6b6251b, type: 3}
- {fileID: 21300000, guid: f65bbb56e45988348b8aeb0272f58047, type: 3}
- {fileID: 21300000, guid: 8e279276358266d4abd13f0e7fde1e50, type: 3}
- {fileID: 21300000, guid: cc36a2865259e6a449af8d0bfe2b7165, type: 3}
- {fileID: 21300000, guid: 4c8f9db6b4c3d474ebacc7496c8a9693, type: 3}
- {fileID: 21300000, guid: 31c5ffb6550fe564ab9f5159f4e9a1a6, type: 3}
+ - {fileID: 21300000, guid: ed4354e6b5195924492ab2e872cfe945, type: 3}
- {fileID: 21300000, guid: af2468e67b69b3647afb863604c01d03, type: 3}
- {fileID: 21300000, guid: 88e3c9f601e749946ac9894634ce7894, type: 3}
- {fileID: 21300000, guid: 3b14bc3747e2c3248b47a3ac14d44d6d, type: 3}
+ - {fileID: 21300000, guid: c4514947f60678c4e90c498ef095db61, type: 3}
- {fileID: 21300000, guid: c9a70ad71344ef54cb824c55bdae85cb, type: 3}
- {fileID: 21300000, guid: baac6818c7f9ee248a78358bd8adf2ed, type: 3}
- {fileID: 21300000, guid: b8056a6868f41394c95a779ca9ccc217, type: 3}
@@ -100,10 +109,13 @@ SpriteAtlas:
- {fileID: 21300000, guid: 56c233d89e320ac4891f34a6706ffc0c, type: 3}
- {fileID: 21300000, guid: 7cc4f1e808d2d6c45a721ee91ea63866, type: 3}
- {fileID: 21300000, guid: dd9f53f83308a3a4799e84f5ccc9fd79, type: 3}
+ - {fileID: 21300000, guid: 7f07ec09931338d42bf26e2d0eb26677, type: 3}
- {fileID: 21300000, guid: 37058029318370c46be63c3fbe4d1758, type: 3}
- {fileID: 21300000, guid: 1bf9c73960324d3439e0db7c0390d805, type: 3}
+ - {fileID: 21300000, guid: 15a10479bd4a42c459af0778f0f3c004, type: 3}
- {fileID: 21300000, guid: 7dcb5c792e21d83488db1e0ef85036c8, type: 3}
- {fileID: 21300000, guid: 6257321a157c2d24abce62bfdffa3d3b, type: 3}
+ - {fileID: 21300000, guid: 3867c71afb1f02049b1fee7399381aaa, type: 3}
- {fileID: 21300000, guid: 7372681aea33b7b4099e3685b7ee975e, type: 3}
- {fileID: 21300000, guid: a2d6692a383652f4fad43c69cc9f6d83, type: 3}
- {fileID: 21300000, guid: dc05a38a7a24b1e46be66fd07ad92ef8, type: 3}
@@ -115,7 +127,9 @@ SpriteAtlas:
- {fileID: 21300000, guid: 0bf8a7cbeee241d429745b8e3af4b0b3, type: 3}
- {fileID: 21300000, guid: d8d7450c5023f744a93f70f8a2ac59f9, type: 3}
- {fileID: 21300000, guid: d9c23e0c2fdbcda4ab03e9917f66a4d8, type: 3}
+ - {fileID: 21300000, guid: 3f4e012cd25229546b5f5859ebecdf66, type: 3}
- {fileID: 21300000, guid: 2097e79c28658fb4e9abc7fe576293e0, type: 3}
+ - {fileID: 21300000, guid: 79b105ace3ad8d747a6cdd5d9e08c890, type: 3}
- {fileID: 21300000, guid: cf89f3bc92056c548b62a7278c2c6522, type: 3}
- {fileID: 21300000, guid: 66f7e9bcf829fc04d816daa40ffaad77, type: 3}
- {fileID: 21300000, guid: 096ac1cc2c2450c4fb006148f1114712, type: 3}
@@ -123,7 +137,9 @@ SpriteAtlas:
- {fileID: 21300000, guid: a70289eca986ce142b027934f6cdd63c, type: 3}
- {fileID: 21300000, guid: 77492aece4267bb4cb623f0bcc4253de, type: 3}
- {fileID: 21300000, guid: 89783d5ddc9ab034687ff93732ebdfe0, type: 3}
+ - {fileID: 21300000, guid: f68fde5de9bc3bb4bb20c8c2e8de00e1, type: 3}
- {fileID: 21300000, guid: bbc8dc8d2ae3e364990b159c9a7ef3df, type: 3}
+ - {fileID: 21300000, guid: ccaac0bda1f3fcb45bfd9d7500b0810b, type: 3}
- {fileID: 21300000, guid: 883d58dd339d5e346b504cdff1be6351, type: 3}
- {fileID: 21300000, guid: 87e1b70e6b948a948b9342e7e131f80a, type: 3}
- {fileID: 21300000, guid: ce3ecf0e5cac5d4489328b0b8e3b5123, type: 3}
@@ -133,12 +149,15 @@ SpriteAtlas:
- {fileID: 21300000, guid: 3285af8e91260c847a0fdb96770d5c96, type: 3}
- {fileID: 21300000, guid: 4120bbee8eb48d641ad3d46398bb3fa4, type: 3}
- {fileID: 21300000, guid: a3e18e0ffb96a7249ac39a5edf69b469, type: 3}
+ - {fileID: 21300000, guid: c692df1f4d1dfed42a66007b4e4cb315, type: 3}
+ - {fileID: 21300000, guid: b5366e3fbfd5bde4c85d58b28af1a050, type: 3}
- {fileID: 21300000, guid: 70658f5f22e6038469c551a1665ae009, type: 3}
- {fileID: 21300000, guid: 2e3a1fdfbb599ba4babe604659b6e1df, type: 3}
- {fileID: 21300000, guid: d4fc31efb520b904dbc964028c78b257, type: 3}
m_PackedSpriteNamesToIndex:
- common_title_2
- common_title_1
+ - common_board_19
- common_ad_3
- common_btn_yellow_3
- common_menu_2
@@ -148,6 +167,9 @@ SpriteAtlas:
- common_btn_yellow_2
- common_title_6
- common_board_2
+ - common_board_16
+ - common_progress_2_bg
+ - common_btn_back
- common_dec_3
- common_btn_green_2
- common_menu_3
@@ -155,16 +177,21 @@ SpriteAtlas:
- common_btn_grey_3
- common_ad_1
- common_lock
+ - common_line_4
- common_line_2
- common_btn_grey_1
+ - common_board_18
+ - common_chest_2
- common_dec_10
- common_btn_red_3
- common_menu_1
- common_board_1
- common_progress_2
+ - common_title_8
- common_arrow_1
- common_board_10
- common_progress_1
+ - common_progress_4
- common_ad_4
- common_board_13
- common_title_5
@@ -176,10 +203,13 @@ SpriteAtlas:
- common_toast_1
- common_board_5
- common_board_4
+ - common_btn_blue_2
- common_board_15
- common_bg_2
+ - common_dec_11
- common_line_1
- common_check
+ - common_board_20
- common_btn_close
- common_btn_blue_3
- common_board_3
@@ -191,7 +221,9 @@ SpriteAtlas:
- common_btn_green_1
- common_arrow_3
- common_bg_1
+ - common_board_22
- common_btn_grey_2
+ - common_board_21
- common_board_12
- common_title_3
- common_board_11
@@ -199,7 +231,9 @@ SpriteAtlas:
- common_alpha
- common_point
- common_progress_1_bg
+ - common_time
- common_dec_1
+ - common_line_3
- common_btn_green_3
- common_dec_8
- common_dec_9
@@ -209,6 +243,8 @@ SpriteAtlas:
- common_board_9
- common_board_14
- common_chest_1
+ - common_btn_blue_1
+ - common_board_17
- common_dec_5
- common_dec_7
- common_info
diff --git a/Assets/arts/atlas/ui/common_temp.asset b/Assets/arts/atlas/ui/common_temp.asset
deleted file mode 100644
index 9657f66e3..000000000
--- a/Assets/arts/atlas/ui/common_temp.asset
+++ /dev/null
@@ -1,60 +0,0 @@
-%YAML 1.1
-%TAG !u! tag:unity3d.com,2011:
---- !u!114 &11400000
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 0}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 3a48bfa163a714a6d8469f9c542e223f, type: 3}
- m_Name: common_temp
- m_EditorClassIdentifier:
- spriteList:
- - {fileID: 21300000, guid: f0d0414b7d4ee9b4f90891321d99bda9, type: 3}
- - {fileID: 21300000, guid: d408c20e43b03af4fa60e31fdfdf40af, type: 3}
- - {fileID: 21300000, guid: 24b274efbfb2ae84ba560e4a9cdc9e5d, type: 3}
- - {fileID: 21300000, guid: e99c98bbd7686c54fb6c295fa2fd1cb1, type: 3}
- - {fileID: 21300000, guid: ecbfe2c6ee57e284bb88c09709a895bd, type: 3}
- - {fileID: 21300000, guid: 8a1d49a4e7460034ba4f450805fbce0e, type: 3}
- - {fileID: 21300000, guid: 128982c3ffd68014bbe715ebcebd49ef, type: 3}
- - {fileID: 21300000, guid: bc4f02aae5564f0478733a11fd1b7491, type: 3}
- - {fileID: 21300000, guid: 1872eb630fc869c448e7fa7dd78f03e5, type: 3}
- - {fileID: 21300000, guid: 270043549ba438d42ad12cdb6fe8d6db, type: 3}
- - {fileID: 21300000, guid: 0becc83fee4c76a4ea964ae412cd8b23, type: 3}
- - {fileID: 21300000, guid: 0d8971bf74f69c44cbb36a78a7dbfa32, type: 3}
- - {fileID: 21300000, guid: 8f54e3e3912cd524e8785b840587765e, type: 3}
- - {fileID: 21300000, guid: 2c853a406c01f7e4ab319613d4d6b125, type: 3}
- - {fileID: 21300000, guid: 706cf0caa0634ad4ea96e29c5d27984e, type: 3}
- - {fileID: 21300000, guid: 2c091945cce7f9d4db36c7c7cce8ae31, type: 3}
- - {fileID: 21300000, guid: f24a3cf1b4c80e644a25b659f5d81cab, type: 3}
- - {fileID: 21300000, guid: 8602111c232a7e64f84b69b7f22c3385, type: 3}
- - {fileID: 21300000, guid: d98a6ecff7df83149a1ed4257f9f18b5, type: 3}
- - {fileID: 21300000, guid: a86176f4d98080e4697042c30913c6c4, type: 3}
- - {fileID: 21300000, guid: 6e6780b3b69df494ca86f2ba742ab4ff, type: 3}
- - {fileID: 21300000, guid: 70fefe2dcc489334fa39b926a0214fba, type: 3}
- - {fileID: 21300000, guid: 70ee3500b64025942bcf9cdcf7c9da7f, type: 3}
- - {fileID: 21300000, guid: 110cf356ed2492f46a6280025c377f61, type: 3}
- - {fileID: 21300000, guid: 374abdc8e87ac1d43bf3c4c2a17530c8, type: 3}
- - {fileID: 21300000, guid: e4489359e92b7b64d833c777ba6c8e88, type: 3}
- - {fileID: 21300000, guid: 0ed2f0a8c10be5f43ac385c88f10c04d, type: 3}
- - {fileID: 21300000, guid: ee0df8d049e8cdc40b059ae183bc7448, type: 3}
- - {fileID: 21300000, guid: 354ca621aaea62941a881f69e9997789, type: 3}
- - {fileID: 21300000, guid: 492604b454d2a9145a0dbc9778d63636, type: 3}
- - {fileID: 21300000, guid: c53537eed4d49cb43b9a6c4ad7bb4338, type: 3}
- - {fileID: 21300000, guid: ce90868518d766a47b0e74cbd1828ae9, type: 3}
- - {fileID: 21300000, guid: 8a72adb42754a1c45b048cec65631289, type: 3}
- - {fileID: 21300000, guid: 6be4996b962d75c4c959cc18d5cb36bb, type: 3}
- - {fileID: 21300000, guid: 39e386a2340762542ab1cdbb6f4d284a, type: 3}
- - {fileID: 21300000, guid: 6b3e17a9084005441bbabd97659cfba4, type: 3}
- - {fileID: 21300000, guid: d375738329fc0b24eba9adec4900cd65, type: 3}
- - {fileID: 21300000, guid: 796245e0b7d34b14ab12b9b9f76246d0, type: 3}
- - {fileID: 21300000, guid: 402e3af17d57da94e9f2afbda35f94bd, type: 3}
- - {fileID: 21300000, guid: 60ec8c24465bfca4781083710975a225, type: 3}
- - {fileID: 21300000, guid: ff604a18fbb77694a833d9b4fb867854, type: 3}
- - {fileID: 21300000, guid: c1c674720882aa14bbfa27efe47bd455, type: 3}
- - {fileID: 21300000, guid: 2a79456b07e6a384995efccb7b3d1815, type: 3}
- - {fileID: 21300000, guid: 5946fd26eb24672428df1a7f0be57356, type: 3}
- spriteNameList: 71b6df2df77a70a7eba43d8deda43d8d8a243e8df149916f2e4a916f314a916f334a916f4a4a916f4b4a916f4c4a916f524a916f6a4a916fbce30537bee30537bb938c1abc938c1ac0938c1a73546eb84c83338db65e358d6684a6c956349739e8c7a11aba78e4cfbb78e4cfdc78e4cfdd78e4cf0c3b23887212bf6f8d039f467b737b4780737b47f216cb47282af8487551fb697651fb690d982e357851fb69352a4335372a4335c1447e0d92155979
diff --git a/Assets/arts/atlas/ui/common_temp.spriteatlas b/Assets/arts/atlas/ui/common_temp.spriteatlas
deleted file mode 100644
index a65201a1c..000000000
--- a/Assets/arts/atlas/ui/common_temp.spriteatlas
+++ /dev/null
@@ -1,155 +0,0 @@
-%YAML 1.1
-%TAG !u! tag:unity3d.com,2011:
---- !u!687078895 &4343727234628468602
-SpriteAtlas:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_Name: common_temp
- m_EditorData:
- serializedVersion: 2
- textureSettings:
- serializedVersion: 2
- anisoLevel: 0
- compressionQuality: 0
- maxTextureSize: 0
- textureCompression: 0
- filterMode: 1
- generateMipMaps: 0
- readable: 0
- crunchedCompression: 0
- sRGB: 1
- platformSettings:
- - serializedVersion: 3
- m_BuildTarget: Android
- m_MaxTextureSize: 2048
- m_ResizeAlgorithm: 0
- m_TextureFormat: 47
- m_TextureCompression: 1
- m_CompressionQuality: 50
- m_CrunchedCompression: 0
- m_AllowsAlphaSplitting: 0
- m_Overridden: 1
- m_AndroidETC2FallbackOverride: 0
- m_ForceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- m_BuildTarget: iPhone
- m_MaxTextureSize: 2048
- m_ResizeAlgorithm: 0
- m_TextureFormat: 50
- m_TextureCompression: 1
- m_CompressionQuality: 50
- m_CrunchedCompression: 0
- m_AllowsAlphaSplitting: 0
- m_Overridden: 1
- m_AndroidETC2FallbackOverride: 0
- m_ForceMaximumCompressionQuality_BC6H_BC7: 0
- packingSettings:
- serializedVersion: 2
- padding: 4
- blockOffset: 0
- allowAlphaSplitting: 0
- enableRotation: 0
- enableTightPacking: 0
- secondaryTextureSettings: {}
- variantMultiplier: 1
- packables:
- - {fileID: 102900000, guid: f0c2bd0781ee1034f84e0dd675f5dc54, type: 3}
- bindAsDefault: 1
- isAtlasV2: 0
- cachedData: {fileID: 0}
- m_MasterAtlas: {fileID: 0}
- m_PackedSprites:
- - {fileID: 21300000, guid: 70ee3500b64025942bcf9cdcf7c9da7f, type: 3}
- - {fileID: 21300000, guid: 2c853a406c01f7e4ab319613d4d6b125, type: 3}
- - {fileID: 21300000, guid: ee0df8d049e8cdc40b059ae183bc7448, type: 3}
- - {fileID: 21300000, guid: 796245e0b7d34b14ab12b9b9f76246d0, type: 3}
- - {fileID: 21300000, guid: 354ca621aaea62941a881f69e9997789, type: 3}
- - {fileID: 21300000, guid: 402e3af17d57da94e9f2afbda35f94bd, type: 3}
- - {fileID: 21300000, guid: f24a3cf1b4c80e644a25b659f5d81cab, type: 3}
- - {fileID: 21300000, guid: c1c674720882aa14bbfa27efe47bd455, type: 3}
- - {fileID: 21300000, guid: 39e386a2340762542ab1cdbb6f4d284a, type: 3}
- - {fileID: 21300000, guid: 1872eb630fc869c448e7fa7dd78f03e5, type: 3}
- - {fileID: 21300000, guid: d375738329fc0b24eba9adec4900cd65, type: 3}
- - {fileID: 21300000, guid: 6e6780b3b69df494ca86f2ba742ab4ff, type: 3}
- - {fileID: 21300000, guid: 128982c3ffd68014bbe715ebcebd49ef, type: 3}
- - {fileID: 21300000, guid: 8f54e3e3912cd524e8785b840587765e, type: 3}
- - {fileID: 21300000, guid: 60ec8c24465bfca4781083710975a225, type: 3}
- - {fileID: 21300000, guid: 270043549ba438d42ad12cdb6fe8d6db, type: 3}
- - {fileID: 21300000, guid: 8a1d49a4e7460034ba4f450805fbce0e, type: 3}
- - {fileID: 21300000, guid: 492604b454d2a9145a0dbc9778d63636, type: 3}
- - {fileID: 21300000, guid: 8a72adb42754a1c45b048cec65631289, type: 3}
- - {fileID: 21300000, guid: a86176f4d98080e4697042c30913c6c4, type: 3}
- - {fileID: 21300000, guid: 2c091945cce7f9d4db36c7c7cce8ae31, type: 3}
- - {fileID: 21300000, guid: ce90868518d766a47b0e74cbd1828ae9, type: 3}
- - {fileID: 21300000, guid: 5946fd26eb24672428df1a7f0be57356, type: 3}
- - {fileID: 21300000, guid: 110cf356ed2492f46a6280025c377f61, type: 3}
- - {fileID: 21300000, guid: ecbfe2c6ee57e284bb88c09709a895bd, type: 3}
- - {fileID: 21300000, guid: ff604a18fbb77694a833d9b4fb867854, type: 3}
- - {fileID: 21300000, guid: 0ed2f0a8c10be5f43ac385c88f10c04d, type: 3}
- - {fileID: 21300000, guid: 374abdc8e87ac1d43bf3c4c2a17530c8, type: 3}
- - {fileID: 21300000, guid: e4489359e92b7b64d833c777ba6c8e88, type: 3}
- - {fileID: 21300000, guid: 6b3e17a9084005441bbabd97659cfba4, type: 3}
- - {fileID: 21300000, guid: bc4f02aae5564f0478733a11fd1b7491, type: 3}
- - {fileID: 21300000, guid: 706cf0caa0634ad4ea96e29c5d27984e, type: 3}
- - {fileID: 21300000, guid: f0d0414b7d4ee9b4f90891321d99bda9, type: 3}
- - {fileID: 21300000, guid: 2a79456b07e6a384995efccb7b3d1815, type: 3}
- - {fileID: 21300000, guid: 6be4996b962d75c4c959cc18d5cb36bb, type: 3}
- - {fileID: 21300000, guid: e99c98bbd7686c54fb6c295fa2fd1cb1, type: 3}
- - {fileID: 21300000, guid: 8602111c232a7e64f84b69b7f22c3385, type: 3}
- - {fileID: 21300000, guid: 70fefe2dcc489334fa39b926a0214fba, type: 3}
- - {fileID: 21300000, guid: d408c20e43b03af4fa60e31fdfdf40af, type: 3}
- - {fileID: 21300000, guid: c53537eed4d49cb43b9a6c4ad7bb4338, type: 3}
- - {fileID: 21300000, guid: 0becc83fee4c76a4ea964ae412cd8b23, type: 3}
- - {fileID: 21300000, guid: 0d8971bf74f69c44cbb36a78a7dbfa32, type: 3}
- - {fileID: 21300000, guid: d98a6ecff7df83149a1ed4257f9f18b5, type: 3}
- - {fileID: 21300000, guid: 24b274efbfb2ae84ba560e4a9cdc9e5d, type: 3}
- m_PackedSpriteNamesToIndex:
- - common_check_1
- - common_board_52
- - common_decoration_23
- - common_progress_4
- - common_decoration_24
- - common_progress_5_bg
- - common_btn_2
- - common_progress_bg_3
- - common_lock_2
- - common_board_39
- - common_progress_3
- - common_btn_copy
- - common_board_34
- - common_board_49
- - common_progress_6
- - common_board_41
- - common_board_15
- - common_floor_16
- - common_line_2
- - common_btn_close_1
- - common_btn_18
- - common_inf
- - recharge_dialog_1
- - common_dec_16
- - common_bg_0
- - common_progress_bg_1
- - common_decoration_11
- - common_dec_9
- - common_decoration_10
- - common_menu_4
- - common_board_37
- - common_btn_16
- - act_common_dec_5
- - recharge_bg_10
- - common_line_7
- - common_ad_5
- - common_btn_3
- - common_btn_grey
- - common_ad
- - common_floor_9
- - common_board_42
- - common_board_43
- - common_btn_7
- - common_ad_3
- m_RenderDataMap: {}
- m_Tag: common_temp
- m_IsVariant: 0
diff --git a/Assets/arts/atlas/ui/fund.asset b/Assets/arts/atlas/ui/fund.asset
new file mode 100644
index 000000000..decf7fff6
--- /dev/null
+++ b/Assets/arts/atlas/ui/fund.asset
@@ -0,0 +1,25 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 3a48bfa163a714a6d8469f9c542e223f, type: 3}
+ m_Name: fund
+ m_EditorClassIdentifier:
+ spriteList:
+ - {fileID: 21300000, guid: 9e9516f6479744f4288e52e5b3280fe1, type: 3}
+ - {fileID: 21300000, guid: 5b183fcdedee76849ab5513765c1471e, type: 3}
+ - {fileID: 21300000, guid: 29242785482b051488d96c2ecd2e761b, type: 3}
+ - {fileID: 21300000, guid: 08681436652428f4199aad1883302d26, type: 3}
+ - {fileID: 21300000, guid: 67ce04f31afb36f44923ee511b42a74f, type: 3}
+ - {fileID: 21300000, guid: fc74996e23010ec4d973d59b17d716cd, type: 3}
+ - {fileID: 21300000, guid: 84e4e674d7fa58846ad929676cc84a5d, type: 3}
+ - {fileID: 21300000, guid: 5843d5c65818a8b408ca7ed468f73e0e, type: 3}
+ - {fileID: 21300000, guid: be610284f4e356d42b2dc15178d3d6ed, type: 3}
+ spriteNameList: f1a328f8f2a328f8f3a328f8f4a328f8f5a328f8f6a328f8f7a328f8f8a328f8b6577cad
diff --git a/Assets/arts/atlas/ui/common_temp.asset.meta b/Assets/arts/atlas/ui/fund.asset.meta
similarity index 59%
rename from Assets/arts/atlas/ui/common_temp.asset.meta
rename to Assets/arts/atlas/ui/fund.asset.meta
index c054be7a7..39a28b0b4 100644
--- a/Assets/arts/atlas/ui/common_temp.asset.meta
+++ b/Assets/arts/atlas/ui/fund.asset.meta
@@ -1,8 +1,8 @@
fileFormatVersion: 2
-guid: 8da5c5defd3bba743838212261dcc22d
+guid: 53364ed654f75d444ba484ba439b0d5f
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
- assetBundleName: arts/textures/ui/common_temp.ab
+ assetBundleName:
assetBundleVariant:
diff --git a/Assets/arts/atlas/ui/fund.spriteatlas b/Assets/arts/atlas/ui/fund.spriteatlas
new file mode 100644
index 000000000..084603499
--- /dev/null
+++ b/Assets/arts/atlas/ui/fund.spriteatlas
@@ -0,0 +1,85 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!687078895 &4343727234628468602
+SpriteAtlas:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: fund
+ m_EditorData:
+ serializedVersion: 2
+ textureSettings:
+ serializedVersion: 2
+ anisoLevel: 0
+ compressionQuality: 0
+ maxTextureSize: 0
+ textureCompression: 0
+ filterMode: 1
+ generateMipMaps: 0
+ readable: 0
+ crunchedCompression: 0
+ sRGB: 1
+ platformSettings:
+ - serializedVersion: 3
+ m_BuildTarget: Android
+ m_MaxTextureSize: 2048
+ m_ResizeAlgorithm: 0
+ m_TextureFormat: 47
+ m_TextureCompression: 1
+ m_CompressionQuality: 50
+ m_CrunchedCompression: 0
+ m_AllowsAlphaSplitting: 0
+ m_Overridden: 1
+ m_AndroidETC2FallbackOverride: 0
+ m_ForceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ m_BuildTarget: iPhone
+ m_MaxTextureSize: 2048
+ m_ResizeAlgorithm: 0
+ m_TextureFormat: 50
+ m_TextureCompression: 1
+ m_CompressionQuality: 50
+ m_CrunchedCompression: 0
+ m_AllowsAlphaSplitting: 0
+ m_Overridden: 1
+ m_AndroidETC2FallbackOverride: 0
+ m_ForceMaximumCompressionQuality_BC6H_BC7: 0
+ packingSettings:
+ serializedVersion: 2
+ padding: 4
+ blockOffset: 0
+ allowAlphaSplitting: 0
+ enableRotation: 0
+ enableTightPacking: 0
+ secondaryTextureSettings: {}
+ variantMultiplier: 1
+ packables:
+ - {fileID: 102900000, guid: c3e6e281729da744dbc10b18077ca594, type: 3}
+ bindAsDefault: 1
+ isAtlasV2: 0
+ cachedData: {fileID: 0}
+ m_MasterAtlas: {fileID: 0}
+ m_PackedSprites:
+ - {fileID: 21300000, guid: 67ce04f31afb36f44923ee511b42a74f, type: 3}
+ - {fileID: 21300000, guid: 84e4e674d7fa58846ad929676cc84a5d, type: 3}
+ - {fileID: 21300000, guid: be610284f4e356d42b2dc15178d3d6ed, type: 3}
+ - {fileID: 21300000, guid: 29242785482b051488d96c2ecd2e761b, type: 3}
+ - {fileID: 21300000, guid: 08681436652428f4199aad1883302d26, type: 3}
+ - {fileID: 21300000, guid: 5843d5c65818a8b408ca7ed468f73e0e, type: 3}
+ - {fileID: 21300000, guid: 9e9516f6479744f4288e52e5b3280fe1, type: 3}
+ - {fileID: 21300000, guid: 5b183fcdedee76849ab5513765c1471e, type: 3}
+ - {fileID: 21300000, guid: fc74996e23010ec4d973d59b17d716cd, type: 3}
+ m_PackedSpriteNamesToIndex:
+ - fund_bg_5
+ - fund_bg_7
+ - fund_select
+ - fund_bg_3
+ - fund_bg_4
+ - fund_bg_8
+ - fund_bg_1
+ - fund_bg_2
+ - fund_bg_6
+ m_RenderDataMap: {}
+ m_Tag: fund
+ m_IsVariant: 0
diff --git a/Assets/arts/atlas/ui/common_temp.spriteatlas.meta b/Assets/arts/atlas/ui/fund.spriteatlas.meta
similarity index 61%
rename from Assets/arts/atlas/ui/common_temp.spriteatlas.meta
rename to Assets/arts/atlas/ui/fund.spriteatlas.meta
index c9d1f4419..6ba8646ae 100644
--- a/Assets/arts/atlas/ui/common_temp.spriteatlas.meta
+++ b/Assets/arts/atlas/ui/fund.spriteatlas.meta
@@ -1,8 +1,8 @@
fileFormatVersion: 2
-guid: 0d90a7500db9ccd488dfe2e4319b17ff
+guid: dc83f179321121142ab7e7ff31ab85ee
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 4343727234628468602
userData:
- assetBundleName: arts/textures/ui/common_temp.ab
+ assetBundleName:
assetBundleVariant:
diff --git a/Assets/arts/atlas/ui/hero.asset b/Assets/arts/atlas/ui/hero.asset
index d561b4489..4ef7158b2 100644
--- a/Assets/arts/atlas/ui/hero.asset
+++ b/Assets/arts/atlas/ui/hero.asset
@@ -20,4 +20,9 @@ MonoBehaviour:
- {fileID: 21300000, guid: da36a68e123533e4797476431612061c, type: 3}
- {fileID: 21300000, guid: 4c3d0a48af89a864bb285ebc163b77b5, type: 3}
- {fileID: 21300000, guid: 31673d61953a1bb40a63b2fa93367988, type: 3}
- spriteNameList: dceffc88af66bc96b066bc96b166bc96b266bc96b366bc96b466bc96
+ - {fileID: 21300000, guid: 5cd566b6505c7f0439a8a4f414ac4a98, type: 3}
+ - {fileID: 21300000, guid: af2f52d7aeee8364bbe555c962fb44b6, type: 3}
+ - {fileID: 21300000, guid: 172d4d5f9a8bb9e4fa2be8cf0b90403f, type: 3}
+ - {fileID: 21300000, guid: b4a559b38eb78474995dc80ba996a3fa, type: 3}
+ - {fileID: 21300000, guid: 43caa329b5f2f364584532df1b3c95fe, type: 3}
+ spriteNameList: dceffc88af66bc96b066bc96b166bc96b266bc96b366bc96b466bc9637881e3238881e3239881e323a881e323b881e32
diff --git a/Assets/arts/atlas/ui/hero.spriteatlas b/Assets/arts/atlas/ui/hero.spriteatlas
index 055f6920f..847dbcf9a 100644
--- a/Assets/arts/atlas/ui/hero.spriteatlas
+++ b/Assets/arts/atlas/ui/hero.spriteatlas
@@ -63,19 +63,29 @@ SpriteAtlas:
m_PackedSprites:
- {fileID: 21300000, guid: 31673d61953a1bb40a63b2fa93367988, type: 3}
- {fileID: 21300000, guid: cda2aa3241ac98f4ba89e3debd597c08, type: 3}
+ - {fileID: 21300000, guid: b4a559b38eb78474995dc80ba996a3fa, type: 3}
- {fileID: 21300000, guid: 2406b504a91c18b43af5f1e8479825e4, type: 3}
- {fileID: 21300000, guid: c5b636b42c0365744914663e4752e5d5, type: 3}
+ - {fileID: 21300000, guid: 5cd566b6505c7f0439a8a4f414ac4a98, type: 3}
+ - {fileID: 21300000, guid: af2f52d7aeee8364bbe555c962fb44b6, type: 3}
- {fileID: 21300000, guid: 4c3d0a48af89a864bb285ebc163b77b5, type: 3}
- {fileID: 21300000, guid: 1ccd54c8189c82c42a429b7dc78b0302, type: 3}
+ - {fileID: 21300000, guid: 43caa329b5f2f364584532df1b3c95fe, type: 3}
- {fileID: 21300000, guid: da36a68e123533e4797476431612061c, type: 3}
+ - {fileID: 21300000, guid: 172d4d5f9a8bb9e4fa2be8cf0b90403f, type: 3}
m_PackedSpriteNamesToIndex:
- hero_dec_6
- hero_dec_3
+ - match_4
- hero_dec_2
- hero_dec_1
+ - match_1
+ - match_2
- hero_dec_5
- hero_bg_1
+ - match_5
- hero_dec_4
+ - match_3
m_RenderDataMap: {}
m_Tag: hero
m_IsVariant: 0
diff --git a/Assets/arts/atlas/ui/mail.asset b/Assets/arts/atlas/ui/mail.asset
new file mode 100644
index 000000000..453955801
--- /dev/null
+++ b/Assets/arts/atlas/ui/mail.asset
@@ -0,0 +1,23 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 3a48bfa163a714a6d8469f9c542e223f, type: 3}
+ m_Name: mail
+ m_EditorClassIdentifier:
+ spriteList:
+ - {fileID: 21300000, guid: 0c685b353f6fe5f45a158f6d79f60871, type: 3}
+ - {fileID: 21300000, guid: 524d8ada3219633418886910b5b1fe11, type: 3}
+ - {fileID: 21300000, guid: 9b409fa2a72a4bb41bc4dc3578bb3cd0, type: 3}
+ - {fileID: 21300000, guid: 8efeb4a8c4b657d4da2483daad2d1267, type: 3}
+ - {fileID: 21300000, guid: dd37630b5e7d6d54983be68b235b160f, type: 3}
+ - {fileID: 21300000, guid: 33bec6471f24bf6468e5318b6cec9109, type: 3}
+ - {fileID: 21300000, guid: 7d49105bbb826fe4592b21c43422fce1, type: 3}
+ spriteNameList: 90def1ffac9a7cc5ad9a7cc5ae9a7cc5af9a7cc5c10668ff182b68ff
diff --git a/Assets/arts/atlas/ui/mail.asset.meta b/Assets/arts/atlas/ui/mail.asset.meta
new file mode 100644
index 000000000..4866ab32c
--- /dev/null
+++ b/Assets/arts/atlas/ui/mail.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: caa5be72c22051943a538195c24036a7
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/atlas/ui/mail.spriteatlas b/Assets/arts/atlas/ui/mail.spriteatlas
new file mode 100644
index 000000000..9ca50c83a
--- /dev/null
+++ b/Assets/arts/atlas/ui/mail.spriteatlas
@@ -0,0 +1,81 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!687078895 &4343727234628468602
+SpriteAtlas:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: mail
+ m_EditorData:
+ serializedVersion: 2
+ textureSettings:
+ serializedVersion: 2
+ anisoLevel: 0
+ compressionQuality: 0
+ maxTextureSize: 0
+ textureCompression: 0
+ filterMode: 1
+ generateMipMaps: 0
+ readable: 0
+ crunchedCompression: 0
+ sRGB: 1
+ platformSettings:
+ - serializedVersion: 3
+ m_BuildTarget: Android
+ m_MaxTextureSize: 2048
+ m_ResizeAlgorithm: 0
+ m_TextureFormat: 47
+ m_TextureCompression: 1
+ m_CompressionQuality: 50
+ m_CrunchedCompression: 0
+ m_AllowsAlphaSplitting: 0
+ m_Overridden: 1
+ m_AndroidETC2FallbackOverride: 0
+ m_ForceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ m_BuildTarget: iPhone
+ m_MaxTextureSize: 2048
+ m_ResizeAlgorithm: 0
+ m_TextureFormat: 50
+ m_TextureCompression: 1
+ m_CompressionQuality: 50
+ m_CrunchedCompression: 0
+ m_AllowsAlphaSplitting: 0
+ m_Overridden: 1
+ m_AndroidETC2FallbackOverride: 0
+ m_ForceMaximumCompressionQuality_BC6H_BC7: 0
+ packingSettings:
+ serializedVersion: 2
+ padding: 4
+ blockOffset: 0
+ allowAlphaSplitting: 0
+ enableRotation: 0
+ enableTightPacking: 0
+ secondaryTextureSettings: {}
+ variantMultiplier: 1
+ packables:
+ - {fileID: 102900000, guid: 95d2705562a37d64d826cee76d757f98, type: 3}
+ bindAsDefault: 1
+ isAtlasV2: 0
+ cachedData: {fileID: 0}
+ m_MasterAtlas: {fileID: 0}
+ m_PackedSprites:
+ - {fileID: 21300000, guid: 9b409fa2a72a4bb41bc4dc3578bb3cd0, type: 3}
+ - {fileID: 21300000, guid: 0c685b353f6fe5f45a158f6d79f60871, type: 3}
+ - {fileID: 21300000, guid: 33bec6471f24bf6468e5318b6cec9109, type: 3}
+ - {fileID: 21300000, guid: 8efeb4a8c4b657d4da2483daad2d1267, type: 3}
+ - {fileID: 21300000, guid: 524d8ada3219633418886910b5b1fe11, type: 3}
+ - {fileID: 21300000, guid: dd37630b5e7d6d54983be68b235b160f, type: 3}
+ - {fileID: 21300000, guid: 7d49105bbb826fe4592b21c43422fce1, type: 3}
+ m_PackedSpriteNamesToIndex:
+ - mail_dec_2
+ - mail_board_1
+ - mail_dot
+ - mail_dec_3
+ - mail_dec_1
+ - mail_dec_4
+ - mail_new
+ m_RenderDataMap: {}
+ m_Tag: mail
+ m_IsVariant: 0
diff --git a/Assets/arts/atlas/ui/mail.spriteatlas.meta b/Assets/arts/atlas/ui/mail.spriteatlas.meta
new file mode 100644
index 000000000..6ac8d69bc
--- /dev/null
+++ b/Assets/arts/atlas/ui/mail.spriteatlas.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 760f1d9334b003f4bbf59e55e6246ea7
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 4343727234628468602
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/atlas/ui/main.asset b/Assets/arts/atlas/ui/main.asset
index becad7b34..f7f68ebc2 100644
--- a/Assets/arts/atlas/ui/main.asset
+++ b/Assets/arts/atlas/ui/main.asset
@@ -15,17 +15,18 @@ MonoBehaviour:
spriteList:
- {fileID: 21300000, guid: 6a471cbadff649e429c3ca4a54c0fd4b, type: 3}
- {fileID: 21300000, guid: ddc829b8adf444b43a57f7ddbd279aa9, type: 3}
+ - {fileID: 21300000, guid: 5962af8bc86575c459b454d2266f805a, type: 3}
- {fileID: 21300000, guid: 42b38fed8c8d3464c925bb559928d444, type: 3}
- {fileID: 21300000, guid: 9801a63125a239349aa621a6aaf6b164, type: 3}
- {fileID: 21300000, guid: d5338fcb9468f5d4fb50f0b3cb68be90, type: 3}
- {fileID: 21300000, guid: a11d2ecba6359b7449faa1c86929e65b, type: 3}
- {fileID: 21300000, guid: 2ae50aed0182729429de176b08707a75, type: 3}
- {fileID: 21300000, guid: d74a30412c3dd324ea5bfc19f387fc3c, type: 3}
- - {fileID: 21300000, guid: 3b5c4427fd9d7e14b936f1d25b28aa07, type: 3}
+ - {fileID: 21300000, guid: ecff65bf8ef41a24ebae8ea1de3c262c, type: 3}
- {fileID: 21300000, guid: ac95da3d35af16f42a23be26f95d5242, type: 3}
- {fileID: 21300000, guid: 296a6182d7f78e94383c45f11c4c6fdb, type: 3}
- {fileID: 21300000, guid: 97c8eba9132d32246ae08c3cbc05c7cb, type: 3}
- {fileID: 21300000, guid: 4acb7dd045b38d445adbf073200bd73a, type: 3}
- {fileID: 21300000, guid: 64f989e8b40a3fc4ea138aa6d314d7be, type: 3}
- {fileID: 21300000, guid: df3282ede5d4e6740b33cbb893059cb3, type: 3}
- spriteNameList: 7d7901f1348a45df3b208104d5cfde8b80658304a5b4b1319b75338ce7ad997bb87f34fa4e9586042e11492f2f11492f3011492f3111492f61a4d796
+ spriteNameList: 7d7901f1348a45df8e8280043b208104d5cfde8b80658304a5b4b1319b75338ce7ad997bb87f34fa4e9586042e11492f2f11492f3011492f3111492f61a4d796
diff --git a/Assets/arts/atlas/ui/main.spriteatlas b/Assets/arts/atlas/ui/main.spriteatlas
index 34e4c84f0..0e0544c6a 100644
--- a/Assets/arts/atlas/ui/main.spriteatlas
+++ b/Assets/arts/atlas/ui/main.spriteatlas
@@ -65,33 +65,35 @@ SpriteAtlas:
- {fileID: 21300000, guid: 9801a63125a239349aa621a6aaf6b164, type: 3}
- {fileID: 21300000, guid: d74a30412c3dd324ea5bfc19f387fc3c, type: 3}
- {fileID: 21300000, guid: 296a6182d7f78e94383c45f11c4c6fdb, type: 3}
- - {fileID: 21300000, guid: 3b5c4427fd9d7e14b936f1d25b28aa07, type: 3}
- {fileID: 21300000, guid: ddc829b8adf444b43a57f7ddbd279aa9, type: 3}
- {fileID: 21300000, guid: 64f989e8b40a3fc4ea138aa6d314d7be, type: 3}
- {fileID: 21300000, guid: 97c8eba9132d32246ae08c3cbc05c7cb, type: 3}
- {fileID: 21300000, guid: 6a471cbadff649e429c3ca4a54c0fd4b, type: 3}
+ - {fileID: 21300000, guid: 5962af8bc86575c459b454d2266f805a, type: 3}
- {fileID: 21300000, guid: a11d2ecba6359b7449faa1c86929e65b, type: 3}
- {fileID: 21300000, guid: d5338fcb9468f5d4fb50f0b3cb68be90, type: 3}
- {fileID: 21300000, guid: ac95da3d35af16f42a23be26f95d5242, type: 3}
- {fileID: 21300000, guid: df3282ede5d4e6740b33cbb893059cb3, type: 3}
- {fileID: 21300000, guid: 2ae50aed0182729429de176b08707a75, type: 3}
- {fileID: 21300000, guid: 42b38fed8c8d3464c925bb559928d444, type: 3}
+ - {fileID: 21300000, guid: ecff65bf8ef41a24ebae8ea1de3c262c, type: 3}
m_PackedSpriteNamesToIndex:
- main_dec_3
- main_btn_ligth
- main_btn_setting
- main_dec_1
- - main_btn_sevenday
- main_btn_bounty
- main_dec_4
- main_dec_2
- main_bg_1
+ - main_btn_fund
- main_btn_pig
- main_btn_mail
- main_btn_task
- maincity_gm
- main_btn_ringt
- main_btn_hang
+ - main_btn_sevenday
m_RenderDataMap: {}
m_Tag: main
m_IsVariant: 0
diff --git a/Assets/arts/atlas/ui/player.asset b/Assets/arts/atlas/ui/player.asset
new file mode 100644
index 000000000..ec8da4e3f
--- /dev/null
+++ b/Assets/arts/atlas/ui/player.asset
@@ -0,0 +1,18 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 3a48bfa163a714a6d8469f9c542e223f, type: 3}
+ m_Name: player
+ m_EditorClassIdentifier:
+ spriteList:
+ - {fileID: 21300000, guid: f6d9e2ab089fcd74aa8f8260e78eb95f, type: 3}
+ - {fileID: 21300000, guid: 8376ad06b717e0040be4de20510db956, type: 3}
+ spriteNameList: 55dd2c217ab36d05
diff --git a/Assets/arts/atlas/ui/player.asset.meta b/Assets/arts/atlas/ui/player.asset.meta
new file mode 100644
index 000000000..e3c183329
--- /dev/null
+++ b/Assets/arts/atlas/ui/player.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 1811341cebb61524782a6f005e18ab9d
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/atlas/ui/player.spriteatlas b/Assets/arts/atlas/ui/player.spriteatlas
new file mode 100644
index 000000000..f280546b2
--- /dev/null
+++ b/Assets/arts/atlas/ui/player.spriteatlas
@@ -0,0 +1,71 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!687078895 &4343727234628468602
+SpriteAtlas:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: player
+ m_EditorData:
+ serializedVersion: 2
+ textureSettings:
+ serializedVersion: 2
+ anisoLevel: 0
+ compressionQuality: 0
+ maxTextureSize: 0
+ textureCompression: 0
+ filterMode: 1
+ generateMipMaps: 0
+ readable: 0
+ crunchedCompression: 0
+ sRGB: 1
+ platformSettings:
+ - serializedVersion: 3
+ m_BuildTarget: Android
+ m_MaxTextureSize: 2048
+ m_ResizeAlgorithm: 0
+ m_TextureFormat: 47
+ m_TextureCompression: 1
+ m_CompressionQuality: 50
+ m_CrunchedCompression: 0
+ m_AllowsAlphaSplitting: 0
+ m_Overridden: 1
+ m_AndroidETC2FallbackOverride: 0
+ m_ForceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ m_BuildTarget: iPhone
+ m_MaxTextureSize: 2048
+ m_ResizeAlgorithm: 0
+ m_TextureFormat: 50
+ m_TextureCompression: 1
+ m_CompressionQuality: 50
+ m_CrunchedCompression: 0
+ m_AllowsAlphaSplitting: 0
+ m_Overridden: 1
+ m_AndroidETC2FallbackOverride: 0
+ m_ForceMaximumCompressionQuality_BC6H_BC7: 0
+ packingSettings:
+ serializedVersion: 2
+ padding: 4
+ blockOffset: 0
+ allowAlphaSplitting: 0
+ enableRotation: 0
+ enableTightPacking: 0
+ secondaryTextureSettings: {}
+ variantMultiplier: 1
+ packables:
+ - {fileID: 102900000, guid: 7ddc16d5afa5d9e4e9e96f0184d85243, type: 3}
+ bindAsDefault: 1
+ isAtlasV2: 0
+ cachedData: {fileID: 0}
+ m_MasterAtlas: {fileID: 0}
+ m_PackedSprites:
+ - {fileID: 21300000, guid: 8376ad06b717e0040be4de20510db956, type: 3}
+ - {fileID: 21300000, guid: f6d9e2ab089fcd74aa8f8260e78eb95f, type: 3}
+ m_PackedSpriteNamesToIndex:
+ - player_title
+ - player_bg_1
+ m_RenderDataMap: {}
+ m_Tag: player
+ m_IsVariant: 0
diff --git a/Assets/arts/atlas/ui/player.spriteatlas.meta b/Assets/arts/atlas/ui/player.spriteatlas.meta
new file mode 100644
index 000000000..4520be0e5
--- /dev/null
+++ b/Assets/arts/atlas/ui/player.spriteatlas.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: aa693d88989a68b48bb0fbb7ec71c8f2
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 4343727234628468602
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/atlas/ui/shop.asset b/Assets/arts/atlas/ui/shop.asset
index e9fc22770..badf3b38a 100644
--- a/Assets/arts/atlas/ui/shop.asset
+++ b/Assets/arts/atlas/ui/shop.asset
@@ -16,6 +16,7 @@ MonoBehaviour:
- {fileID: 21300000, guid: 4808c6ae4ca262b45a174213786a7557, type: 3}
- {fileID: 21300000, guid: ce3ca0348098d8a438bd03f9972f30f5, type: 3}
- {fileID: 21300000, guid: 5254e8fc6e081734c8d668cf144b0898, type: 3}
+ - {fileID: 21300000, guid: 07ea4006b8ffde04f97a0cc804fe5400, type: 3}
- {fileID: 21300000, guid: f7bcb7201d9c8494295efdbbe5c4e673, type: 3}
- {fileID: 21300000, guid: 6adf7c42a711b1c4b8b7eb3ca3a5edd1, type: 3}
- {fileID: 21300000, guid: 9493c3589f7d5274dbc098445db2684e, type: 3}
@@ -30,6 +31,8 @@ MonoBehaviour:
- {fileID: 21300000, guid: c45573f553201204a84ee42b05c34fb8, type: 3}
- {fileID: 21300000, guid: afeea2759c1951d489c4ee3fc499c5c4, type: 3}
- {fileID: 21300000, guid: 62e57e6ef6f56c147b2a1a6e64af3b7c, type: 3}
+ - {fileID: 21300000, guid: cdc12648211453c419d84b2cd3bc7bbf, type: 3}
+ - {fileID: 21300000, guid: 733aebc4de524db438a1538e1ef9e575, type: 3}
- {fileID: 21300000, guid: 8f9d32b0ba738ae43989a97305718382, type: 3}
- {fileID: 21300000, guid: 5f2a6bae0152e51479b90f839957e889, type: 3}
- {fileID: 21300000, guid: 0d5e5854df1c3dd4093aa48b0e038f76, type: 3}
@@ -38,7 +41,9 @@ MonoBehaviour:
- {fileID: 21300000, guid: b71640eebe1a04d48839fe9e45aaf3d0, type: 3}
- {fileID: 21300000, guid: 342c82a1a2a12e041a333a5e95ce7322, type: 3}
- {fileID: 21300000, guid: 6e597148ed6e1b144beef186a1d92d25, type: 3}
+ - {fileID: 21300000, guid: 543b45c81e6589943bbf1369774e78c6, type: 3}
+ - {fileID: 21300000, guid: 5bcea8dc84d5bde4b873f20997eaf2ae, type: 3}
- {fileID: 21300000, guid: a74d7671e7b3c6e4ab6ac559230d32cc, type: 3}
- {fileID: 21300000, guid: d72627ddfda8c0a4cadb06cf4cebf0db, type: 3}
- {fileID: 21300000, guid: 2788225d01b5040488c063e7440fbefc, type: 3}
- spriteNameList: 60629382d0e9d8cfd1e9d8cf6162938262629382636293826462938265629382666293826762938268629382cf04274bd004274bd104274b2a6254742b6254742c625474fd41d5cefe41d5ceff41d5ce0042d5ce0142d5ce0242d5ce0342d5ce0442d5cee5073018e6073018e7073018
+ spriteNameList: 60629382d0e9d8cfd1e9d8cfd2e9d8cf6162938262629382636293826462938265629382666293826762938268629382cf04274bd004274bd104274b2a6254742b6254742c625474ab44f4cfac44f4cffd41d5cefe41d5ceff41d5ce0042d5ce0142d5ce0242d5ce0342d5ce0442d5ce0c012e640d012e64e5073018e6073018e7073018
diff --git a/Assets/arts/atlas/ui/shop.asset.meta b/Assets/arts/atlas/ui/shop.asset.meta
index d2f9b1b77..d2507ef52 100644
--- a/Assets/arts/atlas/ui/shop.asset.meta
+++ b/Assets/arts/atlas/ui/shop.asset.meta
@@ -4,5 +4,5 @@ NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/shop.ab
assetBundleVariant:
diff --git a/Assets/arts/atlas/ui/shop.spriteatlas b/Assets/arts/atlas/ui/shop.spriteatlas
index 885772157..ebf29f852 100644
--- a/Assets/arts/atlas/ui/shop.spriteatlas
+++ b/Assets/arts/atlas/ui/shop.spriteatlas
@@ -71,14 +71,19 @@ SpriteAtlas:
- {fileID: 21300000, guid: 24ad6dc3ad1f6af4abbbbc2fc3c2df56, type: 3}
- {fileID: 21300000, guid: ce3ca0348098d8a438bd03f9972f30f5, type: 3}
- {fileID: 21300000, guid: 0d5e5854df1c3dd4093aa48b0e038f76, type: 3}
+ - {fileID: 21300000, guid: 733aebc4de524db438a1538e1ef9e575, type: 3}
- {fileID: 21300000, guid: afeea2759c1951d489c4ee3fc499c5c4, type: 3}
- {fileID: 21300000, guid: c45573f553201204a84ee42b05c34fb8, type: 3}
- {fileID: 21300000, guid: fe5b08f53cb938347a1b8f8ef51ab90b, type: 3}
+ - {fileID: 21300000, guid: 07ea4006b8ffde04f97a0cc804fe5400, type: 3}
- {fileID: 21300000, guid: 8258e816ca5dae84584f23c5d306af3f, type: 3}
- {fileID: 21300000, guid: 2dc48786355f55b4db3cc506b29e6762, type: 3}
- {fileID: 21300000, guid: 7fe65a877ceb7b9438fe3cb364320aa2, type: 3}
- {fileID: 21300000, guid: 6e597148ed6e1b144beef186a1d92d25, type: 3}
+ - {fileID: 21300000, guid: cdc12648211453c419d84b2cd3bc7bbf, type: 3}
- {fileID: 21300000, guid: 9493c3589f7d5274dbc098445db2684e, type: 3}
+ - {fileID: 21300000, guid: 543b45c81e6589943bbf1369774e78c6, type: 3}
+ - {fileID: 21300000, guid: 5bcea8dc84d5bde4b873f20997eaf2ae, type: 3}
- {fileID: 21300000, guid: 5254e8fc6e081734c8d668cf144b0898, type: 3}
- {fileID: 21300000, guid: 2788225d01b5040488c063e7440fbefc, type: 3}
- {fileID: 21300000, guid: d72627ddfda8c0a4cadb06cf4cebf0db, type: 3}
@@ -100,14 +105,19 @@ SpriteAtlas:
- shop_diamond_4
- shop_bg_10
- shop_diamond_3
+ - shop_dec_2
- shop_chest_2
- shop_chest_1
- shop_bg_9
+ - shop_bg_12
- shop_bg_7
- shop_diamond_5
- shop_board_3
- shop_diamond_8
+ - shop_dec_1
- shop_bg_4
+ - shop_pig_diamond_1
+ - shop_pig_diamond_2
- shop_bg_11
- shop_species_3
- shop_species_2
diff --git a/Assets/arts/atlas/ui/shop.spriteatlas.meta b/Assets/arts/atlas/ui/shop.spriteatlas.meta
index 38e4837dd..397b0313f 100644
--- a/Assets/arts/atlas/ui/shop.spriteatlas.meta
+++ b/Assets/arts/atlas/ui/shop.spriteatlas.meta
@@ -4,5 +4,5 @@ NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 4343727234628468602
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/shop.ab
assetBundleVariant:
diff --git a/Assets/arts/atlas/ui/task.asset.meta b/Assets/arts/atlas/ui/task.asset.meta
index 387955dfd..098ddf159 100644
--- a/Assets/arts/atlas/ui/task.asset.meta
+++ b/Assets/arts/atlas/ui/task.asset.meta
@@ -4,5 +4,5 @@ NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/task.ab
assetBundleVariant:
diff --git a/Assets/arts/atlas/ui/task.spriteatlas.meta b/Assets/arts/atlas/ui/task.spriteatlas.meta
index 7e90f6231..b16516b6a 100644
--- a/Assets/arts/atlas/ui/task.spriteatlas.meta
+++ b/Assets/arts/atlas/ui/task.spriteatlas.meta
@@ -4,5 +4,5 @@ NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 4343727234628468602
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/task.ab
assetBundleVariant:
diff --git a/Assets/arts/fonts/bmfonts/battle/battle_damage.fontsettings b/Assets/arts/fonts/bmfonts/battle/battle_damage.fontsettings
index 409838e19..d53674cbc 100644
--- a/Assets/arts/fonts/bmfonts/battle/battle_damage.fontsettings
+++ b/Assets/arts/fonts/bmfonts/battle/battle_damage.fontsettings
@@ -22,8 +22,8 @@ Font:
index: 43
uv:
serializedVersion: 2
- x: 0
- y: 0.89453125
+ x: 0.1640625
+ y: 0.7871094
width: 0.080078125
height: 0.10546875
vert:
@@ -38,8 +38,8 @@ Font:
index: 44
uv:
serializedVersion: 2
- x: 0.08203125
- y: 0.89453125
+ x: 0.24609375
+ y: 0.7871094
width: 0.080078125
height: 0.10546875
vert:
@@ -54,8 +54,8 @@ Font:
index: 45
uv:
serializedVersion: 2
- x: 0.1640625
- y: 0.89453125
+ x: 0.328125
+ y: 0.7871094
width: 0.080078125
height: 0.10546875
vert:
@@ -70,8 +70,8 @@ Font:
index: 48
uv:
serializedVersion: 2
- x: 0.24609375
- y: 0.89453125
+ x: 0.41015625
+ y: 0.7871094
width: 0.080078125
height: 0.10546875
vert:
@@ -86,8 +86,8 @@ Font:
index: 49
uv:
serializedVersion: 2
- x: 0.328125
- y: 0.89453125
+ x: 0.4921875
+ y: 0.7871094
width: 0.080078125
height: 0.10546875
vert:
@@ -102,8 +102,8 @@ Font:
index: 50
uv:
serializedVersion: 2
- x: 0.41015625
- y: 0.89453125
+ x: 0.57421875
+ y: 0.7871094
width: 0.080078125
height: 0.10546875
vert:
@@ -118,8 +118,8 @@ Font:
index: 51
uv:
serializedVersion: 2
- x: 0.4921875
- y: 0.89453125
+ x: 0.65625
+ y: 0.7871094
width: 0.080078125
height: 0.10546875
vert:
@@ -134,8 +134,8 @@ Font:
index: 52
uv:
serializedVersion: 2
- x: 0.57421875
- y: 0.89453125
+ x: 0.73828125
+ y: 0.7871094
width: 0.080078125
height: 0.10546875
vert:
@@ -150,8 +150,8 @@ Font:
index: 53
uv:
serializedVersion: 2
- x: 0.65625
- y: 0.89453125
+ x: 0.8203125
+ y: 0.7871094
width: 0.080078125
height: 0.10546875
vert:
@@ -166,8 +166,8 @@ Font:
index: 54
uv:
serializedVersion: 2
- x: 0.73828125
- y: 0.89453125
+ x: 0.90234375
+ y: 0.7871094
width: 0.080078125
height: 0.10546875
vert:
@@ -182,8 +182,8 @@ Font:
index: 55
uv:
serializedVersion: 2
- x: 0.8203125
- y: 0.89453125
+ x: 0
+ y: 0.6796875
width: 0.080078125
height: 0.10546875
vert:
@@ -198,8 +198,8 @@ Font:
index: 56
uv:
serializedVersion: 2
- x: 0.90234375
- y: 0.89453125
+ x: 0.08203125
+ y: 0.6796875
width: 0.080078125
height: 0.10546875
vert:
@@ -214,8 +214,8 @@ Font:
index: 57
uv:
serializedVersion: 2
- x: 0
- y: 0.7871094
+ x: 0.1640625
+ y: 0.6796875
width: 0.080078125
height: 0.10546875
vert:
@@ -226,12 +226,28 @@ Font:
height: -54
advance: 41
flipped: 0
+ - serializedVersion: 2
+ index: 97
+ uv:
+ serializedVersion: 2
+ x: 0.65625
+ y: 0.47070312
+ width: 0.1015625
+ height: 0.099609375
+ vert:
+ serializedVersion: 2
+ x: 0
+ y: 25
+ width: 52
+ height: -50
+ advance: 52
+ flipped: 0
- serializedVersion: 2
index: 99
uv:
serializedVersion: 2
- x: 0.4921875
- y: 0.578125
+ x: 0.7597656
+ y: 0.47070312
width: 0.1015625
height: 0.099609375
vert:
@@ -246,8 +262,8 @@ Font:
index: 107
uv:
serializedVersion: 2
- x: 0.1640625
- y: 0.7871094
+ x: 0.41015625
+ y: 0.6796875
width: 0.080078125
height: 0.10546875
vert:
diff --git a/Assets/arts/fonts/bmfonts/battle/battle_heal.fontsettings b/Assets/arts/fonts/bmfonts/battle/battle_heal.fontsettings
index 9993a89f5..270260bf5 100644
--- a/Assets/arts/fonts/bmfonts/battle/battle_heal.fontsettings
+++ b/Assets/arts/fonts/bmfonts/battle/battle_heal.fontsettings
@@ -22,8 +22,8 @@ Font:
index: 43
uv:
serializedVersion: 2
- x: 0.24609375
- y: 0.7871094
+ x: 0.4921875
+ y: 0.6796875
width: 0.080078125
height: 0.10546875
vert:
@@ -38,8 +38,8 @@ Font:
index: 44
uv:
serializedVersion: 2
- x: 0.328125
- y: 0.7871094
+ x: 0.57421875
+ y: 0.6796875
width: 0.080078125
height: 0.10546875
vert:
@@ -54,8 +54,8 @@ Font:
index: 45
uv:
serializedVersion: 2
- x: 0.41015625
- y: 0.7871094
+ x: 0.65625
+ y: 0.6796875
width: 0.080078125
height: 0.10546875
vert:
@@ -70,8 +70,8 @@ Font:
index: 48
uv:
serializedVersion: 2
- x: 0.4921875
- y: 0.7871094
+ x: 0.73828125
+ y: 0.6796875
width: 0.080078125
height: 0.10546875
vert:
@@ -86,8 +86,8 @@ Font:
index: 49
uv:
serializedVersion: 2
- x: 0.57421875
- y: 0.7871094
+ x: 0.8203125
+ y: 0.6796875
width: 0.080078125
height: 0.10546875
vert:
@@ -102,8 +102,8 @@ Font:
index: 50
uv:
serializedVersion: 2
- x: 0.65625
- y: 0.7871094
+ x: 0.90234375
+ y: 0.6796875
width: 0.080078125
height: 0.10546875
vert:
@@ -118,8 +118,8 @@ Font:
index: 51
uv:
serializedVersion: 2
- x: 0.73828125
- y: 0.7871094
+ x: 0
+ y: 0.5722656
width: 0.080078125
height: 0.10546875
vert:
@@ -134,8 +134,8 @@ Font:
index: 52
uv:
serializedVersion: 2
- x: 0.8203125
- y: 0.7871094
+ x: 0.08203125
+ y: 0.5722656
width: 0.080078125
height: 0.10546875
vert:
@@ -150,8 +150,8 @@ Font:
index: 53
uv:
serializedVersion: 2
- x: 0.90234375
- y: 0.7871094
+ x: 0.1640625
+ y: 0.5722656
width: 0.080078125
height: 0.10546875
vert:
@@ -166,8 +166,8 @@ Font:
index: 54
uv:
serializedVersion: 2
- x: 0
- y: 0.6796875
+ x: 0.24609375
+ y: 0.5722656
width: 0.080078125
height: 0.10546875
vert:
@@ -182,8 +182,8 @@ Font:
index: 55
uv:
serializedVersion: 2
- x: 0.08203125
- y: 0.6796875
+ x: 0.328125
+ y: 0.5722656
width: 0.080078125
height: 0.10546875
vert:
@@ -198,8 +198,8 @@ Font:
index: 56
uv:
serializedVersion: 2
- x: 0.1640625
- y: 0.6796875
+ x: 0.41015625
+ y: 0.5722656
width: 0.080078125
height: 0.10546875
vert:
@@ -214,8 +214,8 @@ Font:
index: 57
uv:
serializedVersion: 2
- x: 0.24609375
- y: 0.6796875
+ x: 0.4921875
+ y: 0.5722656
width: 0.080078125
height: 0.10546875
vert:
@@ -230,8 +230,8 @@ Font:
index: 107
uv:
serializedVersion: 2
- x: 0.328125
- y: 0.6796875
+ x: 0.57421875
+ y: 0.5722656
width: 0.080078125
height: 0.10546875
vert:
diff --git a/Assets/arts/fonts/bmfonts/battle/battle_less.fontsettings b/Assets/arts/fonts/bmfonts/battle/battle_less.fontsettings
new file mode 100644
index 000000000..60a7ef9b0
--- /dev/null
+++ b/Assets/arts/fonts/bmfonts/battle/battle_less.fontsettings
@@ -0,0 +1,271 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!128 &12800000
+Font:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: battle_less
+ serializedVersion: 5
+ m_LineSpacing: 0.1
+ m_DefaultMaterial: {fileID: 2100000, guid: ab9a16d141eb1ff408e48b36e9ebac5a, type: 2}
+ m_FontSize: 0
+ m_Texture: {fileID: 0}
+ m_AsciiStartOffset: 0
+ m_Tracking: 1
+ m_CharacterSpacing: 0
+ m_CharacterPadding: 1
+ m_ConvertCase: 0
+ m_CharacterRects:
+ - serializedVersion: 2
+ index: 43
+ uv:
+ serializedVersion: 2
+ x: 0.65625
+ y: 0.5722656
+ width: 0.080078125
+ height: 0.10546875
+ vert:
+ serializedVersion: 2
+ x: 0
+ y: 27
+ width: 41
+ height: -54
+ advance: 41
+ flipped: 0
+ - serializedVersion: 2
+ index: 44
+ uv:
+ serializedVersion: 2
+ x: 0.73828125
+ y: 0.5722656
+ width: 0.080078125
+ height: 0.10546875
+ vert:
+ serializedVersion: 2
+ x: 0
+ y: 27
+ width: 41
+ height: -54
+ advance: 41
+ flipped: 0
+ - serializedVersion: 2
+ index: 45
+ uv:
+ serializedVersion: 2
+ x: 0.8203125
+ y: 0.5722656
+ width: 0.080078125
+ height: 0.10546875
+ vert:
+ serializedVersion: 2
+ x: 0
+ y: 27
+ width: 41
+ height: -54
+ advance: 41
+ flipped: 0
+ - serializedVersion: 2
+ index: 48
+ uv:
+ serializedVersion: 2
+ x: 0.90234375
+ y: 0.5722656
+ width: 0.080078125
+ height: 0.10546875
+ vert:
+ serializedVersion: 2
+ x: 0
+ y: 27
+ width: 41
+ height: -54
+ advance: 41
+ flipped: 0
+ - serializedVersion: 2
+ index: 49
+ uv:
+ serializedVersion: 2
+ x: 0
+ y: 0.46484375
+ width: 0.080078125
+ height: 0.10546875
+ vert:
+ serializedVersion: 2
+ x: 0
+ y: 27
+ width: 41
+ height: -54
+ advance: 41
+ flipped: 0
+ - serializedVersion: 2
+ index: 50
+ uv:
+ serializedVersion: 2
+ x: 0.08203125
+ y: 0.46484375
+ width: 0.080078125
+ height: 0.10546875
+ vert:
+ serializedVersion: 2
+ x: 0
+ y: 27
+ width: 41
+ height: -54
+ advance: 41
+ flipped: 0
+ - serializedVersion: 2
+ index: 51
+ uv:
+ serializedVersion: 2
+ x: 0.1640625
+ y: 0.46484375
+ width: 0.080078125
+ height: 0.10546875
+ vert:
+ serializedVersion: 2
+ x: 0
+ y: 27
+ width: 41
+ height: -54
+ advance: 41
+ flipped: 0
+ - serializedVersion: 2
+ index: 52
+ uv:
+ serializedVersion: 2
+ x: 0.24609375
+ y: 0.46484375
+ width: 0.080078125
+ height: 0.10546875
+ vert:
+ serializedVersion: 2
+ x: 0
+ y: 27
+ width: 41
+ height: -54
+ advance: 41
+ flipped: 0
+ - serializedVersion: 2
+ index: 53
+ uv:
+ serializedVersion: 2
+ x: 0.328125
+ y: 0.46484375
+ width: 0.080078125
+ height: 0.10546875
+ vert:
+ serializedVersion: 2
+ x: 0
+ y: 27
+ width: 41
+ height: -54
+ advance: 41
+ flipped: 0
+ - serializedVersion: 2
+ index: 54
+ uv:
+ serializedVersion: 2
+ x: 0.41015625
+ y: 0.46484375
+ width: 0.080078125
+ height: 0.10546875
+ vert:
+ serializedVersion: 2
+ x: 0
+ y: 27
+ width: 41
+ height: -54
+ advance: 41
+ flipped: 0
+ - serializedVersion: 2
+ index: 55
+ uv:
+ serializedVersion: 2
+ x: 0.4921875
+ y: 0.46484375
+ width: 0.080078125
+ height: 0.10546875
+ vert:
+ serializedVersion: 2
+ x: 0
+ y: 27
+ width: 41
+ height: -54
+ advance: 41
+ flipped: 0
+ - serializedVersion: 2
+ index: 56
+ uv:
+ serializedVersion: 2
+ x: 0.57421875
+ y: 0.46484375
+ width: 0.080078125
+ height: 0.10546875
+ vert:
+ serializedVersion: 2
+ x: 0
+ y: 27
+ width: 41
+ height: -54
+ advance: 41
+ flipped: 0
+ - serializedVersion: 2
+ index: 57
+ uv:
+ serializedVersion: 2
+ x: 0.24609375
+ y: 0.6796875
+ width: 0.080078125
+ height: 0.10546875
+ vert:
+ serializedVersion: 2
+ x: 0
+ y: 27
+ width: 41
+ height: -54
+ advance: 41
+ flipped: 0
+ - serializedVersion: 2
+ index: 100
+ uv:
+ serializedVersion: 2
+ x: 0.86328125
+ y: 0.47070312
+ width: 0.1015625
+ height: 0.099609375
+ vert:
+ serializedVersion: 2
+ x: 0
+ y: 25
+ width: 52
+ height: -50
+ advance: 52
+ flipped: 0
+ - serializedVersion: 2
+ index: 107
+ uv:
+ serializedVersion: 2
+ x: 0.328125
+ y: 0.6796875
+ width: 0.080078125
+ height: 0.10546875
+ vert:
+ serializedVersion: 2
+ x: 0
+ y: 27
+ width: 41
+ height: -54
+ advance: 41
+ flipped: 0
+ m_KerningValues: []
+ m_PixelScale: 0.1
+ m_FontData:
+ m_Ascent: 0
+ m_Descent: 0
+ m_DefaultStyle: 0
+ m_FontNames: []
+ m_FallbackFonts: []
+ m_FontRenderingMode: 0
+ m_UseLegacyBoundsCalculation: 0
+ m_ShouldRoundAdvanceValue: 1
diff --git a/Assets/arts/fonts/bmfonts/battle/battle_less.fontsettings.meta b/Assets/arts/fonts/bmfonts/battle/battle_less.fontsettings.meta
new file mode 100644
index 000000000..d0b0234ba
--- /dev/null
+++ b/Assets/arts/fonts/bmfonts/battle/battle_less.fontsettings.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: f34379b8d1a6c20408e96edcc575999b
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 12800000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/fonts/bmfonts/battle/battle_number.fnt b/Assets/arts/fonts/bmfonts/battle/battle_number.fnt
index 158b3638c..4f327c763 100644
--- a/Assets/arts/fonts/bmfonts/battle/battle_number.fnt
+++ b/Assets/arts/fonts/bmfonts/battle/battle_number.fnt
@@ -5,7 +5,7 @@
-
+
@@ -19,7 +19,7 @@
-
+
@@ -33,8 +33,8 @@
-
-
+
+
@@ -48,6 +48,22 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Assets/arts/fonts/bmfonts/battle/battle_number.png b/Assets/arts/fonts/bmfonts/battle/battle_number.png
index afac79e68..1413d7d56 100644
Binary files a/Assets/arts/fonts/bmfonts/battle/battle_number.png and b/Assets/arts/fonts/bmfonts/battle/battle_number.png differ
diff --git a/Assets/arts/fonts/bmfonts/battle/battle_shield.fontsettings b/Assets/arts/fonts/bmfonts/battle/battle_shield.fontsettings
index 4fddd213a..7b07a20cb 100644
--- a/Assets/arts/fonts/bmfonts/battle/battle_shield.fontsettings
+++ b/Assets/arts/fonts/bmfonts/battle/battle_shield.fontsettings
@@ -22,8 +22,8 @@ Font:
index: 43
uv:
serializedVersion: 2
- x: 0.41015625
- y: 0.6796875
+ x: 0
+ y: 0.89453125
width: 0.080078125
height: 0.10546875
vert:
@@ -38,8 +38,8 @@ Font:
index: 44
uv:
serializedVersion: 2
- x: 0.4921875
- y: 0.6796875
+ x: 0.08203125
+ y: 0.89453125
width: 0.080078125
height: 0.10546875
vert:
@@ -54,8 +54,8 @@ Font:
index: 45
uv:
serializedVersion: 2
- x: 0.57421875
- y: 0.6796875
+ x: 0.1640625
+ y: 0.89453125
width: 0.080078125
height: 0.10546875
vert:
@@ -70,8 +70,8 @@ Font:
index: 48
uv:
serializedVersion: 2
- x: 0.65625
- y: 0.6796875
+ x: 0.24609375
+ y: 0.89453125
width: 0.080078125
height: 0.10546875
vert:
@@ -86,8 +86,8 @@ Font:
index: 49
uv:
serializedVersion: 2
- x: 0.73828125
- y: 0.6796875
+ x: 0.328125
+ y: 0.89453125
width: 0.080078125
height: 0.10546875
vert:
@@ -102,8 +102,8 @@ Font:
index: 50
uv:
serializedVersion: 2
- x: 0.8203125
- y: 0.6796875
+ x: 0.41015625
+ y: 0.89453125
width: 0.080078125
height: 0.10546875
vert:
@@ -118,8 +118,8 @@ Font:
index: 51
uv:
serializedVersion: 2
- x: 0.90234375
- y: 0.6796875
+ x: 0.4921875
+ y: 0.89453125
width: 0.080078125
height: 0.10546875
vert:
@@ -134,8 +134,8 @@ Font:
index: 52
uv:
serializedVersion: 2
- x: 0
- y: 0.5722656
+ x: 0.57421875
+ y: 0.89453125
width: 0.080078125
height: 0.10546875
vert:
@@ -150,8 +150,8 @@ Font:
index: 53
uv:
serializedVersion: 2
- x: 0.08203125
- y: 0.5722656
+ x: 0.65625
+ y: 0.89453125
width: 0.080078125
height: 0.10546875
vert:
@@ -166,8 +166,8 @@ Font:
index: 54
uv:
serializedVersion: 2
- x: 0.1640625
- y: 0.5722656
+ x: 0.73828125
+ y: 0.89453125
width: 0.080078125
height: 0.10546875
vert:
@@ -182,8 +182,8 @@ Font:
index: 55
uv:
serializedVersion: 2
- x: 0.24609375
- y: 0.5722656
+ x: 0.8203125
+ y: 0.89453125
width: 0.080078125
height: 0.10546875
vert:
@@ -198,8 +198,8 @@ Font:
index: 56
uv:
serializedVersion: 2
- x: 0.328125
- y: 0.5722656
+ x: 0.90234375
+ y: 0.89453125
width: 0.080078125
height: 0.10546875
vert:
@@ -214,8 +214,8 @@ Font:
index: 57
uv:
serializedVersion: 2
- x: 0.41015625
- y: 0.5722656
+ x: 0
+ y: 0.7871094
width: 0.080078125
height: 0.10546875
vert:
diff --git a/Assets/arts/fonts/bmfonts/battle/battle_shield.fontsettings.meta b/Assets/arts/fonts/bmfonts/battle/battle_shield.fontsettings.meta
index d97209782..38cc3e805 100644
--- a/Assets/arts/fonts/bmfonts/battle/battle_shield.fontsettings.meta
+++ b/Assets/arts/fonts/bmfonts/battle/battle_shield.fontsettings.meta
@@ -1,8 +1,8 @@
fileFormatVersion: 2
-guid: ae8a1098e2a90fc46acc8745c540fa76
+guid: 1913b63d7811820468402a4c92ca16c2
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 12800000
userData:
- assetBundleName: arts/fonts/bmfonts/battle.ab
+ assetBundleName:
assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10001/m10001.atlas.txt b/Assets/arts/spines/characters/m10001/m10001.atlas.txt
index 94bc137ca..9c6d36cee 100644
--- a/Assets/arts/spines/characters/m10001/m10001.atlas.txt
+++ b/Assets/arts/spines/characters/m10001/m10001.atlas.txt
@@ -1,30 +1,44 @@
m10001.png
size:256,256
filter:Linear,Linear
-clothes
-bounds:2,119,65,47
+clothes_1
+bounds:2,32,83,37
+rotate:90
+clothes_2
+bounds:93,58,60,30
+rotate:90
+eye
+bounds:163,148,47,23
+rotate:90
+eye_xuanyun
+bounds:224,169,20,20
+gutou
+bounds:124,197,70,53
+hair
+bounds:196,191,59,54
+rotate:90
head
-bounds:2,168,125,69
+bounds:2,181,120,69
hit_yan3
-bounds:166,174,28,28
-leg
-bounds:2,78,40,39
-leg01
-bounds:69,127,39,39
-leg02
-bounds:2,11,26,20
+bounds:2,2,28,28
+kulou
+bounds:2,117,77,62
+offsets:0,1,77,63
+leg_L
+bounds:93,19,33,37
+leg_R
+bounds:188,152,34,37
+spine
+bounds:81,120,59,50
rotate:90
-leg1
-bounds:110,140,26,20
+upperarm_l
+bounds:133,148,28,47
+upperarm_r
+bounds:133,123,23,42
rotate:90
-upperarm
-bounds:204,207,33,30
-upperarm-01
-bounds:129,174,28,35
+weapon
+bounds:41,27,88,29
+rotate:90
+yingzi
+bounds:72,32,83,19
rotate:90
-upperarm1
-bounds:2,39,24,37
-upperarm1-01
-bounds:44,83,22,34
-weapon_1
-bounds:129,204,73,33
diff --git a/Assets/arts/spines/characters/m10001/m10001.png b/Assets/arts/spines/characters/m10001/m10001.png
index 4300552e8..76d85e965 100644
Binary files a/Assets/arts/spines/characters/m10001/m10001.png and b/Assets/arts/spines/characters/m10001/m10001.png differ
diff --git a/Assets/arts/spines/characters/m10001/m10001.skel.bytes b/Assets/arts/spines/characters/m10001/m10001.skel.bytes
index 372b2408c..9ab3cbf81 100644
Binary files a/Assets/arts/spines/characters/m10001/m10001.skel.bytes and b/Assets/arts/spines/characters/m10001/m10001.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10001/m10001skel.bytes b/Assets/arts/spines/characters/m10001/m10001skel.bytes
deleted file mode 100644
index 4714f22af..000000000
Binary files a/Assets/arts/spines/characters/m10001/m10001skel.bytes and /dev/null differ
diff --git a/Assets/arts/spines/characters/m10002/m10002.atlas.txt b/Assets/arts/spines/characters/m10002/m10002.atlas.txt
index 7e0b29758..3f822d538 100644
--- a/Assets/arts/spines/characters/m10002/m10002.atlas.txt
+++ b/Assets/arts/spines/characters/m10002/m10002.atlas.txt
@@ -1,30 +1,41 @@
m10002.png
size:256,256
filter:Linear,Linear
-clothes
-bounds:2,119,65,47
+clothes_1
+bounds:2,35,84,37
+rotate:90
+clothes_2
+bounds:86,61,61,30
+rotate:90
+eye
+bounds:2,10,47,23
+eye_xuanyun
+bounds:218,134,20,20
+gutou
+bounds:123,201,70,53
+hair
+bounds:195,200,59,54
head
-bounds:2,168,125,69
+bounds:2,185,119,69
hit_yan3
-bounds:166,174,28,28
-leg
-bounds:2,78,40,39
-leg01
-bounds:69,127,39,39
-leg02
-bounds:2,11,26,20
+bounds:188,131,28,28
+kulou
+bounds:2,121,77,62
+offsets:0,1,77,63
+leg_L
+bounds:154,113,32,37
+leg_R
+bounds:184,161,35,37
+spine
+bounds:81,124,59,50
rotate:90
-leg1
-bounds:110,140,26,20
+upperarm_l
+bounds:154,152,28,47
+upperarm_r
+bounds:221,156,22,42
+weapon
+bounds:41,52,67,43
rotate:90
-upperarm
-bounds:204,207,33,30
-upperarm-01
-bounds:129,174,28,35
+yingzi
+bounds:133,116,83,19
rotate:90
-upperarm1
-bounds:2,39,24,37
-upperarm1-01
-bounds:44,84,22,33
-weapon_1
-bounds:129,204,73,33
diff --git a/Assets/arts/spines/characters/m10002/m10002.png b/Assets/arts/spines/characters/m10002/m10002.png
index 8843573d0..5ee1670c5 100644
Binary files a/Assets/arts/spines/characters/m10002/m10002.png and b/Assets/arts/spines/characters/m10002/m10002.png differ
diff --git a/Assets/arts/spines/characters/m10002/m10002.skel.bytes b/Assets/arts/spines/characters/m10002/m10002.skel.bytes
index 0f7487a50..78447ffb6 100644
Binary files a/Assets/arts/spines/characters/m10002/m10002.skel.bytes and b/Assets/arts/spines/characters/m10002/m10002.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10003/m10003.atlas.txt b/Assets/arts/spines/characters/m10003/m10003.atlas.txt
index 8b88b212c..84987fb7f 100644
--- a/Assets/arts/spines/characters/m10003/m10003.atlas.txt
+++ b/Assets/arts/spines/characters/m10003/m10003.atlas.txt
@@ -1,30 +1,43 @@
m10003.png
size:256,256
filter:Linear,Linear
-clothes
-bounds:2,119,65,47
+clothes_1
+bounds:2,35,84,37
+rotate:90
+clothes_2
+bounds:92,62,61,30
+rotate:90
+eye
+bounds:169,152,47,23
+rotate:90
+eye_xuanyun
+bounds:92,40,20,20
+gutou
+bounds:123,201,70,53
+hair
+bounds:195,200,58,54
head
-bounds:2,168,125,69
+bounds:2,185,119,69
hit_yan3
-bounds:166,174,28,28
-leg
-bounds:2,78,40,39
-leg01
-bounds:69,127,40,39
-leg02
-bounds:2,11,26,20
+bounds:51,2,28,28
+kulou
+bounds:2,121,77,62
+offsets:0,1,77,63
+leg_L
+bounds:133,162,34,37
+leg_R
+bounds:133,123,34,37
+spine
+bounds:81,125,58,50
rotate:90
-leg1
-bounds:111,140,26,20
+upperarm_l
+bounds:2,2,28,47
rotate:90
-upperarm
-bounds:204,207,33,30
-upperarm-01
-bounds:129,174,28,35
+upperarm_r
+bounds:194,156,23,42
+weapon
+bounds:41,32,87,28
+rotate:90
+yingzi
+bounds:71,36,83,19
rotate:90
-upperarm1
-bounds:2,39,24,37
-upperarm1-01
-bounds:44,83,22,34
-weapon_1
-bounds:129,204,73,33
diff --git a/Assets/arts/spines/characters/m10003/m10003.png b/Assets/arts/spines/characters/m10003/m10003.png
index 0bb793cb0..7bfd9c334 100644
Binary files a/Assets/arts/spines/characters/m10003/m10003.png and b/Assets/arts/spines/characters/m10003/m10003.png differ
diff --git a/Assets/arts/spines/characters/m10003/m10003.skel.bytes b/Assets/arts/spines/characters/m10003/m10003.skel.bytes
index 95d10f217..8db685272 100644
Binary files a/Assets/arts/spines/characters/m10003/m10003.skel.bytes and b/Assets/arts/spines/characters/m10003/m10003.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10003/m10003_skeletondata.asset.meta b/Assets/arts/spines/characters/m10003/m10003_skeletondata.asset.meta
index e534d0459..5619fa316 100644
--- a/Assets/arts/spines/characters/m10003/m10003_skeletondata.asset.meta
+++ b/Assets/arts/spines/characters/m10003/m10003_skeletondata.asset.meta
@@ -4,5 +4,5 @@ NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
- assetBundleName: arts/spines/characters/m10003.ab
+ assetBundleName:
assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10004/m10004.atlas.txt b/Assets/arts/spines/characters/m10004/m10004.atlas.txt
index 3b3b24c99..443b8c372 100644
--- a/Assets/arts/spines/characters/m10004/m10004.atlas.txt
+++ b/Assets/arts/spines/characters/m10004/m10004.atlas.txt
@@ -1,28 +1,41 @@
m10004.png
size:256,256
filter:Linear,Linear
-clothes
-bounds:2,124,65,47
-head
-bounds:2,173,125,69
-hit_yan3
-bounds:165,189,28,28
-leg
-bounds:2,83,40,39
-leg01
-bounds:69,132,40,39
-leg02
-bounds:2,24,26,20
-leg1
-bounds:195,197,25,20
-upperarm
-bounds:129,187,34,30
-upperarm-01
-bounds:2,46,28,35
-upperarm1
-bounds:205,219,23,37
+clothes_1
+bounds:2,34,85,37
+rotate:90
+clothes_2
+bounds:2,2,61,30
+eye
+bounds:62,71,48,23
+rotate:90
+eye_xuanyun
+bounds:62,49,20,20
+gutou
+bounds:123,201,70,53
+hair
+bounds:195,200,58,54
+head
+bounds:2,185,119,69
+hit_yan3
+bounds:211,170,28,28
+kulou
+bounds:2,121,77,62
+offsets:0,1,77,63
+leg_L
+bounds:158,113,33,37
+leg_R
+bounds:87,86,34,37
+spine
+bounds:81,125,58,50
+rotate:90
+upperarm_l
+bounds:158,152,27,47
+upperarm_r
+bounds:187,156,22,42
+weapon
+bounds:133,112,87,23
+rotate:90
+yingzi
+bounds:41,36,83,19
rotate:90
-upperarm1-01
-bounds:44,88,21,34
-weapon_1
-bounds:129,219,74,23
diff --git a/Assets/arts/spines/characters/m10004/m10004.png b/Assets/arts/spines/characters/m10004/m10004.png
index c3b535ea5..e17838ed7 100644
Binary files a/Assets/arts/spines/characters/m10004/m10004.png and b/Assets/arts/spines/characters/m10004/m10004.png differ
diff --git a/Assets/arts/spines/characters/m10004/m10004.skel.bytes b/Assets/arts/spines/characters/m10004/m10004.skel.bytes
index 22aa3b6c8..06732e2fd 100644
Binary files a/Assets/arts/spines/characters/m10004/m10004.skel.bytes and b/Assets/arts/spines/characters/m10004/m10004.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10005/m10005.atlas.txt b/Assets/arts/spines/characters/m10005/m10005.atlas.txt
index 9356788e1..d2f825db4 100644
--- a/Assets/arts/spines/characters/m10005/m10005.atlas.txt
+++ b/Assets/arts/spines/characters/m10005/m10005.atlas.txt
@@ -1,30 +1,102 @@
m10005.png
-size:256,256
+size:512,512
filter:Linear,Linear
-clothes
-bounds:2,127,65,47
-head
-bounds:2,176,125,69
+FX/FX1
+bounds:95,359,25,37
+offsets:21,31,68,100
+rotate:90
+FX/FX10
+bounds:363,482,28,40
+offsets:20,30,68,100
+rotate:90
+FX/FX11
+bounds:405,482,28,40
+offsets:20,30,68,100
+rotate:90
+FX/FX12
+bounds:447,482,28,40
+offsets:20,30,68,100
+rotate:90
+FX/FX13
+bounds:95,386,26,40
+offsets:21,30,68,100
+FX/FX14
+bounds:2,2,26,36
+offsets:21,30,68,96
+FX/FX15
+bounds:137,319,26,38
+offsets:21,29,68,96
+FX/FX16
+bounds:30,2,26,36
+offsets:21,30,68,96
+FX/FX2
+bounds:105,250,25,38
+offsets:22,31,68,100
+FX/FX3
+bounds:207,447,25,40
+offsets:22,30,68,100
+rotate:90
+FX/FX4
+bounds:81,317,26,40
+offsets:21,30,68,100
+FX/FX5
+bounds:109,317,26,40
+offsets:21,30,68,100
+FX/FX6
+bounds:81,290,25,40
+offsets:22,30,68,100
+rotate:90
+FX/FX7
+bounds:77,248,26,40
+offsets:21,30,68,100
+FX/FX8
+bounds:123,396,28,40
+offsets:20,30,68,100
+FX/FX9
+bounds:153,396,28,40
+offsets:20,30,68,100
+clothes_1
+bounds:207,474,66,36
+clothes_3
+bounds:2,169,66,60
+clothes_4
+bounds:2,359,91,67
+ear_l
+bounds:275,476,34,40
+rotate:90
+ear_r
+bounds:134,359,30,35
+eye_xuanyun
+bounds:57,115,20,20
+gutou
+bounds:2,97,70,53
+rotate:90
+hand_r
+bounds:489,488,21,22
+head_1
+bounds:2,428,107,82
+head_2
+bounds:2,231,73,62
+head_3
+bounds:111,459,94,51
hit_yan3
-bounds:2,24,28,28
-leg
-bounds:2,86,40,39
-leg01
-bounds:69,135,39,39
-leg02
-bounds:44,99,26,20
+bounds:249,444,28,28
+kulou
+bounds:2,295,77,62
+offsets:0,1,77,63
+leg_l
+bounds:165,323,30,34
+leg_r
+bounds:279,443,31,34
rotate:90
-leg1
-bounds:2,2,26,20
-upperarm
-bounds:2,54,33,30
-upperarm-01
-bounds:129,185,28,35
-upperarm1
-bounds:159,196,24,37
+nose
+bounds:57,137,22,30
+upperarm_l
+bounds:317,484,26,44
rotate:90
-upperarm1-01
-bounds:205,223,22,34
-rotate:90
-weapon_1
-bounds:129,222,74,23
+upperarm_r
+bounds:166,359,29,35
+weapon
+bounds:2,40,45,55
+yingzi
+bounds:111,438,83,19
diff --git a/Assets/arts/spines/characters/m10005/m10005.png b/Assets/arts/spines/characters/m10005/m10005.png
index 7c1efef51..a56eade50 100644
Binary files a/Assets/arts/spines/characters/m10005/m10005.png and b/Assets/arts/spines/characters/m10005/m10005.png differ
diff --git a/Assets/arts/spines/characters/m10005/m10005.skel.bytes b/Assets/arts/spines/characters/m10005/m10005.skel.bytes
index a8d1472a1..ededcdcd4 100644
Binary files a/Assets/arts/spines/characters/m10005/m10005.skel.bytes and b/Assets/arts/spines/characters/m10005/m10005.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10006/m10006.atlas.txt b/Assets/arts/spines/characters/m10006/m10006.atlas.txt
index 065113deb..eb9a5ecfb 100644
--- a/Assets/arts/spines/characters/m10006/m10006.atlas.txt
+++ b/Assets/arts/spines/characters/m10006/m10006.atlas.txt
@@ -1,91 +1,103 @@
m10006.png
-size:256,256
+size:512,512
filter:Linear,Linear
FX/FX1
-bounds:179,189,25,37
+bounds:94,359,25,37
offsets:21,31,68,100
rotate:90
FX/FX10
-bounds:2,9,28,40
+bounds:321,482,28,40
offsets:20,30,68,100
rotate:90
FX/FX11
-bounds:142,148,28,40
+bounds:363,482,28,40
offsets:20,30,68,100
+rotate:90
FX/FX12
-bounds:172,159,28,40
+bounds:405,482,28,40
offsets:20,30,68,100
rotate:90
FX/FX13
-bounds:129,70,26,40
+bounds:94,386,26,40
offsets:21,30,68,100
FX/FX14
-bounds:218,183,26,36
+bounds:40,2,26,36
offsets:21,30,68,96
-rotate:90
FX/FX15
-bounds:157,48,26,38
+bounds:81,294,26,38
offsets:21,29,68,96
rotate:90
FX/FX16
-bounds:129,32,26,36
+bounds:248,436,26,36
offsets:21,30,68,96
FX/FX2
-bounds:157,21,25,38
+bounds:145,333,25,38
offsets:22,31,68,100
rotate:90
FX/FX3
-bounds:172,132,25,40
+bounds:180,396,25,40
offsets:22,30,68,100
-rotate:90
FX/FX4
-bounds:172,104,26,40
+bounds:152,396,26,40
offsets:21,30,68,100
-rotate:90
FX/FX5
-bounds:214,95,26,40
+bounds:206,446,26,40
offsets:21,30,68,100
rotate:90
FX/FX6
-bounds:44,16,25,40
+bounds:77,252,25,40
offsets:22,30,68,100
FX/FX7
-bounds:157,76,26,40
+bounds:207,404,26,40
offsets:21,30,68,100
-rotate:90
FX/FX8
-bounds:214,153,28,40
+bounds:447,482,28,40
offsets:20,30,68,100
rotate:90
FX/FX9
-bounds:214,123,28,40
+bounds:122,396,28,40
offsets:20,30,68,100
+clothes_1
+bounds:206,474,67,36
+clothes_3
+bounds:2,169,66,60
+clothes_4
+bounds:2,359,90,67
+ear_l
+bounds:2,2,36,36
+ear_r
+bounds:81,322,31,35
+eye_xuanyun
+bounds:70,206,20,20
+gutou
+bounds:2,97,70,53
rotate:90
-clothes
-bounds:130,216,86,38
-clothes01
-bounds:2,118,72,65
-hair
-bounds:117,112,28,22
-hair1
-bounds:76,112,71,39
-rotate:90
-hand
-bounds:147,121,23,25
-head
-bounds:2,185,126,69
+hand_r
+bounds:489,488,20,22
+head_1
+bounds:2,428,107,82
+head_2
+bounds:2,231,73,62
+head_3
+bounds:111,459,93,51
hit_yan3
-bounds:71,2,28,28
-leg
-bounds:117,136,23,47
-leg2
-bounds:130,190,24,47
+bounds:121,292,28,28
+kulou
+bounds:2,295,77,62
+offsets:0,1,77,63
+leg_l
+bounds:166,360,30,34
+leg_r
+bounds:133,360,31,34
+nose
+bounds:77,228,22,30
rotate:90
-upperarm
-bounds:43,58,31,58
-upperarm02
-bounds:218,211,36,43
-weapon_1
-bounds:2,39,39,77
-xianglian
-bounds:76,59,51,51
+upperarm_l
+bounds:275,485,25,44
+rotate:90
+upperarm_r
+bounds:114,322,29,35
+weapon
+bounds:2,40,44,55
+yingzi
+bounds:111,438,83,19
diff --git a/Assets/arts/spines/characters/m10006/m10006.png b/Assets/arts/spines/characters/m10006/m10006.png
index 6dcf5cb4b..2bd3382d7 100644
Binary files a/Assets/arts/spines/characters/m10006/m10006.png and b/Assets/arts/spines/characters/m10006/m10006.png differ
diff --git a/Assets/arts/spines/characters/m10006/m10006.skel.bytes b/Assets/arts/spines/characters/m10006/m10006.skel.bytes
index 3d6e75e42..f8279f098 100644
Binary files a/Assets/arts/spines/characters/m10006/m10006.skel.bytes and b/Assets/arts/spines/characters/m10006/m10006.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10007/m10007.atlas.txt b/Assets/arts/spines/characters/m10007/m10007.atlas.txt
index 89d636fa1..0c462c171 100644
--- a/Assets/arts/spines/characters/m10007/m10007.atlas.txt
+++ b/Assets/arts/spines/characters/m10007/m10007.atlas.txt
@@ -1,91 +1,102 @@
m10007.png
-size:256,256
+size:512,512
filter:Linear,Linear
FX/FX1
-bounds:217,173,25,37
+bounds:95,359,25,37
offsets:21,31,68,100
rotate:90
FX/FX10
-bounds:175,186,28,40
+bounds:362,482,28,40
offsets:20,30,68,100
rotate:90
FX/FX11
-bounds:2,8,28,40
+bounds:404,482,28,40
offsets:20,30,68,100
rotate:90
FX/FX12
-bounds:175,156,28,40
+bounds:446,482,28,40
offsets:20,30,68,100
rotate:90
FX/FX13
-bounds:167,128,26,40
+bounds:95,386,26,40
offsets:21,30,68,100
-rotate:90
FX/FX14
-bounds:218,228,26,36
+bounds:2,2,26,36
offsets:21,30,68,96
-rotate:90
FX/FX15
-bounds:44,18,26,38
+bounds:137,319,26,38
offsets:21,29,68,96
FX/FX16
-bounds:218,200,26,36
+bounds:30,2,26,36
offsets:21,30,68,96
-rotate:90
FX/FX2
-bounds:229,91,25,38
+bounds:105,250,25,38
offsets:22,31,68,100
FX/FX3
-bounds:159,43,25,40
+bounds:208,447,25,40
offsets:22,30,68,100
rotate:90
FX/FX4
-bounds:159,70,26,40
+bounds:81,317,26,40
offsets:21,30,68,100
-rotate:90
FX/FX5
-bounds:201,86,26,40
+bounds:109,317,26,40
offsets:21,30,68,100
FX/FX6
-bounds:229,131,25,40
+bounds:81,290,25,40
offsets:22,30,68,100
+rotate:90
FX/FX7
-bounds:201,44,26,40
+bounds:77,248,26,40
offsets:21,30,68,100
FX/FX8
-bounds:129,88,28,40
+bounds:123,396,28,40
offsets:20,30,68,100
FX/FX9
-bounds:159,98,28,40
+bounds:153,396,28,40
offsets:20,30,68,100
+clothes_1
+bounds:208,474,66,36
+clothes_3
+bounds:2,169,66,60
+clothes_4
+bounds:2,359,91,67
+ear_l
+bounds:276,473,37,38
rotate:90
-clothes
-bounds:130,216,86,38
-clothes01
-bounds:2,118,72,65
-hair
-bounds:229,37,27,22
+ear_r
+bounds:217,413,32,31
rotate:90
-hair1
-bounds:76,112,71,39
+eye_xuanyun
+bounds:272,451,20,20
+gutou
+bounds:2,97,70,53
rotate:90
-hand
-bounds:229,66,23,25
-rotate:90
-head
-bounds:2,185,126,69
+hand_r
+bounds:250,450,20,22
+head_1
+bounds:2,428,108,82
+head_2
+bounds:2,231,73,62
+head_3
+bounds:112,459,94,51
hit_yan3
-bounds:129,58,28,28
-leg
-bounds:143,130,22,47
-leg2
-bounds:117,130,24,47
-upperarm
-bounds:43,58,31,58
-upperarm02
-bounds:130,179,35,43
+bounds:250,420,28,28
+kulou
+bounds:2,295,77,62
+offsets:0,1,77,63
+leg_l
+bounds:166,360,30,34
+leg_r
+bounds:183,402,32,34
+nose
+bounds:488,480,22,30
+upperarm_l
+bounds:316,484,26,44
rotate:90
-weapon_1
-bounds:2,38,39,78
-xianglian
-bounds:76,59,51,51
+upperarm_r
+bounds:134,359,30,35
+weapon
+bounds:2,40,44,55
+yingzi
+bounds:112,438,83,19
diff --git a/Assets/arts/spines/characters/m10007/m10007.png b/Assets/arts/spines/characters/m10007/m10007.png
index 9be4b8ec0..468d1a118 100644
Binary files a/Assets/arts/spines/characters/m10007/m10007.png and b/Assets/arts/spines/characters/m10007/m10007.png differ
diff --git a/Assets/arts/spines/characters/m10007/m10007.skel.bytes b/Assets/arts/spines/characters/m10007/m10007.skel.bytes
index a0eb6533f..87eeb6cf0 100644
Binary files a/Assets/arts/spines/characters/m10007/m10007.skel.bytes and b/Assets/arts/spines/characters/m10007/m10007.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10008/m10008.atlas.txt b/Assets/arts/spines/characters/m10008/m10008.atlas.txt
index 46b6f7a9d..2744b9404 100644
--- a/Assets/arts/spines/characters/m10008/m10008.atlas.txt
+++ b/Assets/arts/spines/characters/m10008/m10008.atlas.txt
@@ -1,32 +1,103 @@
m10008.png
-size:256,256
+size:512,512
filter:Linear,Linear
-clothes
-bounds:130,217,86,37
-clothes01
-bounds:2,118,72,65
-hair
-bounds:209,187,28,22
-hair1
-bounds:76,112,71,39
+FX/FX1
+bounds:95,359,25,37
+offsets:21,31,68,100
rotate:90
-hand
-bounds:117,157,23,26
-head
-bounds:2,185,126,69
+FX/FX10
+bounds:321,482,28,40
+offsets:20,30,68,100
+rotate:90
+FX/FX11
+bounds:363,482,28,40
+offsets:20,30,68,100
+rotate:90
+FX/FX12
+bounds:405,482,28,40
+offsets:20,30,68,100
+rotate:90
+FX/FX13
+bounds:95,386,26,40
+offsets:21,30,68,100
+FX/FX14
+bounds:41,2,26,36
+offsets:21,30,68,96
+FX/FX15
+bounds:108,319,26,38
+offsets:21,29,68,96
+FX/FX16
+bounds:249,436,26,36
+offsets:21,30,68,96
+FX/FX2
+bounds:136,319,25,38
+offsets:22,31,68,100
+FX/FX3
+bounds:207,447,25,40
+offsets:22,30,68,100
+rotate:90
+FX/FX4
+bounds:153,396,26,40
+offsets:21,30,68,100
+FX/FX5
+bounds:181,396,26,40
+offsets:21,30,68,100
+FX/FX6
+bounds:81,317,25,40
+offsets:22,30,68,100
+FX/FX7
+bounds:209,405,26,40
+offsets:21,30,68,100
+FX/FX8
+bounds:447,482,28,40
+offsets:20,30,68,100
+rotate:90
+FX/FX9
+bounds:123,396,28,40
+offsets:20,30,68,100
+clothes_1
+bounds:207,474,66,36
+clothes_3
+bounds:2,169,66,60
+clothes_4
+bounds:2,359,91,67
+ear_l
+bounds:2,2,36,37
+rotate:90
+ear_r
+bounds:165,361,31,33
+eye_xuanyun
+bounds:81,295,20,20
+gutou
+bounds:2,97,70,53
+rotate:90
+hand_r
+bounds:489,488,21,22
+head_1
+bounds:2,428,107,82
+head_2
+bounds:2,231,73,62
+head_3
+bounds:111,459,94,51
hit_yan3
-bounds:179,187,28,28
-leg
-bounds:2,14,23,47
+bounds:345,452,28,28
+kulou
+bounds:2,295,77,62
+offsets:0,1,77,63
+leg_l
+bounds:277,448,30,34
+leg_r
+bounds:309,450,30,34
rotate:90
-leg2
-bounds:130,191,24,47
+nose
+bounds:375,458,22,30
rotate:90
-upperarm
-bounds:43,58,31,58
-upperarm02
-bounds:218,211,36,43
-weapon_1
-bounds:2,39,39,77
-xianglian
-bounds:76,59,51,51
+upperarm_l
+bounds:275,484,26,44
+rotate:90
+upperarm_r
+bounds:134,359,29,35
+weapon
+bounds:2,40,45,55
+yingzi
+bounds:111,438,83,19
diff --git a/Assets/arts/spines/characters/m10008/m10008.png b/Assets/arts/spines/characters/m10008/m10008.png
index 0edbadaa4..bed350b05 100644
Binary files a/Assets/arts/spines/characters/m10008/m10008.png and b/Assets/arts/spines/characters/m10008/m10008.png differ
diff --git a/Assets/arts/spines/characters/m10008/m10008.skel.bytes b/Assets/arts/spines/characters/m10008/m10008.skel.bytes
index e367a7fe1..bad5b6b28 100644
Binary files a/Assets/arts/spines/characters/m10008/m10008.skel.bytes and b/Assets/arts/spines/characters/m10008/m10008.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10009/m10009.atlas.txt b/Assets/arts/spines/characters/m10009/m10009.atlas.txt
index f27a5dbda..df7503fc7 100644
--- a/Assets/arts/spines/characters/m10009/m10009.atlas.txt
+++ b/Assets/arts/spines/characters/m10009/m10009.atlas.txt
@@ -2,31 +2,49 @@ m10009.png
size:256,256
filter:Linear,Linear
clothes
-bounds:130,216,86,38
-clothes01
-bounds:2,117,72,66
-hair
-bounds:209,187,28,22
-hair1
-bounds:76,112,71,39
+bounds:2,7,45,33
rotate:90
-hand
-bounds:117,158,23,25
+eye_xuanyun
+bounds:71,9,20,20
+gutou
+bounds:40,97,70,53
+rotate:90
+hand_l
+bounds:101,17,30,34
+offsets:0,0,31,34
+rotate:90
+hand_r
+bounds:153,135,31,34
+offsets:0,1,31,35
head
-bounds:2,185,126,69
-hit_yan3
-bounds:179,186,28,28
-leg
-bounds:2,12,23,47
+bounds:2,169,98,85
+hit_yan1
+bounds:139,114,16,18
+jianjia
+bounds:95,97,42,35
+kulou
+bounds:170,192,77,62
+offsets:0,1,77,63
+leg_l
+bounds:101,49,42,46
+leg_r
+bounds:102,134,42,49
rotate:90
-leg2
-bounds:130,190,24,47
+spine
+bounds:40,31,59,64
+upperarm_l_01
+bounds:186,139,29,30
+upperarm_l_02
+bounds:217,140,18,29
+upperarm_r_01
+bounds:37,3,26,32
rotate:90
-upperarm
-bounds:43,57,30,58
-upperarm02
-bounds:218,211,36,43
+upperarm_r_02
+bounds:237,139,17,30
weapon_1
-bounds:2,37,39,78
-xianglian
-bounds:75,59,51,51
+bounds:2,54,113,36
+rotate:90
+weapon_2
+bounds:102,178,66,76
+yingzi
+bounds:170,171,83,19
diff --git a/Assets/arts/spines/characters/m10009/m10009.png b/Assets/arts/spines/characters/m10009/m10009.png
index 3c7c8fc9c..d0f797ff1 100644
Binary files a/Assets/arts/spines/characters/m10009/m10009.png and b/Assets/arts/spines/characters/m10009/m10009.png differ
diff --git a/Assets/arts/spines/characters/m10009/m10009.skel.bytes b/Assets/arts/spines/characters/m10009/m10009.skel.bytes
index a5e6c9186..e4df8382b 100644
Binary files a/Assets/arts/spines/characters/m10009/m10009.skel.bytes and b/Assets/arts/spines/characters/m10009/m10009.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10010/m10010.atlas.txt b/Assets/arts/spines/characters/m10010/m10010.atlas.txt
index 0b7a20e33..42d91627b 100644
--- a/Assets/arts/spines/characters/m10010/m10010.atlas.txt
+++ b/Assets/arts/spines/characters/m10010/m10010.atlas.txt
@@ -1,32 +1,43 @@
m10010.png
size:256,256
filter:Linear,Linear
+clothes
+bounds:81,55,45,33
+eye_xuanyun
+bounds:81,96,20,20
gutou
-bounds:2,5,70,53
-hand
-bounds:143,87,34,35
-rotate:90
-hand1
-bounds:105,92,34,36
+bounds:103,150,70,53
+hand_l
+bounds:220,172,31,34
rotate:90
+hand_r
+bounds:128,53,37,35
head
-bounds:95,156,105,98
-hit_yan3
-bounds:183,126,28,28
-legL
-bounds:143,123,38,31
-legL1
-bounds:228,216,26,38
-legr
-bounds:72,88,37,31
-rotate:90
-legr2
-bounds:202,167,25,38
+bounds:2,118,99,85
+hit_yan1
+bounds:87,35,16,18
+kulou
+bounds:2,54,77,62
+offsets:0,1,77,63
+leg_l
+bounds:175,157,43,46
+leg_r
+bounds:198,205,42,49
spine
-bounds:2,60,68,65
-upperarm
-bounds:202,207,24,47
-upperarm1
-bounds:95,128,46,26
-weapon_1
-bounds:2,127,91,127
+bounds:103,90,58,64
+rotate:90
+upperarm_l_01
+bounds:2,2,29,30
+rotate:90
+upperarm_l_02
+bounds:34,2,19,29
+upperarm_r_01
+bounds:55,5,26,32
+rotate:90
+upperarm_r_02
+bounds:220,147,23,26
+rotate:90
+weapon
+bounds:2,205,194,49
+yingzi
+bounds:2,33,83,19
diff --git a/Assets/arts/spines/characters/m10010/m10010.png b/Assets/arts/spines/characters/m10010/m10010.png
index 0468fe730..59c362e4d 100644
Binary files a/Assets/arts/spines/characters/m10010/m10010.png and b/Assets/arts/spines/characters/m10010/m10010.png differ
diff --git a/Assets/arts/spines/characters/m10010/m10010.skel.bytes b/Assets/arts/spines/characters/m10010/m10010.skel.bytes
index 7cb2d658e..f96e3ee0d 100644
Binary files a/Assets/arts/spines/characters/m10010/m10010.skel.bytes and b/Assets/arts/spines/characters/m10010/m10010.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10012/m10012.atlas.txt b/Assets/arts/spines/characters/m10012/m10012.atlas.txt
index 289d26596..8bde3de83 100644
--- a/Assets/arts/spines/characters/m10012/m10012.atlas.txt
+++ b/Assets/arts/spines/characters/m10012/m10012.atlas.txt
@@ -2,30 +2,46 @@ m10012.png
size:512,512
filter:Linear,Linear
canying
-bounds:2,247,113,181
-offsets:0,2,113,185
-hand
-bounds:196,229,53,60
+bounds:2,156,113,148
+offsets:3,5,119,156
+clothes
+bounds:88,56,98,58
+rotate:90
+eye
+bounds:471,447,35,59
+offsets:0,0,36,59
+eye_xuanyun
+bounds:143,308,22,22
+gutou
+bounds:117,234,70,53
+rotate:90
+hair
+bounds:345,435,124,71
+hand_l
+bounds:331,358,90,75
+hand_r
+bounds:400,305,49,60
+rotate:90
head
-bounds:299,402,133,106
+bounds:143,332,118,107
hit_yan3
-bounds:2,2,28,28
-legL
-bounds:434,431,69,77
-legL1
-bounds:117,221,68,77
+bounds:462,326,28,28
+kulou
+bounds:423,356,77,62
+offsets:0,1,77,63
rotate:90
-legR
-bounds:114,111,50,56
+leg_l
+bounds:117,164,47,68
+leg_r
+bounds:331,308,48,67
rotate:90
-legR1
-bounds:114,163,51,56
spine
-bounds:117,291,151,137
-upperarm
-bounds:2,107,110,138
-upperarmR
-bounds:2,32,73,116
-rotate:90
-weapon_1
-bounds:2,430,295,78
+bounds:2,306,139,133
+upperarm_l
+bounds:2,38,84,116
+upperarm_r
+bounds:263,333,66,106
+weapon
+bounds:2,441,341,65
+yingzi
+bounds:2,17,83,19
diff --git a/Assets/arts/spines/characters/m10012/m10012.png b/Assets/arts/spines/characters/m10012/m10012.png
index f4d971a45..b7916ce6e 100644
Binary files a/Assets/arts/spines/characters/m10012/m10012.png and b/Assets/arts/spines/characters/m10012/m10012.png differ
diff --git a/Assets/arts/spines/characters/m10012/m10012.skel.bytes b/Assets/arts/spines/characters/m10012/m10012.skel.bytes
index d46f38c5a..7864bc320 100644
Binary files a/Assets/arts/spines/characters/m10012/m10012.skel.bytes and b/Assets/arts/spines/characters/m10012/m10012.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10013/m10013.atlas.txt b/Assets/arts/spines/characters/m10013/m10013.atlas.txt
index 631b39d53..fa9a77b43 100644
--- a/Assets/arts/spines/characters/m10013/m10013.atlas.txt
+++ b/Assets/arts/spines/characters/m10013/m10013.atlas.txt
@@ -2,30 +2,44 @@ m10013.png
size:512,512
filter:Linear,Linear
canying
-bounds:2,247,113,181
-offsets:0,2,113,185
-hand
-bounds:196,229,53,60
+bounds:2,156,113,148
+offsets:3,5,119,156
+clothes
+bounds:88,57,97,58
+rotate:90
+eye
+bounds:471,447,35,59
+offsets:0,0,36,59
+eye_xuanyun
+bounds:331,334,22,22
+gutou
+bounds:142,277,70,53
+hair
+bounds:345,435,124,71
+hand_l
+bounds:331,358,90,75
+hand_r
+bounds:214,270,48,60
head
-bounds:299,402,133,106
+bounds:142,332,118,107
hit_yan3
-bounds:2,2,28,28
-legL
-bounds:117,221,68,77
+bounds:117,178,28,28
+kulou
+bounds:423,356,77,62
+offsets:0,1,77,63
rotate:90
-legL1
-bounds:434,431,69,77
-legR
-bounds:114,111,50,56
+leg_l
+bounds:264,284,47,68
rotate:90
-legR1
-bounds:114,163,51,56
+leg_r
+bounds:117,208,47,67
spine
-bounds:117,291,151,137
-upperarm
-bounds:2,107,110,138
-upperarmR
-bounds:2,32,73,116
-rotate:90
-weapon_1
-bounds:2,430,295,78
+bounds:2,306,138,133
+upperarm_l
+bounds:2,38,84,116
+upperarm_r
+bounds:262,333,67,106
+weapon
+bounds:2,441,341,65
+yingzi
+bounds:2,17,83,19
diff --git a/Assets/arts/spines/characters/m10013/m10013.png b/Assets/arts/spines/characters/m10013/m10013.png
index 7714c716c..05ea57de4 100644
Binary files a/Assets/arts/spines/characters/m10013/m10013.png and b/Assets/arts/spines/characters/m10013/m10013.png differ
diff --git a/Assets/arts/spines/characters/m10013/m10013.skel.bytes b/Assets/arts/spines/characters/m10013/m10013.skel.bytes
index 2e44c7914..eb7367601 100644
Binary files a/Assets/arts/spines/characters/m10013/m10013.skel.bytes and b/Assets/arts/spines/characters/m10013/m10013.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10014/m10014.atlas.txt b/Assets/arts/spines/characters/m10014/m10014.atlas.txt
index 897348e3e..27148c693 100644
--- a/Assets/arts/spines/characters/m10014/m10014.atlas.txt
+++ b/Assets/arts/spines/characters/m10014/m10014.atlas.txt
@@ -2,30 +2,44 @@ m10014.png
size:512,512
filter:Linear,Linear
canying
-bounds:2,248,113,181
-offsets:0,2,113,185
-hand
-bounds:196,230,53,60
+bounds:2,160,113,148
+offsets:3,5,119,156
+clothes
+bounds:87,60,98,58
+rotate:90
+eye
+bounds:471,451,35,59
+offsets:0,0,36,59
+eye_xuanyun
+bounds:488,427,22,22
+gutou
+bounds:87,5,70,53
+hair
+bounds:345,439,124,71
+hand_l
+bounds:331,362,91,75
+hand_r
+bounds:331,312,48,60
+rotate:90
head
-bounds:299,403,133,106
+bounds:143,336,118,107
hit_yan3
-bounds:2,2,28,28
-legL
-bounds:434,432,68,77
-legL1
-bounds:117,222,68,77
+bounds:393,332,28,28
+kulou
+bounds:424,360,77,62
+offsets:0,1,77,63
rotate:90
-legR
-bounds:114,112,50,56
-rotate:90
-legR1
-bounds:114,164,51,56
+leg_l
+bounds:117,240,46,68
+leg_r
+bounds:117,171,48,67
spine
-bounds:117,292,151,137
-upperarm
-bounds:2,107,110,139
-upperarmR
-bounds:2,32,73,116
-rotate:90
-weapon_1
-bounds:2,431,295,78
+bounds:2,310,139,133
+upperarm_l
+bounds:2,42,83,116
+upperarm_r
+bounds:263,337,66,106
+weapon
+bounds:2,445,341,65
+yingzi
+bounds:2,21,83,19
diff --git a/Assets/arts/spines/characters/m10014/m10014.png b/Assets/arts/spines/characters/m10014/m10014.png
index b43599c08..32017661d 100644
Binary files a/Assets/arts/spines/characters/m10014/m10014.png and b/Assets/arts/spines/characters/m10014/m10014.png differ
diff --git a/Assets/arts/spines/characters/m10014/m10014.skel.bytes b/Assets/arts/spines/characters/m10014/m10014.skel.bytes
index 6e07f5e77..ba6ee7648 100644
Binary files a/Assets/arts/spines/characters/m10014/m10014.skel.bytes and b/Assets/arts/spines/characters/m10014/m10014.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10015/m10015.atlas.txt b/Assets/arts/spines/characters/m10015/m10015.atlas.txt
index d5fd80625..ea0c6fda5 100644
--- a/Assets/arts/spines/characters/m10015/m10015.atlas.txt
+++ b/Assets/arts/spines/characters/m10015/m10015.atlas.txt
@@ -2,30 +2,44 @@ m10015.png
size:512,512
filter:Linear,Linear
canying
-bounds:2,248,113,181
-offsets:0,2,113,185
-hand
-bounds:196,230,53,60
+bounds:2,156,113,148
+offsets:3,5,119,156
+clothes
+bounds:88,56,98,58
+rotate:90
+eye
+bounds:471,447,35,59
+offsets:0,0,36,59
+eye_xuanyun
+bounds:331,334,22,22
+gutou
+bounds:142,277,70,53
+hair
+bounds:345,435,124,71
+hand_l
+bounds:331,358,90,75
+hand_r
+bounds:214,270,48,60
head
-bounds:299,403,133,106
+bounds:142,332,118,107
hit_yan3
-bounds:2,2,28,28
-legL
-bounds:434,432,69,77
-legL1
-bounds:117,222,68,77
+bounds:117,178,28,28
+kulou
+bounds:423,356,77,62
+offsets:0,1,77,63
rotate:90
-legR
-bounds:114,112,50,56
+leg_l
+bounds:264,284,47,68
rotate:90
-legR1
-bounds:114,164,51,56
+leg_r
+bounds:117,208,47,67
spine
-bounds:117,292,151,137
-upperarm
-bounds:2,107,110,139
-upperarmR
-bounds:2,32,73,116
-rotate:90
-weapon_1
-bounds:2,431,295,78
+bounds:2,306,138,133
+upperarm_l
+bounds:2,38,84,116
+upperarm_r
+bounds:262,333,67,106
+weapon
+bounds:2,441,341,65
+yingzi
+bounds:2,17,83,19
diff --git a/Assets/arts/spines/characters/m10015/m10015.png b/Assets/arts/spines/characters/m10015/m10015.png
index 7d617875a..28448f331 100644
Binary files a/Assets/arts/spines/characters/m10015/m10015.png and b/Assets/arts/spines/characters/m10015/m10015.png differ
diff --git a/Assets/arts/spines/characters/m10015/m10015.skel.bytes b/Assets/arts/spines/characters/m10015/m10015.skel.bytes
index 9f693bd95..7e31cb0cc 100644
Binary files a/Assets/arts/spines/characters/m10015/m10015.skel.bytes and b/Assets/arts/spines/characters/m10015/m10015.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10016/m10016.atlas.txt b/Assets/arts/spines/characters/m10016/m10016.atlas.txt
index 52d61f960..33402bbde 100644
--- a/Assets/arts/spines/characters/m10016/m10016.atlas.txt
+++ b/Assets/arts/spines/characters/m10016/m10016.atlas.txt
@@ -1,34 +1,42 @@
m10016.png
size:512,512
filter:Linear,Linear
-hair
-bounds:306,424,122,79
+clothes
+bounds:2,2,98,58
+rotate:90
+eye_xuanyun
+bounds:477,394,22,22
+gutou
+bounds:185,326,70,53
hand_l
-bounds:223,342,68,65
+bounds:101,283,83,82
+rotate:90
hand_r
-bounds:141,219,52,59
-rotate:90
+bounds:70,149,48,59
head
-bounds:2,128,130,104
+bounds:142,381,118,120
hit_yan3
-bounds:206,309,28,28
-legL
-bounds:152,339,68,69
+bounds:70,119,28,28
+kulou
+bounds:101,219,77,62
+offsets:0,1,77,63
+leg_l
+bounds:185,277,47,68
+rotate:90
+leg_r
+bounds:180,227,48,67
rotate:90
-legL1
-bounds:141,273,63,64
-legR
-bounds:134,162,50,55
-legR1
-bounds:134,106,50,54
spine
-bounds:2,371,148,132
-upperarm
-bounds:2,2,103,124
-upperarm01
-bounds:430,390,72,113
+bounds:2,368,138,133
+upperarm_l
+bounds:374,387,101,114
+upperarm_r
+bounds:2,102,66,106
weapon_1
-bounds:152,409,94,152
+bounds:2,210,156,97
rotate:90
weapon_2
-bounds:2,234,137,135
+bounds:262,384,110,117
+yingzi
+bounds:477,418,83,19
+rotate:90
diff --git a/Assets/arts/spines/characters/m10016/m10016.png b/Assets/arts/spines/characters/m10016/m10016.png
index a93f91b4c..3ede3fa83 100644
Binary files a/Assets/arts/spines/characters/m10016/m10016.png and b/Assets/arts/spines/characters/m10016/m10016.png differ
diff --git a/Assets/arts/spines/characters/m10016/m10016.skel.bytes b/Assets/arts/spines/characters/m10016/m10016.skel.bytes
index 762306dc4..9ed575896 100644
Binary files a/Assets/arts/spines/characters/m10016/m10016.skel.bytes and b/Assets/arts/spines/characters/m10016/m10016.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10017/m10017.atlas.txt b/Assets/arts/spines/characters/m10017/m10017.atlas.txt
index 7f181017f..a16bae118 100644
--- a/Assets/arts/spines/characters/m10017/m10017.atlas.txt
+++ b/Assets/arts/spines/characters/m10017/m10017.atlas.txt
@@ -1,34 +1,42 @@
m10017.png
size:512,512
filter:Linear,Linear
-hair
-bounds:306,424,122,79
+clothes
+bounds:2,2,98,58
+rotate:90
+eye_xuanyun
+bounds:477,395,22,22
+gutou
+bounds:185,327,70,53
hand_l
-bounds:223,342,68,65
+bounds:101,284,83,82
+rotate:90
hand_r
-bounds:141,219,52,59
-rotate:90
+bounds:71,149,48,59
head
-bounds:2,128,130,104
+bounds:143,382,118,120
hit_yan3
-bounds:206,309,28,28
-legL
-bounds:152,339,68,69
+bounds:71,119,28,28
+kulou
+bounds:101,220,77,62
+offsets:0,1,77,63
+leg_l
+bounds:185,278,47,68
+rotate:90
+leg_r
+bounds:180,228,48,67
rotate:90
-legL1
-bounds:134,162,50,55
-legR
-bounds:141,273,63,64
-legR1
-bounds:134,106,50,54
spine
-bounds:2,371,148,132
-upperarm
-bounds:2,2,103,124
-upperarm01
-bounds:430,390,72,113
+bounds:2,369,139,133
+upperarm_l
+bounds:375,388,100,114
+upperarm_r
+bounds:2,102,67,106
weapon_1
-bounds:152,409,94,152
+bounds:2,210,157,97
rotate:90
weapon_2
-bounds:2,234,137,135
+bounds:263,385,110,117
+yingzi
+bounds:477,419,83,19
+rotate:90
diff --git a/Assets/arts/spines/characters/m10017/m10017.png b/Assets/arts/spines/characters/m10017/m10017.png
index 7eb3b2966..3f48bd58d 100644
Binary files a/Assets/arts/spines/characters/m10017/m10017.png and b/Assets/arts/spines/characters/m10017/m10017.png differ
diff --git a/Assets/arts/spines/characters/m10017/m10017.skel.bytes b/Assets/arts/spines/characters/m10017/m10017.skel.bytes
index 564ce1e6f..704739884 100644
Binary files a/Assets/arts/spines/characters/m10017/m10017.skel.bytes and b/Assets/arts/spines/characters/m10017/m10017.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10018/m10018.atlas.txt b/Assets/arts/spines/characters/m10018/m10018.atlas.txt
index e5af646c7..7e6aae50c 100644
--- a/Assets/arts/spines/characters/m10018/m10018.atlas.txt
+++ b/Assets/arts/spines/characters/m10018/m10018.atlas.txt
@@ -1,34 +1,42 @@
m10018.png
size:512,512
filter:Linear,Linear
-hair
-bounds:306,424,122,79
+clothes
+bounds:2,2,97,58
+rotate:90
+eye_xuanyun
+bounds:478,394,22,22
+gutou
+bounds:185,326,70,53
hand_l
-bounds:223,342,68,65
+bounds:101,283,83,82
+rotate:90
hand_r
-bounds:141,219,52,59
-rotate:90
+bounds:70,148,48,59
head
-bounds:2,128,130,104
+bounds:143,381,118,120
hit_yan3
-bounds:206,309,28,28
-legL
-bounds:152,339,68,69
+bounds:70,118,28,28
+kulou
+bounds:101,219,77,62
+offsets:0,1,77,63
+leg_l
+bounds:185,278,46,68
+rotate:90
+leg_r
+bounds:180,229,47,67
rotate:90
-legL1
-bounds:134,162,50,55
-legR
-bounds:141,273,63,64
-legR1
-bounds:134,106,50,54
spine
-bounds:2,371,148,132
-upperarm
-bounds:2,2,103,124
-upperarm01
-bounds:430,390,72,113
+bounds:2,368,139,133
+upperarm_l
+bounds:376,387,100,114
+upperarm_r
+bounds:2,101,66,106
weapon_1
-bounds:152,409,94,152
+bounds:2,209,157,97
rotate:90
weapon_2
-bounds:2,234,137,135
+bounds:263,384,111,117
+yingzi
+bounds:478,418,83,19
+rotate:90
diff --git a/Assets/arts/spines/characters/m10018/m10018.png b/Assets/arts/spines/characters/m10018/m10018.png
index 33005b068..453e0bcc3 100644
Binary files a/Assets/arts/spines/characters/m10018/m10018.png and b/Assets/arts/spines/characters/m10018/m10018.png differ
diff --git a/Assets/arts/spines/characters/m10018/m10018.skel.bytes b/Assets/arts/spines/characters/m10018/m10018.skel.bytes
index 2d9c755dd..765141612 100644
Binary files a/Assets/arts/spines/characters/m10018/m10018.skel.bytes and b/Assets/arts/spines/characters/m10018/m10018.skel.bytes differ
diff --git a/Assets/lua/app/userdata/activity/god_pig.meta b/Assets/arts/spines/characters/m10019.meta
similarity index 77%
rename from Assets/lua/app/userdata/activity/god_pig.meta
rename to Assets/arts/spines/characters/m10019.meta
index 8534b226f..810162ee6 100644
--- a/Assets/lua/app/userdata/activity/god_pig.meta
+++ b/Assets/arts/spines/characters/m10019.meta
@@ -1,5 +1,5 @@
fileFormatVersion: 2
-guid: 694d82a7e4ec7374b806a6310bae1fc8
+guid: 4f05f5dc4cdfc994c8e754938f4a41ce
folderAsset: yes
DefaultImporter:
externalObjects: {}
diff --git a/Assets/arts/spines/characters/m10019/m10019.atlas.txt b/Assets/arts/spines/characters/m10019/m10019.atlas.txt
new file mode 100644
index 000000000..73cdfd70e
--- /dev/null
+++ b/Assets/arts/spines/characters/m10019/m10019.atlas.txt
@@ -0,0 +1,42 @@
+m10019.png
+size:512,512
+filter:Linear,Linear
+clothes
+bounds:2,2,98,58
+rotate:90
+eye_xuanyun
+bounds:479,395,22,22
+gutou
+bounds:185,327,70,53
+hand_l
+bounds:101,284,83,82
+rotate:90
+hand_r
+bounds:70,149,49,59
+head
+bounds:143,382,118,120
+hit_yan3
+bounds:70,119,28,28
+kulou
+bounds:101,220,77,62
+offsets:0,1,77,63
+leg_l
+bounds:185,278,47,68
+rotate:90
+leg_r
+bounds:180,229,47,67
+rotate:90
+spine
+bounds:2,369,139,133
+upperarm_l
+bounds:376,388,101,114
+upperarm_r
+bounds:2,102,66,106
+weapon_1
+bounds:2,210,157,97
+rotate:90
+weapon_2
+bounds:263,385,111,117
+yingzi
+bounds:479,419,83,19
+rotate:90
diff --git a/Assets/arts/spines/characters/m10001/m10001skel.bytes.meta b/Assets/arts/spines/characters/m10019/m10019.atlas.txt.meta
similarity index 52%
rename from Assets/arts/spines/characters/m10001/m10001skel.bytes.meta
rename to Assets/arts/spines/characters/m10019/m10019.atlas.txt.meta
index 468d62235..fdfa885c5 100644
--- a/Assets/arts/spines/characters/m10001/m10001skel.bytes.meta
+++ b/Assets/arts/spines/characters/m10019/m10019.atlas.txt.meta
@@ -1,7 +1,7 @@
fileFormatVersion: 2
-guid: f88a037aa049e4548b1a4d384258e8d3
+guid: 50289fe7bef13924e9a3c8c3ee6f7d67
TextScriptImporter:
externalObjects: {}
userData:
- assetBundleName: arts/spines/characters/m10001.ab
+ assetBundleName: arts/spines/characters/m10019.ab
assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10019/m10019.png b/Assets/arts/spines/characters/m10019/m10019.png
new file mode 100644
index 000000000..5cd8c4dad
Binary files /dev/null and b/Assets/arts/spines/characters/m10019/m10019.png differ
diff --git a/Assets/arts/spines/characters/m10019/m10019.png.meta b/Assets/arts/spines/characters/m10019/m10019.png.meta
new file mode 100644
index 000000000..26f866590
--- /dev/null
+++ b/Assets/arts/spines/characters/m10019/m10019.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 25ca58e127738eb4f86120f77511eb75
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 0
+ wrapV: 0
+ wrapW: 0
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 1
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 1
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/spines/characters/m10019.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10019/m10019.skel.bytes b/Assets/arts/spines/characters/m10019/m10019.skel.bytes
new file mode 100644
index 000000000..a8dde1c24
Binary files /dev/null and b/Assets/arts/spines/characters/m10019/m10019.skel.bytes differ
diff --git a/Assets/lua/app/config/card.lua.bytes.meta b/Assets/arts/spines/characters/m10019/m10019.skel.bytes.meta
similarity index 52%
rename from Assets/lua/app/config/card.lua.bytes.meta
rename to Assets/arts/spines/characters/m10019/m10019.skel.bytes.meta
index cd4981b1d..bb4ee4737 100644
--- a/Assets/lua/app/config/card.lua.bytes.meta
+++ b/Assets/arts/spines/characters/m10019/m10019.skel.bytes.meta
@@ -1,7 +1,7 @@
fileFormatVersion: 2
-guid: beba67a4e6b3c544cb8f043af41aafdd
+guid: 987ee3e0502dced4ab7658485be1b46a
TextScriptImporter:
externalObjects: {}
userData:
- assetBundleName: lua/app/config/card.lua.bytes.ab
+ assetBundleName: arts/spines/characters/m10019.ab
assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10019/m10019_atlas.asset b/Assets/arts/spines/characters/m10019/m10019_atlas.asset
new file mode 100644
index 000000000..0a333f457
--- /dev/null
+++ b/Assets/arts/spines/characters/m10019/m10019_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m10019_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: 50289fe7bef13924e9a3c8c3ee6f7d67, type: 3}
+ materials:
+ - {fileID: 2100000, guid: 89099056442f9714799c6b55611790cc, type: 2}
diff --git a/Assets/arts/spines/characters/m10019/m10019_atlas.asset.meta b/Assets/arts/spines/characters/m10019/m10019_atlas.asset.meta
new file mode 100644
index 000000000..f7ff40cd2
--- /dev/null
+++ b/Assets/arts/spines/characters/m10019/m10019_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: b315534499e9e4d49a3a81e8cc660727
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/m10019.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10019/m10019_material.mat b/Assets/arts/spines/characters/m10019/m10019_material.mat
new file mode 100644
index 000000000..0abac11a4
--- /dev/null
+++ b/Assets/arts/spines/characters/m10019/m10019_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m10019_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 25ca58e127738eb4f86120f77511eb75, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m10019/m10019_material.mat.meta b/Assets/arts/spines/characters/m10019/m10019_material.mat.meta
new file mode 100644
index 000000000..17e265db7
--- /dev/null
+++ b/Assets/arts/spines/characters/m10019/m10019_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 89099056442f9714799c6b55611790cc
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName: arts/spines/characters/m10019.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10019/m10019_skeletondata.asset b/Assets/arts/spines/characters/m10019/m10019_skeletondata.asset
new file mode 100644
index 000000000..8cdca3db5
--- /dev/null
+++ b/Assets/arts/spines/characters/m10019/m10019_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m10019_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: b315534499e9e4d49a3a81e8cc660727, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 987ee3e0502dced4ab7658485be1b46a, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m10019/m10019_skeletondata.asset.meta b/Assets/arts/spines/characters/m10019/m10019_skeletondata.asset.meta
new file mode 100644
index 000000000..fb6a3d26b
--- /dev/null
+++ b/Assets/arts/spines/characters/m10019/m10019_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 303e01cd13eb0bf4d89ccabb86c01cf4
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/m10019.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common_temp.meta b/Assets/arts/spines/characters/m10020.meta
similarity index 77%
rename from Assets/arts/textures/ui/common_temp.meta
rename to Assets/arts/spines/characters/m10020.meta
index eaaeb13cd..d7163dc36 100644
--- a/Assets/arts/textures/ui/common_temp.meta
+++ b/Assets/arts/spines/characters/m10020.meta
@@ -1,5 +1,5 @@
fileFormatVersion: 2
-guid: f0c2bd0781ee1034f84e0dd675f5dc54
+guid: 842986a3788357547b196081f72a37f8
folderAsset: yes
DefaultImporter:
externalObjects: {}
diff --git a/Assets/arts/spines/characters/m10020/m10020.atlas.txt b/Assets/arts/spines/characters/m10020/m10020.atlas.txt
new file mode 100644
index 000000000..1144b5ef1
--- /dev/null
+++ b/Assets/arts/spines/characters/m10020/m10020.atlas.txt
@@ -0,0 +1,21 @@
+m10020.png
+size:256,256
+filter:Linear,Linear
+eye_L
+bounds:236,225,18,29
+eye_R
+bounds:141,201,17,29
+eye_xuanyun
+bounds:2,19,22,22
+head_1
+bounds:2,43,39,25
+head_2
+bounds:2,70,86,75
+head_3
+bounds:2,147,137,107
+hit_yan2
+bounds:43,48,20,20
+hit_yan3
+bounds:90,117,28,28
+yingzi
+bounds:141,232,93,22
diff --git a/Assets/arts/spines/characters/m10020/m10020.atlas.txt.meta b/Assets/arts/spines/characters/m10020/m10020.atlas.txt.meta
new file mode 100644
index 000000000..c442fea99
--- /dev/null
+++ b/Assets/arts/spines/characters/m10020/m10020.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: f5ba6216f3fceac4eaccf5e28aeb9c13
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10020/m10020.png b/Assets/arts/spines/characters/m10020/m10020.png
new file mode 100644
index 000000000..df2441dc4
Binary files /dev/null and b/Assets/arts/spines/characters/m10020/m10020.png differ
diff --git a/Assets/arts/spines/characters/m10020/m10020.png.meta b/Assets/arts/spines/characters/m10020/m10020.png.meta
new file mode 100644
index 000000000..d1be54b1a
--- /dev/null
+++ b/Assets/arts/spines/characters/m10020/m10020.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: ec7208d8e4423ac44acd3793a457f6e3
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10020/m10020.skel.bytes b/Assets/arts/spines/characters/m10020/m10020.skel.bytes
new file mode 100644
index 000000000..67ac20adb
Binary files /dev/null and b/Assets/arts/spines/characters/m10020/m10020.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10020/m10020.skel.bytes.meta b/Assets/arts/spines/characters/m10020/m10020.skel.bytes.meta
new file mode 100644
index 000000000..7e28d3161
--- /dev/null
+++ b/Assets/arts/spines/characters/m10020/m10020.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 7c618df75a6743d488424af40a3c13df
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10020/m10020_atlas.asset b/Assets/arts/spines/characters/m10020/m10020_atlas.asset
new file mode 100644
index 000000000..cda955653
--- /dev/null
+++ b/Assets/arts/spines/characters/m10020/m10020_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m10020_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: f5ba6216f3fceac4eaccf5e28aeb9c13, type: 3}
+ materials:
+ - {fileID: 2100000, guid: 8b11c5079711fa54095dd902550187b2, type: 2}
diff --git a/Assets/arts/spines/characters/m10020/m10020_atlas.asset.meta b/Assets/arts/spines/characters/m10020/m10020_atlas.asset.meta
new file mode 100644
index 000000000..94a8e1125
--- /dev/null
+++ b/Assets/arts/spines/characters/m10020/m10020_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: a593eefa62ab5d64da7ef07f9b0d2062
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10020/m10020_material.mat b/Assets/arts/spines/characters/m10020/m10020_material.mat
new file mode 100644
index 000000000..67c2ad243
--- /dev/null
+++ b/Assets/arts/spines/characters/m10020/m10020_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m10020_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: ec7208d8e4423ac44acd3793a457f6e3, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m10020/m10020_material.mat.meta b/Assets/arts/spines/characters/m10020/m10020_material.mat.meta
new file mode 100644
index 000000000..46159d909
--- /dev/null
+++ b/Assets/arts/spines/characters/m10020/m10020_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 8b11c5079711fa54095dd902550187b2
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10020/m10020_skeletondata.asset b/Assets/arts/spines/characters/m10020/m10020_skeletondata.asset
new file mode 100644
index 000000000..4b0a57966
--- /dev/null
+++ b/Assets/arts/spines/characters/m10020/m10020_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m10020_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: a593eefa62ab5d64da7ef07f9b0d2062, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 7c618df75a6743d488424af40a3c13df, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m10020/m10020_skeletondata.asset.meta b/Assets/arts/spines/characters/m10020/m10020_skeletondata.asset.meta
new file mode 100644
index 000000000..a00d379f9
--- /dev/null
+++ b/Assets/arts/spines/characters/m10020/m10020_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 875231c4c3fc0ba4786a1049f049ce14
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10021.meta b/Assets/arts/spines/characters/m10021.meta
new file mode 100644
index 000000000..078a3f8c0
--- /dev/null
+++ b/Assets/arts/spines/characters/m10021.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: a1aed7718318fbb4cbbe7bc03a8ded2c
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10021/m10021.atlas.txt b/Assets/arts/spines/characters/m10021/m10021.atlas.txt
new file mode 100644
index 000000000..faf7dfac7
--- /dev/null
+++ b/Assets/arts/spines/characters/m10021/m10021.atlas.txt
@@ -0,0 +1,21 @@
+m10021.png
+size:256,256
+filter:Linear,Linear
+eye_L
+bounds:2,2,17,29
+eye_R
+bounds:140,191,18,29
+eye_xuanyun
+bounds:43,36,22,22
+head_1
+bounds:2,33,39,25
+head_2
+bounds:2,60,87,75
+head_3
+bounds:2,137,136,107
+hit_yan2
+bounds:91,85,20,20
+hit_yan3
+bounds:91,107,28,28
+yingzi
+bounds:140,222,93,22
diff --git a/Assets/arts/spines/characters/m10021/m10021.atlas.txt.meta b/Assets/arts/spines/characters/m10021/m10021.atlas.txt.meta
new file mode 100644
index 000000000..9a2c4a381
--- /dev/null
+++ b/Assets/arts/spines/characters/m10021/m10021.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 5e29080d43997a640b6fd41705317e97
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10021/m10021.png b/Assets/arts/spines/characters/m10021/m10021.png
new file mode 100644
index 000000000..287569343
Binary files /dev/null and b/Assets/arts/spines/characters/m10021/m10021.png differ
diff --git a/Assets/arts/spines/characters/m10021/m10021.png.meta b/Assets/arts/spines/characters/m10021/m10021.png.meta
new file mode 100644
index 000000000..fb2fb36a2
--- /dev/null
+++ b/Assets/arts/spines/characters/m10021/m10021.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 51228e799bfe6a94cb72495bddb46511
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10021/m10021.skel.bytes b/Assets/arts/spines/characters/m10021/m10021.skel.bytes
new file mode 100644
index 000000000..ce45e3086
Binary files /dev/null and b/Assets/arts/spines/characters/m10021/m10021.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10021/m10021.skel.bytes.meta b/Assets/arts/spines/characters/m10021/m10021.skel.bytes.meta
new file mode 100644
index 000000000..3421145ad
--- /dev/null
+++ b/Assets/arts/spines/characters/m10021/m10021.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: dc820784eed0d7541afa3b73b424023f
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10021/m10021_atlas.asset b/Assets/arts/spines/characters/m10021/m10021_atlas.asset
new file mode 100644
index 000000000..95823d8c6
--- /dev/null
+++ b/Assets/arts/spines/characters/m10021/m10021_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m10021_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: 5e29080d43997a640b6fd41705317e97, type: 3}
+ materials:
+ - {fileID: 2100000, guid: ca85ed3a785b77a4b9c0f9e6b7c02b71, type: 2}
diff --git a/Assets/arts/spines/characters/m10021/m10021_atlas.asset.meta b/Assets/arts/spines/characters/m10021/m10021_atlas.asset.meta
new file mode 100644
index 000000000..91dae119f
--- /dev/null
+++ b/Assets/arts/spines/characters/m10021/m10021_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 536dc2d74aa430740ace7845cbde2b6a
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10021/m10021_material.mat b/Assets/arts/spines/characters/m10021/m10021_material.mat
new file mode 100644
index 000000000..7ad7c9da2
--- /dev/null
+++ b/Assets/arts/spines/characters/m10021/m10021_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m10021_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 51228e799bfe6a94cb72495bddb46511, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m10021/m10021_material.mat.meta b/Assets/arts/spines/characters/m10021/m10021_material.mat.meta
new file mode 100644
index 000000000..f476315d5
--- /dev/null
+++ b/Assets/arts/spines/characters/m10021/m10021_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: ca85ed3a785b77a4b9c0f9e6b7c02b71
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10021/m10021_skeletondata.asset b/Assets/arts/spines/characters/m10021/m10021_skeletondata.asset
new file mode 100644
index 000000000..ee6279dd6
--- /dev/null
+++ b/Assets/arts/spines/characters/m10021/m10021_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m10021_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: 536dc2d74aa430740ace7845cbde2b6a, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: dc820784eed0d7541afa3b73b424023f, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m10021/m10021_skeletondata.asset.meta b/Assets/arts/spines/characters/m10021/m10021_skeletondata.asset.meta
new file mode 100644
index 000000000..598a82316
--- /dev/null
+++ b/Assets/arts/spines/characters/m10021/m10021_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: dcb715055fe38404e868890f62f71e2c
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10022.meta b/Assets/arts/spines/characters/m10022.meta
new file mode 100644
index 000000000..eb14ced80
--- /dev/null
+++ b/Assets/arts/spines/characters/m10022.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 82624e3ed219f5b4a9a08e453b85fa53
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10022/m10022.atlas.txt b/Assets/arts/spines/characters/m10022/m10022.atlas.txt
new file mode 100644
index 000000000..b26c5a9b5
--- /dev/null
+++ b/Assets/arts/spines/characters/m10022/m10022.atlas.txt
@@ -0,0 +1,21 @@
+m10022.png
+size:256,256
+filter:Linear,Linear
+eye_L
+bounds:140,191,18,29
+eye_R
+bounds:2,2,18,29
+eye_xuanyun
+bounds:43,36,22,22
+head_1
+bounds:2,33,39,25
+head_2
+bounds:2,60,86,75
+head_3
+bounds:2,137,136,107
+hit_yan2
+bounds:90,85,20,20
+hit_yan3
+bounds:90,107,28,28
+yingzi
+bounds:140,222,93,22
diff --git a/Assets/arts/spines/characters/m10022/m10022.atlas.txt.meta b/Assets/arts/spines/characters/m10022/m10022.atlas.txt.meta
new file mode 100644
index 000000000..7c427e61e
--- /dev/null
+++ b/Assets/arts/spines/characters/m10022/m10022.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: d14b63e12cc7ad343bb0297f14404a29
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10022/m10022.png b/Assets/arts/spines/characters/m10022/m10022.png
new file mode 100644
index 000000000..bf1ac67e5
Binary files /dev/null and b/Assets/arts/spines/characters/m10022/m10022.png differ
diff --git a/Assets/arts/spines/characters/m10022/m10022.png.meta b/Assets/arts/spines/characters/m10022/m10022.png.meta
new file mode 100644
index 000000000..79f727123
--- /dev/null
+++ b/Assets/arts/spines/characters/m10022/m10022.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: a8be1a79fb32f1240a8a2c81b5f33529
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10022/m10022.skel.bytes b/Assets/arts/spines/characters/m10022/m10022.skel.bytes
new file mode 100644
index 000000000..ec88511e4
Binary files /dev/null and b/Assets/arts/spines/characters/m10022/m10022.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10022/m10022.skel.bytes.meta b/Assets/arts/spines/characters/m10022/m10022.skel.bytes.meta
new file mode 100644
index 000000000..7cfa8702c
--- /dev/null
+++ b/Assets/arts/spines/characters/m10022/m10022.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 59359f16f2d19014aaafa3bb12fcfffe
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10022/m10022_atlas.asset b/Assets/arts/spines/characters/m10022/m10022_atlas.asset
new file mode 100644
index 000000000..ea2c04e6f
--- /dev/null
+++ b/Assets/arts/spines/characters/m10022/m10022_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m10022_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: d14b63e12cc7ad343bb0297f14404a29, type: 3}
+ materials:
+ - {fileID: 2100000, guid: a16d476f0a69522408250d4f687981be, type: 2}
diff --git a/Assets/arts/spines/characters/m10022/m10022_atlas.asset.meta b/Assets/arts/spines/characters/m10022/m10022_atlas.asset.meta
new file mode 100644
index 000000000..9b7528b49
--- /dev/null
+++ b/Assets/arts/spines/characters/m10022/m10022_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: f002c8572cfdfb4468b4149e2875e141
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10022/m10022_material.mat b/Assets/arts/spines/characters/m10022/m10022_material.mat
new file mode 100644
index 000000000..94072921b
--- /dev/null
+++ b/Assets/arts/spines/characters/m10022/m10022_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m10022_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: a8be1a79fb32f1240a8a2c81b5f33529, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m10022/m10022_material.mat.meta b/Assets/arts/spines/characters/m10022/m10022_material.mat.meta
new file mode 100644
index 000000000..0751cf516
--- /dev/null
+++ b/Assets/arts/spines/characters/m10022/m10022_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: a16d476f0a69522408250d4f687981be
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10022/m10022_skeletondata.asset b/Assets/arts/spines/characters/m10022/m10022_skeletondata.asset
new file mode 100644
index 000000000..eeedf0fd9
--- /dev/null
+++ b/Assets/arts/spines/characters/m10022/m10022_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m10022_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: f002c8572cfdfb4468b4149e2875e141, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 59359f16f2d19014aaafa3bb12fcfffe, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m10022/m10022_skeletondata.asset.meta b/Assets/arts/spines/characters/m10022/m10022_skeletondata.asset.meta
new file mode 100644
index 000000000..d36396858
--- /dev/null
+++ b/Assets/arts/spines/characters/m10022/m10022_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 7719f967ef9d4204a84d4b13b27a8e6b
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10023.meta b/Assets/arts/spines/characters/m10023.meta
new file mode 100644
index 000000000..734260f43
--- /dev/null
+++ b/Assets/arts/spines/characters/m10023.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: d94acfcbf53869d44bea2a03acc216f8
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10023/m10023.atlas.txt b/Assets/arts/spines/characters/m10023/m10023.atlas.txt
new file mode 100644
index 000000000..40bcaa68d
--- /dev/null
+++ b/Assets/arts/spines/characters/m10023/m10023.atlas.txt
@@ -0,0 +1,21 @@
+m10023.png
+size:256,256
+filter:Linear,Linear
+eye_L
+bounds:2,2,17,29
+eye_R
+bounds:140,191,18,29
+eye_xuanyun
+bounds:43,36,22,22
+head_1
+bounds:2,33,39,25
+head_2
+bounds:2,60,87,75
+head_3
+bounds:2,137,136,107
+hit_yan2
+bounds:91,85,20,20
+hit_yan3
+bounds:91,107,28,28
+yingzi
+bounds:140,222,93,22
diff --git a/Assets/arts/spines/characters/m10023/m10023.atlas.txt.meta b/Assets/arts/spines/characters/m10023/m10023.atlas.txt.meta
new file mode 100644
index 000000000..4ea9fabd0
--- /dev/null
+++ b/Assets/arts/spines/characters/m10023/m10023.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 959a6c28ef4d3fe4fb8165317b633254
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10023/m10023.png b/Assets/arts/spines/characters/m10023/m10023.png
new file mode 100644
index 000000000..6ca0e5281
Binary files /dev/null and b/Assets/arts/spines/characters/m10023/m10023.png differ
diff --git a/Assets/arts/spines/characters/m10023/m10023.png.meta b/Assets/arts/spines/characters/m10023/m10023.png.meta
new file mode 100644
index 000000000..9a449d339
--- /dev/null
+++ b/Assets/arts/spines/characters/m10023/m10023.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 3186ef1500101534b9fb66b4e09e005d
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10023/m10023.skel.bytes b/Assets/arts/spines/characters/m10023/m10023.skel.bytes
new file mode 100644
index 000000000..ce45e3086
Binary files /dev/null and b/Assets/arts/spines/characters/m10023/m10023.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10023/m10023.skel.bytes.meta b/Assets/arts/spines/characters/m10023/m10023.skel.bytes.meta
new file mode 100644
index 000000000..ee18af451
--- /dev/null
+++ b/Assets/arts/spines/characters/m10023/m10023.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 5271f0c4e7c1eeb4a90ac16b77c4f495
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10023/m10023_atlas.asset b/Assets/arts/spines/characters/m10023/m10023_atlas.asset
new file mode 100644
index 000000000..3b732987f
--- /dev/null
+++ b/Assets/arts/spines/characters/m10023/m10023_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m10023_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: 959a6c28ef4d3fe4fb8165317b633254, type: 3}
+ materials:
+ - {fileID: 2100000, guid: a09ac07d10f54504591034bf11c13dae, type: 2}
diff --git a/Assets/arts/spines/characters/m10023/m10023_atlas.asset.meta b/Assets/arts/spines/characters/m10023/m10023_atlas.asset.meta
new file mode 100644
index 000000000..7edc2d0f4
--- /dev/null
+++ b/Assets/arts/spines/characters/m10023/m10023_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 47985572b2a7bdf42b392a3b452c2631
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10023/m10023_material.mat b/Assets/arts/spines/characters/m10023/m10023_material.mat
new file mode 100644
index 000000000..dfdce58b1
--- /dev/null
+++ b/Assets/arts/spines/characters/m10023/m10023_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m10023_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 3186ef1500101534b9fb66b4e09e005d, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m10023/m10023_material.mat.meta b/Assets/arts/spines/characters/m10023/m10023_material.mat.meta
new file mode 100644
index 000000000..e819959e8
--- /dev/null
+++ b/Assets/arts/spines/characters/m10023/m10023_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: a09ac07d10f54504591034bf11c13dae
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10023/m10023_skeletondata.asset b/Assets/arts/spines/characters/m10023/m10023_skeletondata.asset
new file mode 100644
index 000000000..6081bc935
--- /dev/null
+++ b/Assets/arts/spines/characters/m10023/m10023_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m10023_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: 47985572b2a7bdf42b392a3b452c2631, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 5271f0c4e7c1eeb4a90ac16b77c4f495, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m10023/m10023_skeletondata.asset.meta b/Assets/arts/spines/characters/m10023/m10023_skeletondata.asset.meta
new file mode 100644
index 000000000..e58d763bb
--- /dev/null
+++ b/Assets/arts/spines/characters/m10023/m10023_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 781bd43acdd047d48a8be63c350fd21c
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10024.meta b/Assets/arts/spines/characters/m10024.meta
new file mode 100644
index 000000000..679492ecb
--- /dev/null
+++ b/Assets/arts/spines/characters/m10024.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: d8525c00a37728c4c8c680c645582baa
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10024/m10024.atlas.txt b/Assets/arts/spines/characters/m10024/m10024.atlas.txt
new file mode 100644
index 000000000..c6dcac7e3
--- /dev/null
+++ b/Assets/arts/spines/characters/m10024/m10024.atlas.txt
@@ -0,0 +1,23 @@
+m10024.png
+size:256,256
+filter:Linear,Linear
+eye_L
+bounds:2,3,21,30
+rotate:90
+eye_R
+bounds:34,3,21,30
+rotate:90
+eye_xuanyun
+bounds:66,2,22,22
+mouth
+bounds:2,26,85,79
+spine
+bounds:2,107,218,144
+weapon_1
+bounds:89,32,73,91
+rotate:90
+weapon_2
+bounds:182,42,37,63
+yingzi
+bounds:222,168,83,19
+rotate:90
diff --git a/Assets/arts/spines/characters/m10024/m10024.atlas.txt.meta b/Assets/arts/spines/characters/m10024/m10024.atlas.txt.meta
new file mode 100644
index 000000000..70e4db8da
--- /dev/null
+++ b/Assets/arts/spines/characters/m10024/m10024.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 3b5bd500fc84f0249b1fbfe0951966fa
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10024/m10024.png b/Assets/arts/spines/characters/m10024/m10024.png
new file mode 100644
index 000000000..e98051787
Binary files /dev/null and b/Assets/arts/spines/characters/m10024/m10024.png differ
diff --git a/Assets/arts/spines/characters/m10024/m10024.png.meta b/Assets/arts/spines/characters/m10024/m10024.png.meta
new file mode 100644
index 000000000..68edddc29
--- /dev/null
+++ b/Assets/arts/spines/characters/m10024/m10024.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 41cbe9d2a461590409f1edf42273bf2f
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10024/m10024.skel.bytes b/Assets/arts/spines/characters/m10024/m10024.skel.bytes
new file mode 100644
index 000000000..1b5f4eb06
Binary files /dev/null and b/Assets/arts/spines/characters/m10024/m10024.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10024/m10024.skel.bytes.meta b/Assets/arts/spines/characters/m10024/m10024.skel.bytes.meta
new file mode 100644
index 000000000..22010242b
--- /dev/null
+++ b/Assets/arts/spines/characters/m10024/m10024.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 8b8a996398e267a46972d4cb0a764a81
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10024/m10024_atlas.asset b/Assets/arts/spines/characters/m10024/m10024_atlas.asset
new file mode 100644
index 000000000..8bc458d0d
--- /dev/null
+++ b/Assets/arts/spines/characters/m10024/m10024_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m10024_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: 3b5bd500fc84f0249b1fbfe0951966fa, type: 3}
+ materials:
+ - {fileID: 2100000, guid: 7399dc3c296e8ee4ba24519293626242, type: 2}
diff --git a/Assets/arts/spines/characters/m10024/m10024_atlas.asset.meta b/Assets/arts/spines/characters/m10024/m10024_atlas.asset.meta
new file mode 100644
index 000000000..4e7ab318e
--- /dev/null
+++ b/Assets/arts/spines/characters/m10024/m10024_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: c5787930a9f51204d9495ef31695014a
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10024/m10024_material.mat b/Assets/arts/spines/characters/m10024/m10024_material.mat
new file mode 100644
index 000000000..7bca7bcf0
--- /dev/null
+++ b/Assets/arts/spines/characters/m10024/m10024_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m10024_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 41cbe9d2a461590409f1edf42273bf2f, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m10024/m10024_material.mat.meta b/Assets/arts/spines/characters/m10024/m10024_material.mat.meta
new file mode 100644
index 000000000..1faa14dd7
--- /dev/null
+++ b/Assets/arts/spines/characters/m10024/m10024_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 7399dc3c296e8ee4ba24519293626242
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10024/m10024_skeletondata.asset b/Assets/arts/spines/characters/m10024/m10024_skeletondata.asset
new file mode 100644
index 000000000..d256e66a9
--- /dev/null
+++ b/Assets/arts/spines/characters/m10024/m10024_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m10024_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: c5787930a9f51204d9495ef31695014a, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 8b8a996398e267a46972d4cb0a764a81, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m10024/m10024_skeletondata.asset.meta b/Assets/arts/spines/characters/m10024/m10024_skeletondata.asset.meta
new file mode 100644
index 000000000..60dd46cf4
--- /dev/null
+++ b/Assets/arts/spines/characters/m10024/m10024_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: e38077456cde52e488282cb69a8b15bc
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10025.meta b/Assets/arts/spines/characters/m10025.meta
new file mode 100644
index 000000000..03b20ab29
--- /dev/null
+++ b/Assets/arts/spines/characters/m10025.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: f1b161f7c1f000f45be3b00d85daf2bd
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10025/m10025.atlas.txt b/Assets/arts/spines/characters/m10025/m10025.atlas.txt
new file mode 100644
index 000000000..3bf126e8f
--- /dev/null
+++ b/Assets/arts/spines/characters/m10025/m10025.atlas.txt
@@ -0,0 +1,23 @@
+m10025.png
+size:256,256
+filter:Linear,Linear
+eye_L
+bounds:2,2,22,30
+rotate:90
+eye_R
+bounds:34,2,22,30
+rotate:90
+eye_xuanyun
+bounds:66,2,22,22
+mouth
+bounds:2,26,86,79
+spine
+bounds:2,107,217,144
+weapon_1
+bounds:90,31,74,91
+rotate:90
+weapon_2
+bounds:183,42,37,63
+yingzi
+bounds:221,168,83,19
+rotate:90
diff --git a/Assets/arts/spines/characters/m10025/m10025.atlas.txt.meta b/Assets/arts/spines/characters/m10025/m10025.atlas.txt.meta
new file mode 100644
index 000000000..f71a96b72
--- /dev/null
+++ b/Assets/arts/spines/characters/m10025/m10025.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 717f2a28a0b085949863cb9e3848a7a1
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10025/m10025.png b/Assets/arts/spines/characters/m10025/m10025.png
new file mode 100644
index 000000000..f74d4f69b
Binary files /dev/null and b/Assets/arts/spines/characters/m10025/m10025.png differ
diff --git a/Assets/arts/spines/characters/m10025/m10025.png.meta b/Assets/arts/spines/characters/m10025/m10025.png.meta
new file mode 100644
index 000000000..d823bb9cf
--- /dev/null
+++ b/Assets/arts/spines/characters/m10025/m10025.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 594df83d34d5aad45a19cfb19b83c881
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10025/m10025.skel.bytes b/Assets/arts/spines/characters/m10025/m10025.skel.bytes
new file mode 100644
index 000000000..4064873a3
Binary files /dev/null and b/Assets/arts/spines/characters/m10025/m10025.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10025/m10025.skel.bytes.meta b/Assets/arts/spines/characters/m10025/m10025.skel.bytes.meta
new file mode 100644
index 000000000..b76a38d96
--- /dev/null
+++ b/Assets/arts/spines/characters/m10025/m10025.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 69cc49018a87d6045b2e742ce57c2cc7
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10025/m10025_atlas.asset b/Assets/arts/spines/characters/m10025/m10025_atlas.asset
new file mode 100644
index 000000000..068f05ecb
--- /dev/null
+++ b/Assets/arts/spines/characters/m10025/m10025_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m10025_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: 717f2a28a0b085949863cb9e3848a7a1, type: 3}
+ materials:
+ - {fileID: 2100000, guid: f9853b620d4ac8e469aa7928535a8d6d, type: 2}
diff --git a/Assets/arts/spines/characters/m10025/m10025_atlas.asset.meta b/Assets/arts/spines/characters/m10025/m10025_atlas.asset.meta
new file mode 100644
index 000000000..bc12819b0
--- /dev/null
+++ b/Assets/arts/spines/characters/m10025/m10025_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: ca7283e1092253948a4d5ba55f600fff
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10025/m10025_material.mat b/Assets/arts/spines/characters/m10025/m10025_material.mat
new file mode 100644
index 000000000..987e8cbbf
--- /dev/null
+++ b/Assets/arts/spines/characters/m10025/m10025_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m10025_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 594df83d34d5aad45a19cfb19b83c881, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m10025/m10025_material.mat.meta b/Assets/arts/spines/characters/m10025/m10025_material.mat.meta
new file mode 100644
index 000000000..37cbf245a
--- /dev/null
+++ b/Assets/arts/spines/characters/m10025/m10025_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: f9853b620d4ac8e469aa7928535a8d6d
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10025/m10025_skeletondata.asset b/Assets/arts/spines/characters/m10025/m10025_skeletondata.asset
new file mode 100644
index 000000000..5e03ad50c
--- /dev/null
+++ b/Assets/arts/spines/characters/m10025/m10025_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m10025_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: ca7283e1092253948a4d5ba55f600fff, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 69cc49018a87d6045b2e742ce57c2cc7, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m10025/m10025_skeletondata.asset.meta b/Assets/arts/spines/characters/m10025/m10025_skeletondata.asset.meta
new file mode 100644
index 000000000..909c63008
--- /dev/null
+++ b/Assets/arts/spines/characters/m10025/m10025_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 7c584207fcc4fea41bfd045e30da9f59
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10026.meta b/Assets/arts/spines/characters/m10026.meta
new file mode 100644
index 000000000..849752d05
--- /dev/null
+++ b/Assets/arts/spines/characters/m10026.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 009d8fca5272bc644b6289a97a00ebc6
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10026/m10026.atlas.txt b/Assets/arts/spines/characters/m10026/m10026.atlas.txt
new file mode 100644
index 000000000..b9dcfc5bb
--- /dev/null
+++ b/Assets/arts/spines/characters/m10026/m10026.atlas.txt
@@ -0,0 +1,20 @@
+m10026.png
+size:256,256
+filter:Linear,Linear
+eye_L
+bounds:222,128,21,30
+eye_R
+bounds:222,96,21,30
+eye_xuanyun
+bounds:165,10,22,22
+mouth
+bounds:78,18,85,79
+spine
+bounds:2,99,218,144
+weapon_1
+bounds:2,6,74,91
+weapon_2
+bounds:165,34,36,63
+yingzi
+bounds:222,160,83,19
+rotate:90
diff --git a/Assets/arts/spines/characters/m10026/m10026.atlas.txt.meta b/Assets/arts/spines/characters/m10026/m10026.atlas.txt.meta
new file mode 100644
index 000000000..5004c94f9
--- /dev/null
+++ b/Assets/arts/spines/characters/m10026/m10026.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: a46025dd9e4a509489557c5f65e83540
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10026/m10026.png b/Assets/arts/spines/characters/m10026/m10026.png
new file mode 100644
index 000000000..ab5421909
Binary files /dev/null and b/Assets/arts/spines/characters/m10026/m10026.png differ
diff --git a/Assets/arts/spines/characters/m10026/m10026.png.meta b/Assets/arts/spines/characters/m10026/m10026.png.meta
new file mode 100644
index 000000000..730887efc
--- /dev/null
+++ b/Assets/arts/spines/characters/m10026/m10026.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 2eddf3da7377ea74cb8d1e26db2d0e52
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10026/m10026.skel.bytes b/Assets/arts/spines/characters/m10026/m10026.skel.bytes
new file mode 100644
index 000000000..b26bad255
Binary files /dev/null and b/Assets/arts/spines/characters/m10026/m10026.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10026/m10026.skel.bytes.meta b/Assets/arts/spines/characters/m10026/m10026.skel.bytes.meta
new file mode 100644
index 000000000..d6c9303f5
--- /dev/null
+++ b/Assets/arts/spines/characters/m10026/m10026.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 772914c60f1195143a0f9326e2853784
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10026/m10026_atlas.asset b/Assets/arts/spines/characters/m10026/m10026_atlas.asset
new file mode 100644
index 000000000..cdfcfe31f
--- /dev/null
+++ b/Assets/arts/spines/characters/m10026/m10026_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m10026_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: a46025dd9e4a509489557c5f65e83540, type: 3}
+ materials:
+ - {fileID: 2100000, guid: 3e47cc8aae87ad248926d272a5a78813, type: 2}
diff --git a/Assets/arts/spines/characters/m10026/m10026_atlas.asset.meta b/Assets/arts/spines/characters/m10026/m10026_atlas.asset.meta
new file mode 100644
index 000000000..6a9485ff1
--- /dev/null
+++ b/Assets/arts/spines/characters/m10026/m10026_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: c42e5bbf7ff9ddd459f310b56a8ced37
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10026/m10026_material.mat b/Assets/arts/spines/characters/m10026/m10026_material.mat
new file mode 100644
index 000000000..1eb1e7700
--- /dev/null
+++ b/Assets/arts/spines/characters/m10026/m10026_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m10026_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 2eddf3da7377ea74cb8d1e26db2d0e52, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m10026/m10026_material.mat.meta b/Assets/arts/spines/characters/m10026/m10026_material.mat.meta
new file mode 100644
index 000000000..38b207420
--- /dev/null
+++ b/Assets/arts/spines/characters/m10026/m10026_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 3e47cc8aae87ad248926d272a5a78813
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10026/m10026_skeletondata.asset b/Assets/arts/spines/characters/m10026/m10026_skeletondata.asset
new file mode 100644
index 000000000..2162601d3
--- /dev/null
+++ b/Assets/arts/spines/characters/m10026/m10026_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m10026_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: c42e5bbf7ff9ddd459f310b56a8ced37, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 772914c60f1195143a0f9326e2853784, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m10026/m10026_skeletondata.asset.meta b/Assets/arts/spines/characters/m10026/m10026_skeletondata.asset.meta
new file mode 100644
index 000000000..dda6ff339
--- /dev/null
+++ b/Assets/arts/spines/characters/m10026/m10026_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 8daefc6913a97d64ab6eac7a0d01ea5f
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10027.meta b/Assets/arts/spines/characters/m10027.meta
new file mode 100644
index 000000000..e4354ea19
--- /dev/null
+++ b/Assets/arts/spines/characters/m10027.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 6241f023ad55eea498c95f226692612b
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10027/m10027.atlas.txt b/Assets/arts/spines/characters/m10027/m10027.atlas.txt
new file mode 100644
index 000000000..d20c7a035
--- /dev/null
+++ b/Assets/arts/spines/characters/m10027/m10027.atlas.txt
@@ -0,0 +1,20 @@
+m10027.png
+size:256,256
+filter:Linear,Linear
+eye_L
+bounds:222,128,21,30
+eye_R
+bounds:222,96,21,30
+eye_xuanyun
+bounds:165,10,22,22
+mouth
+bounds:78,18,85,79
+spine
+bounds:2,99,218,144
+weapon_1
+bounds:2,6,74,91
+weapon_2
+bounds:165,34,36,63
+yingzi
+bounds:222,160,83,19
+rotate:90
diff --git a/Assets/arts/spines/characters/m10027/m10027.atlas.txt.meta b/Assets/arts/spines/characters/m10027/m10027.atlas.txt.meta
new file mode 100644
index 000000000..bc732b1c8
--- /dev/null
+++ b/Assets/arts/spines/characters/m10027/m10027.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: bc3e449926be9c24abbc7bc5af8acb8e
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10027/m10027.png b/Assets/arts/spines/characters/m10027/m10027.png
new file mode 100644
index 000000000..a58c5769a
Binary files /dev/null and b/Assets/arts/spines/characters/m10027/m10027.png differ
diff --git a/Assets/arts/spines/characters/m10027/m10027.png.meta b/Assets/arts/spines/characters/m10027/m10027.png.meta
new file mode 100644
index 000000000..4264c3591
--- /dev/null
+++ b/Assets/arts/spines/characters/m10027/m10027.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 6cd0aaca7a6f07444b7a0348f3891aad
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10027/m10027.skel.bytes b/Assets/arts/spines/characters/m10027/m10027.skel.bytes
new file mode 100644
index 000000000..9bc1e8ad9
Binary files /dev/null and b/Assets/arts/spines/characters/m10027/m10027.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10027/m10027.skel.bytes.meta b/Assets/arts/spines/characters/m10027/m10027.skel.bytes.meta
new file mode 100644
index 000000000..bfecfe2ef
--- /dev/null
+++ b/Assets/arts/spines/characters/m10027/m10027.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: e28f4d7454b2e6047a1260d95eb688d0
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10027/m10027_atlas.asset b/Assets/arts/spines/characters/m10027/m10027_atlas.asset
new file mode 100644
index 000000000..3bdcb6c0b
--- /dev/null
+++ b/Assets/arts/spines/characters/m10027/m10027_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m10027_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: bc3e449926be9c24abbc7bc5af8acb8e, type: 3}
+ materials:
+ - {fileID: 2100000, guid: 97cbc4a0c2e57104ca8eb62322a69386, type: 2}
diff --git a/Assets/arts/spines/characters/m10027/m10027_atlas.asset.meta b/Assets/arts/spines/characters/m10027/m10027_atlas.asset.meta
new file mode 100644
index 000000000..ce1d2450b
--- /dev/null
+++ b/Assets/arts/spines/characters/m10027/m10027_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 3a4c397831624fc4f9160ab3cbf50d5c
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10027/m10027_material.mat b/Assets/arts/spines/characters/m10027/m10027_material.mat
new file mode 100644
index 000000000..9d61761a3
--- /dev/null
+++ b/Assets/arts/spines/characters/m10027/m10027_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m10027_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 6cd0aaca7a6f07444b7a0348f3891aad, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m10027/m10027_material.mat.meta b/Assets/arts/spines/characters/m10027/m10027_material.mat.meta
new file mode 100644
index 000000000..c5a58b540
--- /dev/null
+++ b/Assets/arts/spines/characters/m10027/m10027_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 97cbc4a0c2e57104ca8eb62322a69386
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10027/m10027_skeletondata.asset b/Assets/arts/spines/characters/m10027/m10027_skeletondata.asset
new file mode 100644
index 000000000..e948d86db
--- /dev/null
+++ b/Assets/arts/spines/characters/m10027/m10027_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m10027_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: 3a4c397831624fc4f9160ab3cbf50d5c, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: e28f4d7454b2e6047a1260d95eb688d0, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m10027/m10027_skeletondata.asset.meta b/Assets/arts/spines/characters/m10027/m10027_skeletondata.asset.meta
new file mode 100644
index 000000000..53bf6e1ef
--- /dev/null
+++ b/Assets/arts/spines/characters/m10027/m10027_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: f62cb1a6e02c901469381aee38eec568
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10028.meta b/Assets/arts/spines/characters/m10028.meta
new file mode 100644
index 000000000..ee28dd214
--- /dev/null
+++ b/Assets/arts/spines/characters/m10028.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 2fea889b425b4824fbd274f79e880062
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10028/m10028.atlas.txt b/Assets/arts/spines/characters/m10028/m10028.atlas.txt
new file mode 100644
index 000000000..0c6cdce25
--- /dev/null
+++ b/Assets/arts/spines/characters/m10028/m10028.atlas.txt
@@ -0,0 +1,56 @@
+m10028.png
+size:512,512
+filter:Linear,Linear
+clothes_1
+bounds:199,401,46,48
+rotate:90
+eye
+bounds:391,484,53,25
+offsets:1,1,55,27
+eye_xuanyun
+bounds:367,463,22,22
+hair
+bounds:2,288,118,69
+rotate:90
+hand_L
+bounds:2,2,33,47
+offsets:1,1,35,49
+rotate:90
+hand_R
+bounds:2,108,46,80
+head
+bounds:103,428,94,81
+offsets:1,1,96,83
+hit_yan1
+bounds:73,289,16,18
+hit_yan2
+bounds:137,406,20,20
+hit_yan3
+bounds:249,419,28,28
+leg_L
+bounds:2,37,45,69
+leg_R
+bounds:296,440,45,69
+rotate:90
+pelvis
+bounds:73,309,97,23
+offsets:1,1,99,25
+rotate:90
+spine
+bounds:2,408,99,101
+upperarm_L_1
+bounds:446,468,41,51
+offsets:1,1,43,53
+rotate:90
+weapon_1
+bounds:199,449,95,60
+offsets:1,1,97,62
+weapon_2
+bounds:2,190,96,60
+offsets:1,1,98,62
+rotate:90
+yingzi
+bounds:296,487,93,22
+zui
+bounds:103,402,24,32
+rotate:90
diff --git a/Assets/lua/app/config/stage.lua.bytes.meta b/Assets/arts/spines/characters/m10028/m10028.atlas.txt.meta
similarity index 51%
rename from Assets/lua/app/config/stage.lua.bytes.meta
rename to Assets/arts/spines/characters/m10028/m10028.atlas.txt.meta
index 81155e343..8f6f2dfc9 100644
--- a/Assets/lua/app/config/stage.lua.bytes.meta
+++ b/Assets/arts/spines/characters/m10028/m10028.atlas.txt.meta
@@ -1,7 +1,7 @@
fileFormatVersion: 2
-guid: 3802049f329710649895ffa65e74fcba
+guid: 55f5e4d9232c47a48a700c686484d4ae
TextScriptImporter:
externalObjects: {}
userData:
- assetBundleName: lua/app/config/stage.lua.bytes.ab
+ assetBundleName: arts/spines/characters/m10028.ab
assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10028/m10028.png b/Assets/arts/spines/characters/m10028/m10028.png
new file mode 100644
index 000000000..a86c7891d
Binary files /dev/null and b/Assets/arts/spines/characters/m10028/m10028.png differ
diff --git a/Assets/arts/spines/characters/m10028/m10028.png.meta b/Assets/arts/spines/characters/m10028/m10028.png.meta
new file mode 100644
index 000000000..b02dd0438
--- /dev/null
+++ b/Assets/arts/spines/characters/m10028/m10028.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: d2be6e1be4d383b4fb2eaa2bd585526c
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/spines/characters/m10028.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10028/m10028.skel.bytes b/Assets/arts/spines/characters/m10028/m10028.skel.bytes
new file mode 100644
index 000000000..954f59e43
Binary files /dev/null and b/Assets/arts/spines/characters/m10028/m10028.skel.bytes differ
diff --git a/Assets/lua/app/config/skill_box.lua.bytes.meta b/Assets/arts/spines/characters/m10028/m10028.skel.bytes.meta
similarity index 50%
rename from Assets/lua/app/config/skill_box.lua.bytes.meta
rename to Assets/arts/spines/characters/m10028/m10028.skel.bytes.meta
index d01f8e2a3..2d1d53e3e 100644
--- a/Assets/lua/app/config/skill_box.lua.bytes.meta
+++ b/Assets/arts/spines/characters/m10028/m10028.skel.bytes.meta
@@ -1,7 +1,7 @@
fileFormatVersion: 2
-guid: bc9132b35eea5b247b6d019a5a21a56f
+guid: b786bbdb83fac944c9231e20b6b7ada5
TextScriptImporter:
externalObjects: {}
userData:
- assetBundleName: lua/app/config/skill_box.lua.bytes.ab
+ assetBundleName: arts/spines/characters/m10028.ab
assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10028/m10028_atlas.asset b/Assets/arts/spines/characters/m10028/m10028_atlas.asset
new file mode 100644
index 000000000..066df1272
--- /dev/null
+++ b/Assets/arts/spines/characters/m10028/m10028_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m10028_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: 55f5e4d9232c47a48a700c686484d4ae, type: 3}
+ materials:
+ - {fileID: 2100000, guid: 31c4ad10b91e89c4399408d88d027454, type: 2}
diff --git a/Assets/arts/spines/characters/m10028/m10028_atlas.asset.meta b/Assets/arts/spines/characters/m10028/m10028_atlas.asset.meta
new file mode 100644
index 000000000..b60827a30
--- /dev/null
+++ b/Assets/arts/spines/characters/m10028/m10028_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: e948de699ff57224782031dc3adbb178
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/m10028.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10028/m10028_material.mat b/Assets/arts/spines/characters/m10028/m10028_material.mat
new file mode 100644
index 000000000..685b6a825
--- /dev/null
+++ b/Assets/arts/spines/characters/m10028/m10028_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m10028_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: d2be6e1be4d383b4fb2eaa2bd585526c, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m10028/m10028_material.mat.meta b/Assets/arts/spines/characters/m10028/m10028_material.mat.meta
new file mode 100644
index 000000000..e1310e300
--- /dev/null
+++ b/Assets/arts/spines/characters/m10028/m10028_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 31c4ad10b91e89c4399408d88d027454
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName: arts/spines/characters/m10028.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10028/m10028_skeletondata.asset b/Assets/arts/spines/characters/m10028/m10028_skeletondata.asset
new file mode 100644
index 000000000..87cfb3f5c
--- /dev/null
+++ b/Assets/arts/spines/characters/m10028/m10028_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m10028_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: e948de699ff57224782031dc3adbb178, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: b786bbdb83fac944c9231e20b6b7ada5, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m10028/m10028_skeletondata.asset.meta b/Assets/arts/spines/characters/m10028/m10028_skeletondata.asset.meta
new file mode 100644
index 000000000..98e9e15e9
--- /dev/null
+++ b/Assets/arts/spines/characters/m10028/m10028_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 0198f4a142d99324f9f4f882986431c1
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/m10028.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10029.meta b/Assets/arts/spines/characters/m10029.meta
new file mode 100644
index 000000000..f8e2c1b65
--- /dev/null
+++ b/Assets/arts/spines/characters/m10029.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 4f9482ce181b1204294b1d49a95c3793
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10029/m10029.atlas.txt b/Assets/arts/spines/characters/m10029/m10029.atlas.txt
new file mode 100644
index 000000000..ceb7bd66d
--- /dev/null
+++ b/Assets/arts/spines/characters/m10029/m10029.atlas.txt
@@ -0,0 +1,56 @@
+m10029.png
+size:512,512
+filter:Linear,Linear
+clothes_1
+bounds:199,401,46,48
+rotate:90
+eye
+bounds:391,484,53,25
+offsets:1,1,55,27
+eye_xuanyun
+bounds:367,463,22,22
+hair
+bounds:2,288,118,69
+rotate:90
+hand_L
+bounds:2,2,33,47
+offsets:1,1,35,49
+rotate:90
+hand_R
+bounds:2,108,46,80
+head
+bounds:103,428,94,81
+offsets:1,1,96,83
+hit_yan1
+bounds:73,289,16,18
+hit_yan2
+bounds:137,406,20,20
+hit_yan3
+bounds:249,419,28,28
+leg_L
+bounds:2,37,45,69
+leg_R
+bounds:296,440,45,69
+rotate:90
+pelvis
+bounds:73,309,97,23
+offsets:1,1,99,25
+rotate:90
+spine
+bounds:2,408,99,101
+upperarm_L_1
+bounds:446,468,41,51
+offsets:1,1,43,53
+rotate:90
+weapon_1
+bounds:199,449,95,60
+offsets:1,1,97,62
+weapon_2
+bounds:2,190,96,60
+offsets:1,1,98,62
+rotate:90
+yingzi
+bounds:296,487,93,22
+zui
+bounds:103,402,24,32
+rotate:90
diff --git a/Assets/arts/spines/characters/m10029/m10029.atlas.txt.meta b/Assets/arts/spines/characters/m10029/m10029.atlas.txt.meta
new file mode 100644
index 000000000..cdd73ee93
--- /dev/null
+++ b/Assets/arts/spines/characters/m10029/m10029.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: c1f67fbcdb956f04a91804963fb348b1
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName: arts/spines/characters/m10029.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10029/m10029.png b/Assets/arts/spines/characters/m10029/m10029.png
new file mode 100644
index 000000000..a54257928
Binary files /dev/null and b/Assets/arts/spines/characters/m10029/m10029.png differ
diff --git a/Assets/arts/spines/characters/m10029/m10029.png.meta b/Assets/arts/spines/characters/m10029/m10029.png.meta
new file mode 100644
index 000000000..93de663d6
--- /dev/null
+++ b/Assets/arts/spines/characters/m10029/m10029.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 91bbc3b09dcd37141a9948eaa1f725b1
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/spines/characters/m10029.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10029/m10029.skel.bytes b/Assets/arts/spines/characters/m10029/m10029.skel.bytes
new file mode 100644
index 000000000..7b728ea21
Binary files /dev/null and b/Assets/arts/spines/characters/m10029/m10029.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10029/m10029.skel.bytes.meta b/Assets/arts/spines/characters/m10029/m10029.skel.bytes.meta
new file mode 100644
index 000000000..f61ba8314
--- /dev/null
+++ b/Assets/arts/spines/characters/m10029/m10029.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 42350c4c142f6004f84fb3e9c7a34a37
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName: arts/spines/characters/m10029.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10029/m10029_atlas.asset b/Assets/arts/spines/characters/m10029/m10029_atlas.asset
new file mode 100644
index 000000000..04c44d13b
--- /dev/null
+++ b/Assets/arts/spines/characters/m10029/m10029_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m10029_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: c1f67fbcdb956f04a91804963fb348b1, type: 3}
+ materials:
+ - {fileID: 2100000, guid: 53f9f778a001274419a6a5583b424cd9, type: 2}
diff --git a/Assets/arts/spines/characters/m10029/m10029_atlas.asset.meta b/Assets/arts/spines/characters/m10029/m10029_atlas.asset.meta
new file mode 100644
index 000000000..26dfea911
--- /dev/null
+++ b/Assets/arts/spines/characters/m10029/m10029_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 70cb05751ac9b524a948bd9141d07215
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/m10029.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10029/m10029_material.mat b/Assets/arts/spines/characters/m10029/m10029_material.mat
new file mode 100644
index 000000000..120596b21
--- /dev/null
+++ b/Assets/arts/spines/characters/m10029/m10029_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m10029_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 91bbc3b09dcd37141a9948eaa1f725b1, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m10029/m10029_material.mat.meta b/Assets/arts/spines/characters/m10029/m10029_material.mat.meta
new file mode 100644
index 000000000..c282bf0ef
--- /dev/null
+++ b/Assets/arts/spines/characters/m10029/m10029_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 53f9f778a001274419a6a5583b424cd9
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName: arts/spines/characters/m10029.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10029/m10029_skeletondata.asset b/Assets/arts/spines/characters/m10029/m10029_skeletondata.asset
new file mode 100644
index 000000000..cf3db396d
--- /dev/null
+++ b/Assets/arts/spines/characters/m10029/m10029_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m10029_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: 70cb05751ac9b524a948bd9141d07215, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 42350c4c142f6004f84fb3e9c7a34a37, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m10029/m10029_skeletondata.asset.meta b/Assets/arts/spines/characters/m10029/m10029_skeletondata.asset.meta
new file mode 100644
index 000000000..50efec30e
--- /dev/null
+++ b/Assets/arts/spines/characters/m10029/m10029_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: b5843962c098910409777ac0d686c5dd
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/m10029.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10030.meta b/Assets/arts/spines/characters/m10030.meta
new file mode 100644
index 000000000..d8996e62c
--- /dev/null
+++ b/Assets/arts/spines/characters/m10030.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 049f02213768af74188660b02a023593
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10030/m10030.atlas.txt b/Assets/arts/spines/characters/m10030/m10030.atlas.txt
new file mode 100644
index 000000000..760011fa4
--- /dev/null
+++ b/Assets/arts/spines/characters/m10030/m10030.atlas.txt
@@ -0,0 +1,63 @@
+m10030.png
+size:512,512
+filter:Linear,Linear
+clothes_1
+bounds:2,32,83,58
+offsets:1,1,85,60
+clothes_2
+bounds:87,44,37,46
+clothes_3
+bounds:120,172,41,43
+offsets:1,1,43,45
+clothes_4
+bounds:330,404,52,43
+offsets:1,1,54,45
+rotate:90
+clothes_5
+bounds:2,167,143,116
+rotate:90
+eye
+bounds:2,6,53,24
+offsets:1,1,55,26
+eye_xuanyun
+bounds:447,405,22,22
+hair
+bounds:2,92,109,73
+hand_L
+bounds:447,429,35,54
+offsets:1,1,37,56
+rotate:90
+hand_R
+bounds:247,412,44,81
+rotate:90
+head
+bounds:145,323,94,81
+offsets:1,1,96,83
+hit_yan1
+bounds:113,24,16,18
+hit_yan2
+bounds:471,407,20,20
+hit_yan3
+bounds:57,2,28,28
+leg_L
+bounds:373,462,46,70
+rotate:90
+leg_R
+bounds:375,414,46,70
+rotate:90
+spine
+bounds:145,406,100,102
+upperarm_L_1
+bounds:445,466,42,60
+offsets:1,1,44,62
+rotate:90
+weapon_1
+bounds:247,458,124,50
+offsets:1,1,126,53
+yingzi
+bounds:120,217,93,22
+rotate:90
+yingzi2
+bounds:2,312,141,196
+zui
+bounds:87,10,24,32
diff --git a/Assets/arts/spines/characters/m10030/m10030.atlas.txt.meta b/Assets/arts/spines/characters/m10030/m10030.atlas.txt.meta
new file mode 100644
index 000000000..82ac58eef
--- /dev/null
+++ b/Assets/arts/spines/characters/m10030/m10030.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 224e5d23da8f8204d8697eb4a4c7dc06
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName: arts/spines/characters/m10030.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10030/m10030.png b/Assets/arts/spines/characters/m10030/m10030.png
new file mode 100644
index 000000000..b146be0ce
Binary files /dev/null and b/Assets/arts/spines/characters/m10030/m10030.png differ
diff --git a/Assets/arts/spines/characters/m10030/m10030.png.meta b/Assets/arts/spines/characters/m10030/m10030.png.meta
new file mode 100644
index 000000000..b0a94c027
--- /dev/null
+++ b/Assets/arts/spines/characters/m10030/m10030.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: cd47b565eba2dd44b99dbf38c4b5199a
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/spines/characters/m10030.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10030/m10030.skel.bytes b/Assets/arts/spines/characters/m10030/m10030.skel.bytes
new file mode 100644
index 000000000..dcfbfac2f
Binary files /dev/null and b/Assets/arts/spines/characters/m10030/m10030.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10030/m10030.skel.bytes.meta b/Assets/arts/spines/characters/m10030/m10030.skel.bytes.meta
new file mode 100644
index 000000000..579c77451
--- /dev/null
+++ b/Assets/arts/spines/characters/m10030/m10030.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 9d9cd09edcf10764aa0ceff79c7d2b10
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName: arts/spines/characters/m10030.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10030/m10030_atlas.asset b/Assets/arts/spines/characters/m10030/m10030_atlas.asset
new file mode 100644
index 000000000..da0c6c8df
--- /dev/null
+++ b/Assets/arts/spines/characters/m10030/m10030_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m10030_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: 224e5d23da8f8204d8697eb4a4c7dc06, type: 3}
+ materials:
+ - {fileID: 2100000, guid: 35540c2c14b3cb64492a1fa7e7140f0a, type: 2}
diff --git a/Assets/arts/spines/characters/m10030/m10030_atlas.asset.meta b/Assets/arts/spines/characters/m10030/m10030_atlas.asset.meta
new file mode 100644
index 000000000..107992e8f
--- /dev/null
+++ b/Assets/arts/spines/characters/m10030/m10030_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 5f50ef866cfcef446ad1a0a9176908cc
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/m10030.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10030/m10030_material.mat b/Assets/arts/spines/characters/m10030/m10030_material.mat
new file mode 100644
index 000000000..5aef9d795
--- /dev/null
+++ b/Assets/arts/spines/characters/m10030/m10030_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m10030_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: cd47b565eba2dd44b99dbf38c4b5199a, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m10030/m10030_material.mat.meta b/Assets/arts/spines/characters/m10030/m10030_material.mat.meta
new file mode 100644
index 000000000..fbf39ad85
--- /dev/null
+++ b/Assets/arts/spines/characters/m10030/m10030_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 35540c2c14b3cb64492a1fa7e7140f0a
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName: arts/spines/characters/m10030.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10030/m10030_skeletondata.asset b/Assets/arts/spines/characters/m10030/m10030_skeletondata.asset
new file mode 100644
index 000000000..265eb3215
--- /dev/null
+++ b/Assets/arts/spines/characters/m10030/m10030_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m10030_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: 5f50ef866cfcef446ad1a0a9176908cc, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 9d9cd09edcf10764aa0ceff79c7d2b10, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m10030/m10030_skeletondata.asset.meta b/Assets/arts/spines/characters/m10030/m10030_skeletondata.asset.meta
new file mode 100644
index 000000000..4ca37d6d3
--- /dev/null
+++ b/Assets/arts/spines/characters/m10030/m10030_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 7727674b574c4eb4390d1919c99d9f55
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/m10030.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10031.meta b/Assets/arts/spines/characters/m10031.meta
new file mode 100644
index 000000000..fbbe41fab
--- /dev/null
+++ b/Assets/arts/spines/characters/m10031.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: fbb5c49fdbf2dbe46b6f913f33cc7764
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10031/m10031.atlas.txt b/Assets/arts/spines/characters/m10031/m10031.atlas.txt
new file mode 100644
index 000000000..952406777
--- /dev/null
+++ b/Assets/arts/spines/characters/m10031/m10031.atlas.txt
@@ -0,0 +1,63 @@
+m10031.png
+size:512,512
+filter:Linear,Linear
+clothes_1
+bounds:2,32,83,57
+offsets:1,1,85,59
+clothes_2
+bounds:87,43,36,46
+clothes_3
+bounds:120,171,41,43
+offsets:1,1,43,45
+clothes_4
+bounds:329,404,51,43
+offsets:1,1,53,45
+rotate:90
+clothes_5
+bounds:2,166,143,116
+rotate:90
+eye
+bounds:2,5,53,25
+offsets:1,1,55,27
+eye_xuanyun
+bounds:445,407,22,22
+hair
+bounds:2,91,109,73
+hand_L
+bounds:445,431,35,54
+offsets:1,1,37,56
+rotate:90
+hand_R
+bounds:247,411,44,80
+rotate:90
+head
+bounds:145,322,94,81
+offsets:1,1,96,83
+hit_yan1
+bounds:113,23,16,18
+hit_yan2
+bounds:469,409,20,20
+hit_yan3
+bounds:57,2,28,28
+leg_L
+bounds:372,462,45,69
+rotate:90
+leg_R
+bounds:374,415,45,69
+rotate:90
+spine
+bounds:145,405,100,102
+upperarm_L_1
+bounds:443,468,39,56
+offsets:1,1,41,58
+rotate:90
+weapon_1
+bounds:247,457,123,50
+offsets:1,1,125,52
+yingzi
+bounds:120,216,93,22
+rotate:90
+yingzi2
+bounds:2,311,141,196
+zui
+bounds:87,9,24,32
diff --git a/Assets/arts/spines/characters/m10031/m10031.atlas.txt.meta b/Assets/arts/spines/characters/m10031/m10031.atlas.txt.meta
new file mode 100644
index 000000000..7ef1f120d
--- /dev/null
+++ b/Assets/arts/spines/characters/m10031/m10031.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: a190f1be9ef61ac4797c5ec4d5cb9269
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName: arts/spines/characters/m10031.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10031/m10031.png b/Assets/arts/spines/characters/m10031/m10031.png
new file mode 100644
index 000000000..bce7ab205
Binary files /dev/null and b/Assets/arts/spines/characters/m10031/m10031.png differ
diff --git a/Assets/arts/spines/characters/m10031/m10031.png.meta b/Assets/arts/spines/characters/m10031/m10031.png.meta
new file mode 100644
index 000000000..3341e953d
--- /dev/null
+++ b/Assets/arts/spines/characters/m10031/m10031.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: da1bd075cd5daa64fa7b52b75d5003de
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/spines/characters/m10031.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10031/m10031.skel.bytes b/Assets/arts/spines/characters/m10031/m10031.skel.bytes
new file mode 100644
index 000000000..2b1461a6d
Binary files /dev/null and b/Assets/arts/spines/characters/m10031/m10031.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10031/m10031.skel.bytes.meta b/Assets/arts/spines/characters/m10031/m10031.skel.bytes.meta
new file mode 100644
index 000000000..154025cd6
--- /dev/null
+++ b/Assets/arts/spines/characters/m10031/m10031.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: a8ddef216b0625d4eb3033b3d0a54bf1
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName: arts/spines/characters/m10031.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10031/m10031_atlas.asset b/Assets/arts/spines/characters/m10031/m10031_atlas.asset
new file mode 100644
index 000000000..357c76e9c
--- /dev/null
+++ b/Assets/arts/spines/characters/m10031/m10031_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m10031_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: a190f1be9ef61ac4797c5ec4d5cb9269, type: 3}
+ materials:
+ - {fileID: 2100000, guid: 56e0d9e4f9f304e4d89f2982f34624da, type: 2}
diff --git a/Assets/arts/spines/characters/m10031/m10031_atlas.asset.meta b/Assets/arts/spines/characters/m10031/m10031_atlas.asset.meta
new file mode 100644
index 000000000..9ffd4250b
--- /dev/null
+++ b/Assets/arts/spines/characters/m10031/m10031_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: c5c991a16da0fb544a593e8d3254ff96
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/m10031.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10031/m10031_material.mat b/Assets/arts/spines/characters/m10031/m10031_material.mat
new file mode 100644
index 000000000..ed2492cc5
--- /dev/null
+++ b/Assets/arts/spines/characters/m10031/m10031_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m10031_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: da1bd075cd5daa64fa7b52b75d5003de, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m10031/m10031_material.mat.meta b/Assets/arts/spines/characters/m10031/m10031_material.mat.meta
new file mode 100644
index 000000000..d36439439
--- /dev/null
+++ b/Assets/arts/spines/characters/m10031/m10031_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 56e0d9e4f9f304e4d89f2982f34624da
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName: arts/spines/characters/m10031.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10031/m10031_skeletondata.asset b/Assets/arts/spines/characters/m10031/m10031_skeletondata.asset
new file mode 100644
index 000000000..a7b5425d1
--- /dev/null
+++ b/Assets/arts/spines/characters/m10031/m10031_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m10031_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: c5c991a16da0fb544a593e8d3254ff96, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: a8ddef216b0625d4eb3033b3d0a54bf1, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m10031/m10031_skeletondata.asset.meta b/Assets/arts/spines/characters/m10031/m10031_skeletondata.asset.meta
new file mode 100644
index 000000000..fa38f6fdf
--- /dev/null
+++ b/Assets/arts/spines/characters/m10031/m10031_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 4d628dfbf0c34f5438c5a683c2776cc1
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/m10031.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10032.meta b/Assets/arts/spines/characters/m10032.meta
new file mode 100644
index 000000000..ffd8dae00
--- /dev/null
+++ b/Assets/arts/spines/characters/m10032.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 18688d813ca383d4fb1fe1059e54ad80
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10032/m10032.atlas.txt b/Assets/arts/spines/characters/m10032/m10032.atlas.txt
new file mode 100644
index 000000000..07995c17d
--- /dev/null
+++ b/Assets/arts/spines/characters/m10032/m10032.atlas.txt
@@ -0,0 +1,54 @@
+m10032.png
+size:512,512
+filter:Linear,Linear
+clothes_1
+bounds:2,208,84,61
+offsets:1,1,86,63
+clothes_2
+bounds:2,370,116,111
+eye
+bounds:120,377,53,25
+offsets:1,1,55,27
+eye_xuanyun
+bounds:2,89,22,22
+hair_1
+bounds:2,271,103,97
+hair_2
+bounds:356,446,35,35
+offsets:1,1,37,37
+hand_L
+bounds:211,405,31,27
+offsets:1,1,33,29
+hand_R
+bounds:393,451,27,30
+offsets:1,1,29,32
+head
+bounds:120,404,89,77
+offsets:1,1,91,79
+hit_yan1
+bounds:88,251,16,18
+hit_yan2
+bounds:175,382,20,20
+hit_yan3
+bounds:422,453,28,28
+leg_L
+bounds:244,405,29,27
+offsets:1,1,31,29
+leg_R
+bounds:452,454,29,27
+offsets:1,1,31,29
+upperarm_L_1
+bounds:26,141,48,65
+upperarm_R_01
+bounds:296,428,53,58
+rotate:90
+weapon_1
+bounds:211,434,47,83
+offsets:1,1,49,85
+rotate:90
+yingzi
+bounds:2,113,93,22
+rotate:90
+zui
+bounds:26,115,24,32
+rotate:90
diff --git a/Assets/arts/spines/characters/m10032/m10032.atlas.txt.meta b/Assets/arts/spines/characters/m10032/m10032.atlas.txt.meta
new file mode 100644
index 000000000..2729034bb
--- /dev/null
+++ b/Assets/arts/spines/characters/m10032/m10032.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 06f21e2b9f78fc94bb0149ba4863a877
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName: arts/spines/characters/m10032.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10032/m10032.png b/Assets/arts/spines/characters/m10032/m10032.png
new file mode 100644
index 000000000..f1798439f
Binary files /dev/null and b/Assets/arts/spines/characters/m10032/m10032.png differ
diff --git a/Assets/arts/spines/characters/m10032/m10032.png.meta b/Assets/arts/spines/characters/m10032/m10032.png.meta
new file mode 100644
index 000000000..a1a0fbc42
--- /dev/null
+++ b/Assets/arts/spines/characters/m10032/m10032.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: cc0e9558257d9e043ad7889fc2146c22
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/spines/characters/m10032.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10032/m10032.skel.bytes b/Assets/arts/spines/characters/m10032/m10032.skel.bytes
new file mode 100644
index 000000000..59a0a8070
Binary files /dev/null and b/Assets/arts/spines/characters/m10032/m10032.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10032/m10032.skel.bytes.meta b/Assets/arts/spines/characters/m10032/m10032.skel.bytes.meta
new file mode 100644
index 000000000..0a33959fe
--- /dev/null
+++ b/Assets/arts/spines/characters/m10032/m10032.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 423f51d76aabf7f42bed80bd9ee88e5d
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName: arts/spines/characters/m10032.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10032/m10032_atlas.asset b/Assets/arts/spines/characters/m10032/m10032_atlas.asset
new file mode 100644
index 000000000..1f25e9a3f
--- /dev/null
+++ b/Assets/arts/spines/characters/m10032/m10032_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m10032_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: 06f21e2b9f78fc94bb0149ba4863a877, type: 3}
+ materials:
+ - {fileID: 2100000, guid: 5e393db89d95d8446a7f57bd9db7d440, type: 2}
diff --git a/Assets/arts/spines/characters/m10032/m10032_atlas.asset.meta b/Assets/arts/spines/characters/m10032/m10032_atlas.asset.meta
new file mode 100644
index 000000000..8fd39cde4
--- /dev/null
+++ b/Assets/arts/spines/characters/m10032/m10032_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: cafad16d2234dcd4ea57a03e2dcea04b
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/m10032.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10032/m10032_material.mat b/Assets/arts/spines/characters/m10032/m10032_material.mat
new file mode 100644
index 000000000..d428a63c9
--- /dev/null
+++ b/Assets/arts/spines/characters/m10032/m10032_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m10032_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: cc0e9558257d9e043ad7889fc2146c22, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m10032/m10032_material.mat.meta b/Assets/arts/spines/characters/m10032/m10032_material.mat.meta
new file mode 100644
index 000000000..619df17e3
--- /dev/null
+++ b/Assets/arts/spines/characters/m10032/m10032_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 5e393db89d95d8446a7f57bd9db7d440
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName: arts/spines/characters/m10032.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10032/m10032_skeletondata.asset b/Assets/arts/spines/characters/m10032/m10032_skeletondata.asset
new file mode 100644
index 000000000..348e51273
--- /dev/null
+++ b/Assets/arts/spines/characters/m10032/m10032_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m10032_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: cafad16d2234dcd4ea57a03e2dcea04b, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 423f51d76aabf7f42bed80bd9ee88e5d, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m10032/m10032_skeletondata.asset.meta b/Assets/arts/spines/characters/m10032/m10032_skeletondata.asset.meta
new file mode 100644
index 000000000..70a51b012
--- /dev/null
+++ b/Assets/arts/spines/characters/m10032/m10032_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: aab9a29d803dc614990223ee9c8cb04e
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/m10032.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10033.meta b/Assets/arts/spines/characters/m10033.meta
new file mode 100644
index 000000000..2248655ed
--- /dev/null
+++ b/Assets/arts/spines/characters/m10033.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: a2022b460e2c5514f952ca49e84d0e5f
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10033/m10033.atlas.txt b/Assets/arts/spines/characters/m10033/m10033.atlas.txt
new file mode 100644
index 000000000..cdecf6453
--- /dev/null
+++ b/Assets/arts/spines/characters/m10033/m10033.atlas.txt
@@ -0,0 +1,60 @@
+m10033.png
+size:256,256
+filter:Linear,Linear
+clothes_1
+bounds:144,89,83,61
+offsets:1,1,85,63
+clothes_2
+bounds:2,143,116,111
+eye
+bounds:219,3,53,25
+offsets:1,1,55,27
+rotate:90
+eye_xuanyun
+bounds:144,65,22,22
+hair_1
+bounds:120,152,102,97
+rotate:90
+hair_2
+bounds:81,106,35,35
+offsets:1,1,37,37
+hand_L
+bounds:81,43,31,27
+offsets:1,1,33,29
+rotate:90
+hand_R
+bounds:219,58,27,29
+offsets:1,1,29,31
+head
+bounds:2,52,89,77
+offsets:1,1,91,79
+rotate:90
+hit_yan1
+bounds:219,155,16,18
+rotate:90
+hit_yan2
+bounds:219,173,20,20
+hit_yan3
+bounds:81,76,28,28
+leg_L
+bounds:219,195,28,27
+offsets:1,1,30,29
+rotate:90
+leg_R
+bounds:219,225,29,27
+offsets:1,1,31,29
+rotate:90
+upperarm_L_1
+bounds:2,2,48,65
+rotate:90
+upperarm_R_01
+bounds:110,2,53,57
+rotate:90
+weapon_1
+bounds:169,4,48,83
+offsets:1,1,50,85
+yingzi
+bounds:120,57,93,22
+rotate:90
+zui
+bounds:69,9,24,32
diff --git a/Assets/arts/spines/characters/m10033/m10033.atlas.txt.meta b/Assets/arts/spines/characters/m10033/m10033.atlas.txt.meta
new file mode 100644
index 000000000..63116a201
--- /dev/null
+++ b/Assets/arts/spines/characters/m10033/m10033.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: b7f21ab898b195a49bd2163ee182991d
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName: arts/spines/characters/m10033.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10033/m10033.png b/Assets/arts/spines/characters/m10033/m10033.png
new file mode 100644
index 000000000..769e61c59
Binary files /dev/null and b/Assets/arts/spines/characters/m10033/m10033.png differ
diff --git a/Assets/arts/spines/characters/m10033/m10033.png.meta b/Assets/arts/spines/characters/m10033/m10033.png.meta
new file mode 100644
index 000000000..73d502069
--- /dev/null
+++ b/Assets/arts/spines/characters/m10033/m10033.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: d104039d2f55fa54f8292e236b701f9f
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/spines/characters/m10033.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10033/m10033.skel.bytes b/Assets/arts/spines/characters/m10033/m10033.skel.bytes
new file mode 100644
index 000000000..7f8125f6f
Binary files /dev/null and b/Assets/arts/spines/characters/m10033/m10033.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10033/m10033.skel.bytes.meta b/Assets/arts/spines/characters/m10033/m10033.skel.bytes.meta
new file mode 100644
index 000000000..c81c1ea60
--- /dev/null
+++ b/Assets/arts/spines/characters/m10033/m10033.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 0f897aaffbeceb349be21cd4dbe342eb
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName: arts/spines/characters/m10033.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10033/m10033_atlas.asset b/Assets/arts/spines/characters/m10033/m10033_atlas.asset
new file mode 100644
index 000000000..f95e3c6dd
--- /dev/null
+++ b/Assets/arts/spines/characters/m10033/m10033_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m10033_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: b7f21ab898b195a49bd2163ee182991d, type: 3}
+ materials:
+ - {fileID: 2100000, guid: 8f9556733ea8f434a8009f9bd47b4e63, type: 2}
diff --git a/Assets/arts/spines/characters/m10033/m10033_atlas.asset.meta b/Assets/arts/spines/characters/m10033/m10033_atlas.asset.meta
new file mode 100644
index 000000000..3c567a0c2
--- /dev/null
+++ b/Assets/arts/spines/characters/m10033/m10033_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 14524c9e5b5c34646ae9279012340651
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/m10033.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10033/m10033_material.mat b/Assets/arts/spines/characters/m10033/m10033_material.mat
new file mode 100644
index 000000000..20c66057c
--- /dev/null
+++ b/Assets/arts/spines/characters/m10033/m10033_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m10033_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: d104039d2f55fa54f8292e236b701f9f, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m10033/m10033_material.mat.meta b/Assets/arts/spines/characters/m10033/m10033_material.mat.meta
new file mode 100644
index 000000000..92e6efc56
--- /dev/null
+++ b/Assets/arts/spines/characters/m10033/m10033_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 8f9556733ea8f434a8009f9bd47b4e63
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName: arts/spines/characters/m10033.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10033/m10033_skeletondata.asset b/Assets/arts/spines/characters/m10033/m10033_skeletondata.asset
new file mode 100644
index 000000000..7dee9804a
--- /dev/null
+++ b/Assets/arts/spines/characters/m10033/m10033_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m10033_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: 14524c9e5b5c34646ae9279012340651, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 0f897aaffbeceb349be21cd4dbe342eb, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m10033/m10033_skeletondata.asset.meta b/Assets/arts/spines/characters/m10033/m10033_skeletondata.asset.meta
new file mode 100644
index 000000000..58aeef7ed
--- /dev/null
+++ b/Assets/arts/spines/characters/m10033/m10033_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: c5cbf032066cf16448d6ccf5f29dbf37
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/m10033.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10034.meta b/Assets/arts/spines/characters/m10034.meta
new file mode 100644
index 000000000..05d7f9fea
--- /dev/null
+++ b/Assets/arts/spines/characters/m10034.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 84fa6a3fb69718d4eb521329800ca7fe
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10034/m10034.atlas.txt b/Assets/arts/spines/characters/m10034/m10034.atlas.txt
new file mode 100644
index 000000000..3ea75e1cc
--- /dev/null
+++ b/Assets/arts/spines/characters/m10034/m10034.atlas.txt
@@ -0,0 +1,45 @@
+m10034.png
+size:512,512
+filter:Linear,Linear
+eye
+bounds:214,403,53,24
+eye_xuanyun
+bounds:55,194,22,22
+gutou
+bounds:377,457,70,53
+hair
+bounds:102,429,98,81
+hand_L
+bounds:160,394,33,52
+rotate:90
+hand_R
+bounds:2,5,41,79
+head
+bounds:202,429,94,81
+hit_yan1
+bounds:494,492,16,18
+kulou
+bounds:298,448,77,62
+offsets:0,1,77,63
+leg_L
+bounds:449,442,43,68
+leg_R
+bounds:298,403,43,68
+rotate:90
+pelvis
+bounds:2,86,97,46
+rotate:90
+spine_1
+bounds:2,412,98,98
+upperarm_L_1
+bounds:102,389,56,38
+upperarm_L_2
+bounds:91,353,41,34
+weapon_1
+bounds:2,185,126,51
+rotate:90
+weapon_2
+bounds:2,313,87,97
+yingzi
+bounds:55,218,93,22
+rotate:90
diff --git a/Assets/arts/spines/characters/m10034/m10034.atlas.txt.meta b/Assets/arts/spines/characters/m10034/m10034.atlas.txt.meta
new file mode 100644
index 000000000..89297b0db
--- /dev/null
+++ b/Assets/arts/spines/characters/m10034/m10034.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 18b75fefa185fe34cb481c692f1c2a21
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10034/m10034.png b/Assets/arts/spines/characters/m10034/m10034.png
new file mode 100644
index 000000000..756b45542
Binary files /dev/null and b/Assets/arts/spines/characters/m10034/m10034.png differ
diff --git a/Assets/arts/spines/characters/m10034/m10034.png.meta b/Assets/arts/spines/characters/m10034/m10034.png.meta
new file mode 100644
index 000000000..84b4b3164
--- /dev/null
+++ b/Assets/arts/spines/characters/m10034/m10034.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 32b2194b46ab97042928d2f5eb216efd
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 0
+ wrapV: 0
+ wrapW: 0
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 1
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 1
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10034/m10034.skel.bytes b/Assets/arts/spines/characters/m10034/m10034.skel.bytes
new file mode 100644
index 000000000..055415450
Binary files /dev/null and b/Assets/arts/spines/characters/m10034/m10034.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10034/m10034.skel.bytes.meta b/Assets/arts/spines/characters/m10034/m10034.skel.bytes.meta
new file mode 100644
index 000000000..885dce9d3
--- /dev/null
+++ b/Assets/arts/spines/characters/m10034/m10034.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: e8af0c4c886871b4aabdeab78140d2d7
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10034/m10034_atlas.asset b/Assets/arts/spines/characters/m10034/m10034_atlas.asset
new file mode 100644
index 000000000..f0dfade05
--- /dev/null
+++ b/Assets/arts/spines/characters/m10034/m10034_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m10034_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: 18b75fefa185fe34cb481c692f1c2a21, type: 3}
+ materials:
+ - {fileID: 2100000, guid: 4000756b35c710743837cb1d04f53a6f, type: 2}
diff --git a/Assets/arts/spines/characters/m10034/m10034_atlas.asset.meta b/Assets/arts/spines/characters/m10034/m10034_atlas.asset.meta
new file mode 100644
index 000000000..f9eb7faa4
--- /dev/null
+++ b/Assets/arts/spines/characters/m10034/m10034_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: f8f275b478741c34d92e817df0af73b0
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10034/m10034_material.mat b/Assets/arts/spines/characters/m10034/m10034_material.mat
new file mode 100644
index 000000000..dddb2553f
--- /dev/null
+++ b/Assets/arts/spines/characters/m10034/m10034_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m10034_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 32b2194b46ab97042928d2f5eb216efd, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m10034/m10034_material.mat.meta b/Assets/arts/spines/characters/m10034/m10034_material.mat.meta
new file mode 100644
index 000000000..1a261c191
--- /dev/null
+++ b/Assets/arts/spines/characters/m10034/m10034_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 4000756b35c710743837cb1d04f53a6f
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10034/m10034_skeletondata.asset b/Assets/arts/spines/characters/m10034/m10034_skeletondata.asset
new file mode 100644
index 000000000..bfbcddf0e
--- /dev/null
+++ b/Assets/arts/spines/characters/m10034/m10034_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m10034_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: f8f275b478741c34d92e817df0af73b0, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: e8af0c4c886871b4aabdeab78140d2d7, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m10034/m10034_skeletondata.asset.meta b/Assets/arts/spines/characters/m10034/m10034_skeletondata.asset.meta
new file mode 100644
index 000000000..622a5c907
--- /dev/null
+++ b/Assets/arts/spines/characters/m10034/m10034_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: ab45e88c50ff8214394dd7974f2c29fa
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10035.meta b/Assets/arts/spines/characters/m10035.meta
new file mode 100644
index 000000000..6e84af3cd
--- /dev/null
+++ b/Assets/arts/spines/characters/m10035.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 47c23c99c632777459a9f470843ff415
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10035/m10035.atlas.txt b/Assets/arts/spines/characters/m10035/m10035.atlas.txt
new file mode 100644
index 000000000..c44ef8367
--- /dev/null
+++ b/Assets/arts/spines/characters/m10035/m10035.atlas.txt
@@ -0,0 +1,45 @@
+m10035.png
+size:512,512
+filter:Linear,Linear
+eye
+bounds:214,403,53,24
+eye_xuanyun
+bounds:55,194,22,22
+gutou
+bounds:377,457,70,53
+hair
+bounds:102,429,98,81
+hand_L
+bounds:160,394,33,52
+rotate:90
+hand_R
+bounds:2,5,41,79
+head
+bounds:202,429,94,81
+hit_yan1
+bounds:494,492,16,18
+kulou
+bounds:298,448,77,62
+offsets:0,1,77,63
+leg_L
+bounds:449,442,43,68
+leg_R
+bounds:298,403,43,68
+rotate:90
+pelvis
+bounds:2,86,97,46
+rotate:90
+spine_1
+bounds:2,412,98,98
+upperarm_L_1
+bounds:102,389,56,38
+upperarm_L_2
+bounds:92,353,41,34
+weapon_1
+bounds:2,185,126,51
+rotate:90
+weapon_2
+bounds:2,313,88,97
+yingzi
+bounds:55,218,93,22
+rotate:90
diff --git a/Assets/arts/spines/characters/m10035/m10035.atlas.txt.meta b/Assets/arts/spines/characters/m10035/m10035.atlas.txt.meta
new file mode 100644
index 000000000..fcddd314d
--- /dev/null
+++ b/Assets/arts/spines/characters/m10035/m10035.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: e398d7f9ec8813c47b0b36ee5a13cd77
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10035/m10035.png b/Assets/arts/spines/characters/m10035/m10035.png
new file mode 100644
index 000000000..515598b99
Binary files /dev/null and b/Assets/arts/spines/characters/m10035/m10035.png differ
diff --git a/Assets/arts/spines/characters/m10035/m10035.png.meta b/Assets/arts/spines/characters/m10035/m10035.png.meta
new file mode 100644
index 000000000..1f9c6e76f
--- /dev/null
+++ b/Assets/arts/spines/characters/m10035/m10035.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 566ce578e831b9f4c905dc7a1bed116b
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 0
+ wrapV: 0
+ wrapW: 0
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 1
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 1
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10035/m10035.skel.bytes b/Assets/arts/spines/characters/m10035/m10035.skel.bytes
new file mode 100644
index 000000000..cb1e0d054
Binary files /dev/null and b/Assets/arts/spines/characters/m10035/m10035.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10035/m10035.skel.bytes.meta b/Assets/arts/spines/characters/m10035/m10035.skel.bytes.meta
new file mode 100644
index 000000000..da8555f38
--- /dev/null
+++ b/Assets/arts/spines/characters/m10035/m10035.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: ba7b59f20e14f2b4a9d99203480bbb10
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10035/m10035_atlas.asset b/Assets/arts/spines/characters/m10035/m10035_atlas.asset
new file mode 100644
index 000000000..d676973f0
--- /dev/null
+++ b/Assets/arts/spines/characters/m10035/m10035_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m10035_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: e398d7f9ec8813c47b0b36ee5a13cd77, type: 3}
+ materials:
+ - {fileID: 2100000, guid: 47cf8b1806998cc42aac0f8c0cdfc9e5, type: 2}
diff --git a/Assets/arts/spines/characters/m10035/m10035_atlas.asset.meta b/Assets/arts/spines/characters/m10035/m10035_atlas.asset.meta
new file mode 100644
index 000000000..eadfaaa06
--- /dev/null
+++ b/Assets/arts/spines/characters/m10035/m10035_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: f5a33c5c37dcf9c4986ba7130031065d
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10035/m10035_material.mat b/Assets/arts/spines/characters/m10035/m10035_material.mat
new file mode 100644
index 000000000..7c3fa4543
--- /dev/null
+++ b/Assets/arts/spines/characters/m10035/m10035_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m10035_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 566ce578e831b9f4c905dc7a1bed116b, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m10035/m10035_material.mat.meta b/Assets/arts/spines/characters/m10035/m10035_material.mat.meta
new file mode 100644
index 000000000..6dd09a7c7
--- /dev/null
+++ b/Assets/arts/spines/characters/m10035/m10035_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 47cf8b1806998cc42aac0f8c0cdfc9e5
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10035/m10035_skeletondata.asset b/Assets/arts/spines/characters/m10035/m10035_skeletondata.asset
new file mode 100644
index 000000000..840995d5a
--- /dev/null
+++ b/Assets/arts/spines/characters/m10035/m10035_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m10035_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: f5a33c5c37dcf9c4986ba7130031065d, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: ba7b59f20e14f2b4a9d99203480bbb10, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m10035/m10035_skeletondata.asset.meta b/Assets/arts/spines/characters/m10035/m10035_skeletondata.asset.meta
new file mode 100644
index 000000000..edfd0a4a5
--- /dev/null
+++ b/Assets/arts/spines/characters/m10035/m10035_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 4dd75b6dd42486245af83a5a7a9787f2
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10036.meta b/Assets/arts/spines/characters/m10036.meta
new file mode 100644
index 000000000..ad88dbe98
--- /dev/null
+++ b/Assets/arts/spines/characters/m10036.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: e70411016b0d7a34e8007a1660d91065
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10036/m10036.atlas.txt b/Assets/arts/spines/characters/m10036/m10036.atlas.txt
new file mode 100644
index 000000000..2ffff7ed4
--- /dev/null
+++ b/Assets/arts/spines/characters/m10036/m10036.atlas.txt
@@ -0,0 +1,48 @@
+m10036.png
+size:512,512
+filter:Linear,Linear
+clothes_1
+bounds:96,312,63,46
+clothes_2
+bounds:2,275,92,106
+eye
+bounds:96,285,53,25
+eye_xuanyun
+bounds:215,383,22,22
+gutou
+bounds:2,13,70,53
+rotate:90
+hair
+bounds:410,432,94,72
+hand_L
+bounds:71,160,46,43
+hand_R
+bounds:181,371,32,32
+head
+bounds:314,423,94,81
+hit_yan1
+bounds:161,340,16,18
+kulou
+bounds:2,85,77,62
+offsets:0,1,77,63
+rotate:90
+leg_L
+bounds:71,205,43,68
+leg_R
+bounds:111,360,43,68
+rotate:90
+spine
+bounds:212,407,97,100
+rotate:90
+upperarm_L_1
+bounds:66,105,53,52
+rotate:90
+upperarm_R_1
+bounds:116,222,41,61
+weapon_1
+bounds:111,405,99,99
+weapon_2
+bounds:2,164,109,67
+rotate:90
+weapon_3
+bounds:2,383,107,121
diff --git a/Assets/arts/spines/characters/m10036/m10036.atlas.txt.meta b/Assets/arts/spines/characters/m10036/m10036.atlas.txt.meta
new file mode 100644
index 000000000..7d773657f
--- /dev/null
+++ b/Assets/arts/spines/characters/m10036/m10036.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 88f91a549d8821e428c5b26fde6e3215
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10036/m10036.png b/Assets/arts/spines/characters/m10036/m10036.png
new file mode 100644
index 000000000..344a75ecc
Binary files /dev/null and b/Assets/arts/spines/characters/m10036/m10036.png differ
diff --git a/Assets/arts/spines/characters/m10036/m10036.png.meta b/Assets/arts/spines/characters/m10036/m10036.png.meta
new file mode 100644
index 000000000..9867ce556
--- /dev/null
+++ b/Assets/arts/spines/characters/m10036/m10036.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 75a8a5f24dfe13c4581a94956d1e6287
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10036/m10036.skel.bytes b/Assets/arts/spines/characters/m10036/m10036.skel.bytes
new file mode 100644
index 000000000..6cb6261e2
Binary files /dev/null and b/Assets/arts/spines/characters/m10036/m10036.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10036/m10036.skel.bytes.meta b/Assets/arts/spines/characters/m10036/m10036.skel.bytes.meta
new file mode 100644
index 000000000..55b2a7f68
--- /dev/null
+++ b/Assets/arts/spines/characters/m10036/m10036.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 09a5c1c73c8c8fa49bc9702ef6fedec8
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10036/m10036_atlas.asset b/Assets/arts/spines/characters/m10036/m10036_atlas.asset
new file mode 100644
index 000000000..80ced9905
--- /dev/null
+++ b/Assets/arts/spines/characters/m10036/m10036_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m10036_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: 88f91a549d8821e428c5b26fde6e3215, type: 3}
+ materials:
+ - {fileID: 2100000, guid: a227767dbe34fe149b48c85d9baf4c99, type: 2}
diff --git a/Assets/arts/spines/characters/m10036/m10036_atlas.asset.meta b/Assets/arts/spines/characters/m10036/m10036_atlas.asset.meta
new file mode 100644
index 000000000..84d14a58f
--- /dev/null
+++ b/Assets/arts/spines/characters/m10036/m10036_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: bbe83d8551111944bbc0df97a365b16a
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10036/m10036_material.mat b/Assets/arts/spines/characters/m10036/m10036_material.mat
new file mode 100644
index 000000000..7c2b05488
--- /dev/null
+++ b/Assets/arts/spines/characters/m10036/m10036_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m10036_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 75a8a5f24dfe13c4581a94956d1e6287, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m10036/m10036_material.mat.meta b/Assets/arts/spines/characters/m10036/m10036_material.mat.meta
new file mode 100644
index 000000000..96f7403a1
--- /dev/null
+++ b/Assets/arts/spines/characters/m10036/m10036_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: a227767dbe34fe149b48c85d9baf4c99
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10036/m10036_skeletondata.asset b/Assets/arts/spines/characters/m10036/m10036_skeletondata.asset
new file mode 100644
index 000000000..878b651af
--- /dev/null
+++ b/Assets/arts/spines/characters/m10036/m10036_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m10036_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: bbe83d8551111944bbc0df97a365b16a, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 09a5c1c73c8c8fa49bc9702ef6fedec8, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m10036/m10036_skeletondata.asset.meta b/Assets/arts/spines/characters/m10036/m10036_skeletondata.asset.meta
new file mode 100644
index 000000000..d7cd56bb1
--- /dev/null
+++ b/Assets/arts/spines/characters/m10036/m10036_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: d119e705c9388c441a366cd6a602f012
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10037.meta b/Assets/arts/spines/characters/m10037.meta
new file mode 100644
index 000000000..0a65c8b44
--- /dev/null
+++ b/Assets/arts/spines/characters/m10037.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: e9dc4cbf8fce1d948856ec9a38202bf9
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10037/m10037.atlas.txt b/Assets/arts/spines/characters/m10037/m10037.atlas.txt
new file mode 100644
index 000000000..05fea415e
--- /dev/null
+++ b/Assets/arts/spines/characters/m10037/m10037.atlas.txt
@@ -0,0 +1,48 @@
+m10037.png
+size:512,512
+filter:Linear,Linear
+clothes_1
+bounds:96,307,63,46
+clothes_2
+bounds:2,271,92,106
+eye
+bounds:96,280,53,25
+eye_xuanyun
+bounds:215,377,22,22
+gutou
+bounds:2,9,70,53
+rotate:90
+hair
+bounds:407,428,93,72
+hand_L
+bounds:71,156,46,43
+hand_R
+bounds:181,365,33,32
+rotate:90
+head
+bounds:312,419,93,81
+hit_yan1
+bounds:312,401,16,18
+rotate:90
+kulou
+bounds:2,81,77,62
+offsets:0,1,77,63
+rotate:90
+leg_L
+bounds:71,201,42,68
+leg_R
+bounds:111,355,43,68
+rotate:90
+spine
+bounds:111,400,98,100
+upperarm_L_1
+bounds:66,102,52,52
+upperarm_R_1
+bounds:115,217,41,61
+weapon_1
+bounds:211,401,99,99
+weapon_2
+bounds:2,160,109,67
+rotate:90
+weapon_3
+bounds:2,379,107,121
diff --git a/Assets/arts/spines/characters/m10037/m10037.atlas.txt.meta b/Assets/arts/spines/characters/m10037/m10037.atlas.txt.meta
new file mode 100644
index 000000000..1c58fa25a
--- /dev/null
+++ b/Assets/arts/spines/characters/m10037/m10037.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 361d0dd2dd9cd1f43950ee9f5bcc0540
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10037/m10037.png b/Assets/arts/spines/characters/m10037/m10037.png
new file mode 100644
index 000000000..27ef7d549
Binary files /dev/null and b/Assets/arts/spines/characters/m10037/m10037.png differ
diff --git a/Assets/arts/spines/characters/m10037/m10037.png.meta b/Assets/arts/spines/characters/m10037/m10037.png.meta
new file mode 100644
index 000000000..4e022ae85
--- /dev/null
+++ b/Assets/arts/spines/characters/m10037/m10037.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 1518c92c1f62a2f49b008fee1499f9da
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10037/m10037.skel.bytes b/Assets/arts/spines/characters/m10037/m10037.skel.bytes
new file mode 100644
index 000000000..2e995d493
Binary files /dev/null and b/Assets/arts/spines/characters/m10037/m10037.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10037/m10037.skel.bytes.meta b/Assets/arts/spines/characters/m10037/m10037.skel.bytes.meta
new file mode 100644
index 000000000..4edd6a330
--- /dev/null
+++ b/Assets/arts/spines/characters/m10037/m10037.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 9a78357f479cbb740929b5b9c6611827
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10037/m10037_atlas.asset b/Assets/arts/spines/characters/m10037/m10037_atlas.asset
new file mode 100644
index 000000000..1d322339c
--- /dev/null
+++ b/Assets/arts/spines/characters/m10037/m10037_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m10037_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: 361d0dd2dd9cd1f43950ee9f5bcc0540, type: 3}
+ materials:
+ - {fileID: 2100000, guid: cf5d9c9f71a5fc8438373816aee684f6, type: 2}
diff --git a/Assets/arts/spines/characters/m10037/m10037_atlas.asset.meta b/Assets/arts/spines/characters/m10037/m10037_atlas.asset.meta
new file mode 100644
index 000000000..36d846c0c
--- /dev/null
+++ b/Assets/arts/spines/characters/m10037/m10037_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 35fc01de162381542858c04f1f922f8e
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10037/m10037_material.mat b/Assets/arts/spines/characters/m10037/m10037_material.mat
new file mode 100644
index 000000000..89012c91c
--- /dev/null
+++ b/Assets/arts/spines/characters/m10037/m10037_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m10037_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 1518c92c1f62a2f49b008fee1499f9da, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m10037/m10037_material.mat.meta b/Assets/arts/spines/characters/m10037/m10037_material.mat.meta
new file mode 100644
index 000000000..9d1a8958c
--- /dev/null
+++ b/Assets/arts/spines/characters/m10037/m10037_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: cf5d9c9f71a5fc8438373816aee684f6
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10037/m10037_skeletondata.asset b/Assets/arts/spines/characters/m10037/m10037_skeletondata.asset
new file mode 100644
index 000000000..9b7bc8007
--- /dev/null
+++ b/Assets/arts/spines/characters/m10037/m10037_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m10037_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: 35fc01de162381542858c04f1f922f8e, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 9a78357f479cbb740929b5b9c6611827, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m10037/m10037_skeletondata.asset.meta b/Assets/arts/spines/characters/m10037/m10037_skeletondata.asset.meta
new file mode 100644
index 000000000..b9d5a5bb0
--- /dev/null
+++ b/Assets/arts/spines/characters/m10037/m10037_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 2fe8c6f31aed21d4096286cb64612925
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10038.meta b/Assets/arts/spines/characters/m10038.meta
new file mode 100644
index 000000000..dbf76b4af
--- /dev/null
+++ b/Assets/arts/spines/characters/m10038.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 1a3fcf86d59ba404ea09c8d1ee3a153e
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10038/m10038.atlas.txt b/Assets/arts/spines/characters/m10038/m10038.atlas.txt
new file mode 100644
index 000000000..5949684ab
--- /dev/null
+++ b/Assets/arts/spines/characters/m10038/m10038.atlas.txt
@@ -0,0 +1,52 @@
+m10038.png
+size:256,256
+filter:Linear,Linear
+clothes
+bounds:222,143,44,32
+rotate:90
+eye_xuanyun
+bounds:154,7,20,20
+gutou
+bounds:167,58,70,53
+rotate:90
+hand_l
+bounds:135,29,30,35
+offsets:0,0,31,35
+hand_r
+bounds:96,29,37,35
+head
+bounds:2,49,98,84
+rotate:90
+hit_yan1
+bounds:193,171,16,18
+rotate:90
+kulou
+bounds:88,66,77,62
+offsets:0,1,77,63
+leg_l
+bounds:2,2,42,45
+leg_r
+bounds:46,4,43,48
+rotate:90
+spine
+bounds:193,189,59,65
+upperarm_l_01
+bounds:201,26,30,30
+upperarm_l_02
+bounds:124,9,18,28
+rotate:90
+upperarm_r_01
+bounds:167,30,26,32
+rotate:90
+upperarm_r_02
+bounds:96,3,24,26
+rotate:90
+weapon_1
+bounds:97,130,113,38
+weapon_2
+bounds:2,149,93,105
+weapon_3
+bounds:97,170,94,84
+yingzi
+bounds:222,58,83,19
+rotate:90
diff --git a/Assets/arts/spines/characters/m10038/m10038.atlas.txt.meta b/Assets/arts/spines/characters/m10038/m10038.atlas.txt.meta
new file mode 100644
index 000000000..5f41f3ecc
--- /dev/null
+++ b/Assets/arts/spines/characters/m10038/m10038.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 5e94e4d80c406d840bfcbef907aee174
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName: arts/spines/characters/m10038.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10038/m10038.png b/Assets/arts/spines/characters/m10038/m10038.png
new file mode 100644
index 000000000..0d98245ba
Binary files /dev/null and b/Assets/arts/spines/characters/m10038/m10038.png differ
diff --git a/Assets/arts/spines/characters/m10038/m10038.png.meta b/Assets/arts/spines/characters/m10038/m10038.png.meta
new file mode 100644
index 000000000..0d8fa61e3
--- /dev/null
+++ b/Assets/arts/spines/characters/m10038/m10038.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: c6fcee4fcd33b524996020ccbd750feb
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/spines/characters/m10038.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10038/m10038.skel.bytes b/Assets/arts/spines/characters/m10038/m10038.skel.bytes
new file mode 100644
index 000000000..05677fd1c
Binary files /dev/null and b/Assets/arts/spines/characters/m10038/m10038.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10038/m10038.skel.bytes.meta b/Assets/arts/spines/characters/m10038/m10038.skel.bytes.meta
new file mode 100644
index 000000000..7a5dc6040
--- /dev/null
+++ b/Assets/arts/spines/characters/m10038/m10038.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 574c686e1ef45a54eae6c19104d2208f
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName: arts/spines/characters/m10038.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10038/m10038_atlas.asset b/Assets/arts/spines/characters/m10038/m10038_atlas.asset
new file mode 100644
index 000000000..12f492489
--- /dev/null
+++ b/Assets/arts/spines/characters/m10038/m10038_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m10038_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: 5e94e4d80c406d840bfcbef907aee174, type: 3}
+ materials:
+ - {fileID: 2100000, guid: cf54e555009706c40bbdbff4b26ccb7b, type: 2}
diff --git a/Assets/arts/spines/characters/m10038/m10038_atlas.asset.meta b/Assets/arts/spines/characters/m10038/m10038_atlas.asset.meta
new file mode 100644
index 000000000..1bccc87c1
--- /dev/null
+++ b/Assets/arts/spines/characters/m10038/m10038_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 71eaf0f444c73d24c82bd12a2c4c128a
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/m10038.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10038/m10038_material.mat b/Assets/arts/spines/characters/m10038/m10038_material.mat
new file mode 100644
index 000000000..b3ff1641f
--- /dev/null
+++ b/Assets/arts/spines/characters/m10038/m10038_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m10038_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: c6fcee4fcd33b524996020ccbd750feb, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m10038/m10038_material.mat.meta b/Assets/arts/spines/characters/m10038/m10038_material.mat.meta
new file mode 100644
index 000000000..c7684a476
--- /dev/null
+++ b/Assets/arts/spines/characters/m10038/m10038_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: cf54e555009706c40bbdbff4b26ccb7b
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName: arts/spines/characters/m10038.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10038/m10038_skeletondata.asset b/Assets/arts/spines/characters/m10038/m10038_skeletondata.asset
new file mode 100644
index 000000000..0d8047408
--- /dev/null
+++ b/Assets/arts/spines/characters/m10038/m10038_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m10038_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: 71eaf0f444c73d24c82bd12a2c4c128a, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 574c686e1ef45a54eae6c19104d2208f, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m10038/m10038_skeletondata.asset.meta b/Assets/arts/spines/characters/m10038/m10038_skeletondata.asset.meta
new file mode 100644
index 000000000..f0c54c1e8
--- /dev/null
+++ b/Assets/arts/spines/characters/m10038/m10038_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: ec0e7c0c8f62da34a90cad064eebd4ce
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/m10038.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10039.meta b/Assets/arts/spines/characters/m10039.meta
new file mode 100644
index 000000000..74f1cbf0c
--- /dev/null
+++ b/Assets/arts/spines/characters/m10039.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: eb04d43f8042b3743b82ea011db4b0a8
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10039/m10039.atlas.txt b/Assets/arts/spines/characters/m10039/m10039.atlas.txt
new file mode 100644
index 000000000..1eefe88c0
--- /dev/null
+++ b/Assets/arts/spines/characters/m10039/m10039.atlas.txt
@@ -0,0 +1,48 @@
+m10039.png
+size:256,256
+filter:Linear,Linear
+clothes
+bounds:125,34,45,33
+eye_xuanyun
+bounds:228,162,20,20
+gutou
+bounds:193,184,70,53
+rotate:90
+hand_l
+bounds:172,36,31,34
+hand_r
+bounds:87,2,30,34
+offsets:0,1,30,35
+rotate:90
+head
+bounds:2,135,121,119
+hit_yan1
+bounds:191,135,16,18
+jianjia
+bounds:170,72,43,35
+rotate:90
+kulou
+bounds:2,33,77,62
+offsets:0,1,77,63
+leg_l
+bounds:125,69,43,46
+leg_r
+bounds:81,46,42,49
+spine
+bounds:125,117,59,64
+rotate:90
+upperarm_l_01
+bounds:193,155,27,33
+rotate:90
+upperarm_l_02
+bounds:123,2,18,30
+upperarm_r_01
+bounds:172,2,25,32
+upperarm_r_02
+bounds:143,2,16,30
+weapon_1
+bounds:2,97,113,36
+weapon_2
+bounds:125,178,66,76
+yingzi
+bounds:2,12,83,19
diff --git a/Assets/arts/spines/characters/m10039/m10039.atlas.txt.meta b/Assets/arts/spines/characters/m10039/m10039.atlas.txt.meta
new file mode 100644
index 000000000..85d42bc70
--- /dev/null
+++ b/Assets/arts/spines/characters/m10039/m10039.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: f59f6cbc8535edc418d8d19f4872ebaf
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName: arts/spines/characters/m10039.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10039/m10039.png b/Assets/arts/spines/characters/m10039/m10039.png
new file mode 100644
index 000000000..c68a5c326
Binary files /dev/null and b/Assets/arts/spines/characters/m10039/m10039.png differ
diff --git a/Assets/arts/spines/characters/m10039/m10039.png.meta b/Assets/arts/spines/characters/m10039/m10039.png.meta
new file mode 100644
index 000000000..7198b7bad
--- /dev/null
+++ b/Assets/arts/spines/characters/m10039/m10039.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: c7308ca87c66bea499f192715299ea92
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/spines/characters/m10039.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10039/m10039.skel.bytes b/Assets/arts/spines/characters/m10039/m10039.skel.bytes
new file mode 100644
index 000000000..15a45aa6e
Binary files /dev/null and b/Assets/arts/spines/characters/m10039/m10039.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10039/m10039.skel.bytes.meta b/Assets/arts/spines/characters/m10039/m10039.skel.bytes.meta
new file mode 100644
index 000000000..d9dbe2068
--- /dev/null
+++ b/Assets/arts/spines/characters/m10039/m10039.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 36a1f0abccb40a74e95f7f8cfb3feeba
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName: arts/spines/characters/m10039.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10039/m10039_atlas.asset b/Assets/arts/spines/characters/m10039/m10039_atlas.asset
new file mode 100644
index 000000000..c05d34d04
--- /dev/null
+++ b/Assets/arts/spines/characters/m10039/m10039_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m10039_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: f59f6cbc8535edc418d8d19f4872ebaf, type: 3}
+ materials:
+ - {fileID: 2100000, guid: b1a423fbd32a0774a985e8b1f4ce1b92, type: 2}
diff --git a/Assets/arts/spines/characters/m10039/m10039_atlas.asset.meta b/Assets/arts/spines/characters/m10039/m10039_atlas.asset.meta
new file mode 100644
index 000000000..23a05c474
--- /dev/null
+++ b/Assets/arts/spines/characters/m10039/m10039_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 6b78792aacd190c4589a5e358ec5cdc8
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/m10039.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10039/m10039_material.mat b/Assets/arts/spines/characters/m10039/m10039_material.mat
new file mode 100644
index 000000000..83411986d
--- /dev/null
+++ b/Assets/arts/spines/characters/m10039/m10039_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m10039_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: c7308ca87c66bea499f192715299ea92, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m10039/m10039_material.mat.meta b/Assets/arts/spines/characters/m10039/m10039_material.mat.meta
new file mode 100644
index 000000000..0563893b4
--- /dev/null
+++ b/Assets/arts/spines/characters/m10039/m10039_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: b1a423fbd32a0774a985e8b1f4ce1b92
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName: arts/spines/characters/m10039.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10039/m10039_skeletondata.asset b/Assets/arts/spines/characters/m10039/m10039_skeletondata.asset
new file mode 100644
index 000000000..939491192
--- /dev/null
+++ b/Assets/arts/spines/characters/m10039/m10039_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m10039_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: 6b78792aacd190c4589a5e358ec5cdc8, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 36a1f0abccb40a74e95f7f8cfb3feeba, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m10039/m10039_skeletondata.asset.meta b/Assets/arts/spines/characters/m10039/m10039_skeletondata.asset.meta
new file mode 100644
index 000000000..93c9a7790
--- /dev/null
+++ b/Assets/arts/spines/characters/m10039/m10039_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: b16da755d1607dd4187a2435542b4132
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/m10039.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10040.meta b/Assets/arts/spines/characters/m10040.meta
new file mode 100644
index 000000000..747be0ca2
--- /dev/null
+++ b/Assets/arts/spines/characters/m10040.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 1d1e1c976a6262e4a89b90ac3504b685
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10040/m10040.atlas.txt b/Assets/arts/spines/characters/m10040/m10040.atlas.txt
new file mode 100644
index 000000000..a61f02439
--- /dev/null
+++ b/Assets/arts/spines/characters/m10040/m10040.atlas.txt
@@ -0,0 +1,43 @@
+m10040.png
+size:256,256
+filter:Linear,Linear
+clothes _1
+bounds:117,39,55,30
+clothes_2
+bounds:2,63,92,83
+eye_xuanyun
+bounds:198,116,20,20
+gutou
+bounds:117,71,70,53
+hand_l
+bounds:198,138,29,30
+hand_r
+bounds:202,170,37,36
+head
+bounds:2,148,119,106
+hit_yan3
+bounds:144,9,28,28
+kulou
+bounds:123,192,77,62
+offsets:0,1,77,63
+leg_l
+bounds:202,208,42,46
+leg_r
+bounds:68,13,42,48
+spine
+bounds:2,2,59,64
+rotate:90
+upperarm_l_01
+bounds:112,8,30,29
+upperarm_l_02
+bounds:174,40,19,29
+upperarm_r_01
+bounds:229,137,25,31
+upperarm_r_02
+bounds:174,12,24,26
+weapon
+bounds:123,126,64,73
+rotate:90
+yingzi
+bounds:96,63,83,19
+rotate:90
diff --git a/Assets/arts/spines/characters/m10040/m10040.atlas.txt.meta b/Assets/arts/spines/characters/m10040/m10040.atlas.txt.meta
new file mode 100644
index 000000000..ac4dc0817
--- /dev/null
+++ b/Assets/arts/spines/characters/m10040/m10040.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 7da5b085a57cc5a489d79de8321160db
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10040/m10040.png b/Assets/arts/spines/characters/m10040/m10040.png
new file mode 100644
index 000000000..52afb3857
Binary files /dev/null and b/Assets/arts/spines/characters/m10040/m10040.png differ
diff --git a/Assets/arts/spines/characters/m10040/m10040.png.meta b/Assets/arts/spines/characters/m10040/m10040.png.meta
new file mode 100644
index 000000000..7d55cdbf8
--- /dev/null
+++ b/Assets/arts/spines/characters/m10040/m10040.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: c6f1fafbf2e5e044c841eb11f48390e4
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10040/m10040.skel.bytes b/Assets/arts/spines/characters/m10040/m10040.skel.bytes
new file mode 100644
index 000000000..12a40b157
Binary files /dev/null and b/Assets/arts/spines/characters/m10040/m10040.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10040/m10040.skel.bytes.meta b/Assets/arts/spines/characters/m10040/m10040.skel.bytes.meta
new file mode 100644
index 000000000..4d2385076
--- /dev/null
+++ b/Assets/arts/spines/characters/m10040/m10040.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 7e151e240abfb874cadb7b1d62c08593
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10040/m10040_atlas.asset b/Assets/arts/spines/characters/m10040/m10040_atlas.asset
new file mode 100644
index 000000000..f9fe49d17
--- /dev/null
+++ b/Assets/arts/spines/characters/m10040/m10040_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m10040_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: 7da5b085a57cc5a489d79de8321160db, type: 3}
+ materials:
+ - {fileID: 2100000, guid: f470193fcf9b3d8469cd6a5a77be7665, type: 2}
diff --git a/Assets/arts/spines/characters/m10040/m10040_atlas.asset.meta b/Assets/arts/spines/characters/m10040/m10040_atlas.asset.meta
new file mode 100644
index 000000000..910294520
--- /dev/null
+++ b/Assets/arts/spines/characters/m10040/m10040_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 65e46e0f0d3a68b43814aed0d2075706
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10040/m10040_material.mat b/Assets/arts/spines/characters/m10040/m10040_material.mat
new file mode 100644
index 000000000..d8c2d3aad
--- /dev/null
+++ b/Assets/arts/spines/characters/m10040/m10040_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m10040_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: c6f1fafbf2e5e044c841eb11f48390e4, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m10040/m10040_material.mat.meta b/Assets/arts/spines/characters/m10040/m10040_material.mat.meta
new file mode 100644
index 000000000..a08021943
--- /dev/null
+++ b/Assets/arts/spines/characters/m10040/m10040_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: f470193fcf9b3d8469cd6a5a77be7665
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10040/m10040_skeletondata.asset b/Assets/arts/spines/characters/m10040/m10040_skeletondata.asset
new file mode 100644
index 000000000..d4b44bb11
--- /dev/null
+++ b/Assets/arts/spines/characters/m10040/m10040_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m10040_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: 65e46e0f0d3a68b43814aed0d2075706, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 7e151e240abfb874cadb7b1d62c08593, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m10040/m10040_skeletondata.asset.meta b/Assets/arts/spines/characters/m10040/m10040_skeletondata.asset.meta
new file mode 100644
index 000000000..62797a88d
--- /dev/null
+++ b/Assets/arts/spines/characters/m10040/m10040_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 58391092b2ec6654aab0a54376384b5b
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10041.meta b/Assets/arts/spines/characters/m10041.meta
new file mode 100644
index 000000000..a49a05c2e
--- /dev/null
+++ b/Assets/arts/spines/characters/m10041.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 2b65f0ef559efa846b59cb0c9b85be30
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10041/m10041.atlas.txt b/Assets/arts/spines/characters/m10041/m10041.atlas.txt
new file mode 100644
index 000000000..732c4ea1d
--- /dev/null
+++ b/Assets/arts/spines/characters/m10041/m10041.atlas.txt
@@ -0,0 +1,37 @@
+m10041.png
+size:512,512
+filter:Linear,Linear
+chibang_L
+bounds:2,339,109,79
+chibang_R
+bounds:2,420,110,87
+eye_L
+bounds:74,188,30,26
+rotate:90
+eye_R
+bounds:447,478,30,29
+eye_xuanyun
+bounds:49,143,20,20
+gutou
+bounds:2,165,70,53
+hand_L
+bounds:2,98,45,65
+hand_R
+bounds:374,457,50,71
+rotate:90
+head_1
+bounds:2,220,98,57
+head_2
+bounds:114,421,95,86
+hit_yan3
+bounds:479,479,28,28
+kulou
+bounds:295,445,77,62
+offsets:0,1,77,63
+mouth
+bounds:2,279,103,58
+spine
+bounds:211,432,82,75
+yingzi
+bounds:2,13,83,19
+rotate:90
diff --git a/Assets/arts/spines/characters/m10041/m10041.atlas.txt.meta b/Assets/arts/spines/characters/m10041/m10041.atlas.txt.meta
new file mode 100644
index 000000000..79703a99a
--- /dev/null
+++ b/Assets/arts/spines/characters/m10041/m10041.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: fcd77d18e53f5894ca2a443cf96807d1
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10041/m10041.png b/Assets/arts/spines/characters/m10041/m10041.png
new file mode 100644
index 000000000..52bff38f5
Binary files /dev/null and b/Assets/arts/spines/characters/m10041/m10041.png differ
diff --git a/Assets/arts/spines/characters/m10041/m10041.png.meta b/Assets/arts/spines/characters/m10041/m10041.png.meta
new file mode 100644
index 000000000..0d1ce2fef
--- /dev/null
+++ b/Assets/arts/spines/characters/m10041/m10041.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 6672857b61984a74baee65e3ef9efd41
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10041/m10041.skel.bytes b/Assets/arts/spines/characters/m10041/m10041.skel.bytes
new file mode 100644
index 000000000..4e14c7fea
Binary files /dev/null and b/Assets/arts/spines/characters/m10041/m10041.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10041/m10041.skel.bytes.meta b/Assets/arts/spines/characters/m10041/m10041.skel.bytes.meta
new file mode 100644
index 000000000..9df6c2762
--- /dev/null
+++ b/Assets/arts/spines/characters/m10041/m10041.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 8d5da5301eeefa24f97d9baae811daf2
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10041/m10041_atlas.asset b/Assets/arts/spines/characters/m10041/m10041_atlas.asset
new file mode 100644
index 000000000..55b871516
--- /dev/null
+++ b/Assets/arts/spines/characters/m10041/m10041_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m10041_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: fcd77d18e53f5894ca2a443cf96807d1, type: 3}
+ materials:
+ - {fileID: 2100000, guid: 95838e47964e7064285b587c1dbcafbc, type: 2}
diff --git a/Assets/arts/spines/characters/m10041/m10041_atlas.asset.meta b/Assets/arts/spines/characters/m10041/m10041_atlas.asset.meta
new file mode 100644
index 000000000..966bc2729
--- /dev/null
+++ b/Assets/arts/spines/characters/m10041/m10041_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 7e1e1e1171a83d84a88f556344b763f0
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10041/m10041_material.mat b/Assets/arts/spines/characters/m10041/m10041_material.mat
new file mode 100644
index 000000000..6bcca72cf
--- /dev/null
+++ b/Assets/arts/spines/characters/m10041/m10041_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m10041_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 6672857b61984a74baee65e3ef9efd41, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m10041/m10041_material.mat.meta b/Assets/arts/spines/characters/m10041/m10041_material.mat.meta
new file mode 100644
index 000000000..b97d2e87f
--- /dev/null
+++ b/Assets/arts/spines/characters/m10041/m10041_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 95838e47964e7064285b587c1dbcafbc
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10041/m10041_skeletondata.asset b/Assets/arts/spines/characters/m10041/m10041_skeletondata.asset
new file mode 100644
index 000000000..42a1c8325
--- /dev/null
+++ b/Assets/arts/spines/characters/m10041/m10041_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m10041_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: 7e1e1e1171a83d84a88f556344b763f0, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 8d5da5301eeefa24f97d9baae811daf2, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m10041/m10041_skeletondata.asset.meta b/Assets/arts/spines/characters/m10041/m10041_skeletondata.asset.meta
new file mode 100644
index 000000000..e3e535de6
--- /dev/null
+++ b/Assets/arts/spines/characters/m10041/m10041_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: f336e30e863a5c049a1d992eda77479f
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10042.meta b/Assets/arts/spines/characters/m10042.meta
new file mode 100644
index 000000000..1c202648f
--- /dev/null
+++ b/Assets/arts/spines/characters/m10042.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 97102195806f61f4c867bf19677c5419
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10042/m10042.atlas.txt b/Assets/arts/spines/characters/m10042/m10042.atlas.txt
new file mode 100644
index 000000000..4b1364719
--- /dev/null
+++ b/Assets/arts/spines/characters/m10042/m10042.atlas.txt
@@ -0,0 +1,39 @@
+m10042.png
+size:512,512
+filter:Linear,Linear
+eye
+bounds:229,402,36,29
+rotate:90
+eye_xuanyun
+bounds:335,461,20,20
+gutou
+bounds:2,228,70,53
+head_1
+bounds:186,369,41,69
+head_2
+bounds:265,460,42,68
+rotate:90
+hit_yan3
+bounds:229,372,28,28
+kulou
+bounds:186,440,77,62
+offsets:0,1,77,63
+leg_1
+bounds:112,284,51,67
+leg_2
+bounds:74,239,42,42
+leg_3
+bounds:2,45,49,51
+leg_4
+bounds:2,165,47,61
+mouth
+bounds:2,283,108,68
+nose
+bounds:2,98,65,43
+rotate:90
+spine
+bounds:2,353,182,149
+tail
+bounds:2,2,50,41
+yingzi
+bounds:335,483,83,19
diff --git a/Assets/arts/spines/characters/m10042/m10042.atlas.txt.meta b/Assets/arts/spines/characters/m10042/m10042.atlas.txt.meta
new file mode 100644
index 000000000..22d296312
--- /dev/null
+++ b/Assets/arts/spines/characters/m10042/m10042.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 849d12f4e2789de45802efbb161695f4
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10042/m10042.png b/Assets/arts/spines/characters/m10042/m10042.png
new file mode 100644
index 000000000..4eb84d91f
Binary files /dev/null and b/Assets/arts/spines/characters/m10042/m10042.png differ
diff --git a/Assets/arts/spines/characters/m10042/m10042.png.meta b/Assets/arts/spines/characters/m10042/m10042.png.meta
new file mode 100644
index 000000000..e4c94b9cf
--- /dev/null
+++ b/Assets/arts/spines/characters/m10042/m10042.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: ccfe01fd8662988478c823943abebb25
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10042/m10042.skel.bytes b/Assets/arts/spines/characters/m10042/m10042.skel.bytes
new file mode 100644
index 000000000..54b075e81
Binary files /dev/null and b/Assets/arts/spines/characters/m10042/m10042.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10042/m10042.skel.bytes.meta b/Assets/arts/spines/characters/m10042/m10042.skel.bytes.meta
new file mode 100644
index 000000000..954a9c7b7
--- /dev/null
+++ b/Assets/arts/spines/characters/m10042/m10042.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: ee0b15fb0e3d4704084305bb2a062b49
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10042/m10042_atlas.asset b/Assets/arts/spines/characters/m10042/m10042_atlas.asset
new file mode 100644
index 000000000..60a61e9e7
--- /dev/null
+++ b/Assets/arts/spines/characters/m10042/m10042_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m10042_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: 849d12f4e2789de45802efbb161695f4, type: 3}
+ materials:
+ - {fileID: 2100000, guid: 3b0201f5aecaaca47be191e6e1ce0338, type: 2}
diff --git a/Assets/arts/spines/characters/m10042/m10042_atlas.asset.meta b/Assets/arts/spines/characters/m10042/m10042_atlas.asset.meta
new file mode 100644
index 000000000..7e3ef14d2
--- /dev/null
+++ b/Assets/arts/spines/characters/m10042/m10042_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: b8a15f0f850ab6d46a975bc1ccc7bf99
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10042/m10042_material.mat b/Assets/arts/spines/characters/m10042/m10042_material.mat
new file mode 100644
index 000000000..efc39057a
--- /dev/null
+++ b/Assets/arts/spines/characters/m10042/m10042_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m10042_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: ccfe01fd8662988478c823943abebb25, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m10042/m10042_material.mat.meta b/Assets/arts/spines/characters/m10042/m10042_material.mat.meta
new file mode 100644
index 000000000..9d9e9e84e
--- /dev/null
+++ b/Assets/arts/spines/characters/m10042/m10042_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 3b0201f5aecaaca47be191e6e1ce0338
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10042/m10042_skeletondata.asset b/Assets/arts/spines/characters/m10042/m10042_skeletondata.asset
new file mode 100644
index 000000000..dcbfbcc2f
--- /dev/null
+++ b/Assets/arts/spines/characters/m10042/m10042_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m10042_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: b8a15f0f850ab6d46a975bc1ccc7bf99, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: ee0b15fb0e3d4704084305bb2a062b49, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m10042/m10042_skeletondata.asset.meta b/Assets/arts/spines/characters/m10042/m10042_skeletondata.asset.meta
new file mode 100644
index 000000000..ac31f192e
--- /dev/null
+++ b/Assets/arts/spines/characters/m10042/m10042_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 23ea61baa0aa8174aa019fab5ee829c0
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10043.meta b/Assets/arts/spines/characters/m10043.meta
new file mode 100644
index 000000000..932a1585e
--- /dev/null
+++ b/Assets/arts/spines/characters/m10043.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 1389d194cb306fd4f8b4ad51384ad82d
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10043/m10043.atlas.txt b/Assets/arts/spines/characters/m10043/m10043.atlas.txt
new file mode 100644
index 000000000..f5122e266
--- /dev/null
+++ b/Assets/arts/spines/characters/m10043/m10043.atlas.txt
@@ -0,0 +1,22 @@
+m10043.png
+size:256,256
+filter:Linear,Linear
+chibang_l
+bounds:2,45,111,94
+chibang_r
+bounds:2,141,111,113
+eye
+bounds:180,74,67,68
+offsets:1,1,69,70
+eye_xuanyun
+bounds:2,2,20,20
+head
+bounds:115,144,84,110
+hit_yan1
+bounds:87,25,16,18
+hit_yan2
+bounds:24,2,20,20
+tail
+bounds:115,52,63,90
+yingzi
+bounds:2,24,83,19
diff --git a/Assets/arts/spines/characters/m10043/m10043.atlas.txt.meta b/Assets/arts/spines/characters/m10043/m10043.atlas.txt.meta
new file mode 100644
index 000000000..2260d686a
--- /dev/null
+++ b/Assets/arts/spines/characters/m10043/m10043.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 46e3a303a6030d745b85a1ccaddb1b35
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10043/m10043.png b/Assets/arts/spines/characters/m10043/m10043.png
new file mode 100644
index 000000000..a52a54b62
Binary files /dev/null and b/Assets/arts/spines/characters/m10043/m10043.png differ
diff --git a/Assets/arts/spines/characters/m10043/m10043.png.meta b/Assets/arts/spines/characters/m10043/m10043.png.meta
new file mode 100644
index 000000000..eb6ce56f9
--- /dev/null
+++ b/Assets/arts/spines/characters/m10043/m10043.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: c60a62505ff25c449a2a8a541d6f93b8
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 0
+ wrapV: 0
+ wrapW: 0
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 1
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 1
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10043/m10043.skel.bytes b/Assets/arts/spines/characters/m10043/m10043.skel.bytes
new file mode 100644
index 000000000..fec02109f
Binary files /dev/null and b/Assets/arts/spines/characters/m10043/m10043.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10043/m10043.skel.bytes.meta b/Assets/arts/spines/characters/m10043/m10043.skel.bytes.meta
new file mode 100644
index 000000000..d6ffc41b3
--- /dev/null
+++ b/Assets/arts/spines/characters/m10043/m10043.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 900c5eb96e8c6e8439fe02739ce51c72
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10043/m10043_atlas.asset b/Assets/arts/spines/characters/m10043/m10043_atlas.asset
new file mode 100644
index 000000000..fe141b4f7
--- /dev/null
+++ b/Assets/arts/spines/characters/m10043/m10043_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m10043_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: 46e3a303a6030d745b85a1ccaddb1b35, type: 3}
+ materials:
+ - {fileID: 2100000, guid: 2bc106b732090f14e98367329e8994ae, type: 2}
diff --git a/Assets/arts/spines/characters/m10043/m10043_atlas.asset.meta b/Assets/arts/spines/characters/m10043/m10043_atlas.asset.meta
new file mode 100644
index 000000000..bd2a754ac
--- /dev/null
+++ b/Assets/arts/spines/characters/m10043/m10043_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: f8ff7e23d0b3a08499b22edb1a6c9fe9
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10043/m10043_material.mat b/Assets/arts/spines/characters/m10043/m10043_material.mat
new file mode 100644
index 000000000..24d82c1c9
--- /dev/null
+++ b/Assets/arts/spines/characters/m10043/m10043_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m10043_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: c60a62505ff25c449a2a8a541d6f93b8, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m10043/m10043_material.mat.meta b/Assets/arts/spines/characters/m10043/m10043_material.mat.meta
new file mode 100644
index 000000000..4b6143694
--- /dev/null
+++ b/Assets/arts/spines/characters/m10043/m10043_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 2bc106b732090f14e98367329e8994ae
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10043/m10043_skeletondata.asset b/Assets/arts/spines/characters/m10043/m10043_skeletondata.asset
new file mode 100644
index 000000000..28b943fb2
--- /dev/null
+++ b/Assets/arts/spines/characters/m10043/m10043_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m10043_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: f8ff7e23d0b3a08499b22edb1a6c9fe9, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 900c5eb96e8c6e8439fe02739ce51c72, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m10043/m10043_skeletondata.asset.meta b/Assets/arts/spines/characters/m10043/m10043_skeletondata.asset.meta
new file mode 100644
index 000000000..19c92fcfc
--- /dev/null
+++ b/Assets/arts/spines/characters/m10043/m10043_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 6d7849f01e3bdf44fa5875ec88e0ec89
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10044.meta b/Assets/arts/spines/characters/m10044.meta
new file mode 100644
index 000000000..a2adb39b9
--- /dev/null
+++ b/Assets/arts/spines/characters/m10044.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: ad1ef74ad59b1b34e93f3f70a87aaf0f
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10044/m10044.atlas.txt b/Assets/arts/spines/characters/m10044/m10044.atlas.txt
new file mode 100644
index 000000000..7c2f132a5
--- /dev/null
+++ b/Assets/arts/spines/characters/m10044/m10044.atlas.txt
@@ -0,0 +1,22 @@
+m10044.png
+size:256,256
+filter:Linear,Linear
+chibang_l
+bounds:2,45,110,94
+chibang_r
+bounds:2,141,111,113
+eye
+bounds:179,74,68,68
+offsets:1,1,70,70
+eye_xuanyun
+bounds:2,2,20,20
+head
+bounds:115,144,83,110
+hit_yan1
+bounds:87,25,16,18
+hit_yan2
+bounds:24,2,20,20
+tail
+bounds:114,49,63,90
+yingzi
+bounds:2,24,83,19
diff --git a/Assets/arts/spines/characters/m10044/m10044.atlas.txt.meta b/Assets/arts/spines/characters/m10044/m10044.atlas.txt.meta
new file mode 100644
index 000000000..44d9eb65d
--- /dev/null
+++ b/Assets/arts/spines/characters/m10044/m10044.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: ee68ff9815c331048beed512391af5db
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10044/m10044.png b/Assets/arts/spines/characters/m10044/m10044.png
new file mode 100644
index 000000000..a9bc41813
Binary files /dev/null and b/Assets/arts/spines/characters/m10044/m10044.png differ
diff --git a/Assets/arts/spines/characters/m10044/m10044.png.meta b/Assets/arts/spines/characters/m10044/m10044.png.meta
new file mode 100644
index 000000000..7d2debfb4
--- /dev/null
+++ b/Assets/arts/spines/characters/m10044/m10044.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: af9aeeb938a13fe45814978a2af8733b
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 0
+ wrapV: 0
+ wrapW: 0
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 1
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 1
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10044/m10044.skel.bytes b/Assets/arts/spines/characters/m10044/m10044.skel.bytes
new file mode 100644
index 000000000..103a8fa9f
Binary files /dev/null and b/Assets/arts/spines/characters/m10044/m10044.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10044/m10044.skel.bytes.meta b/Assets/arts/spines/characters/m10044/m10044.skel.bytes.meta
new file mode 100644
index 000000000..a6f202f88
--- /dev/null
+++ b/Assets/arts/spines/characters/m10044/m10044.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: f2e8f61e8dbfc9542a10de67581a07c2
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10044/m10044_atlas.asset b/Assets/arts/spines/characters/m10044/m10044_atlas.asset
new file mode 100644
index 000000000..bace6111f
--- /dev/null
+++ b/Assets/arts/spines/characters/m10044/m10044_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m10044_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: ee68ff9815c331048beed512391af5db, type: 3}
+ materials:
+ - {fileID: 2100000, guid: f8260842c9b391a419f961a69f1d89c6, type: 2}
diff --git a/Assets/arts/spines/characters/m10044/m10044_atlas.asset.meta b/Assets/arts/spines/characters/m10044/m10044_atlas.asset.meta
new file mode 100644
index 000000000..6d3d67f55
--- /dev/null
+++ b/Assets/arts/spines/characters/m10044/m10044_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 4d09fbb730b5fd347a68add9d0abe00d
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10044/m10044_material.mat b/Assets/arts/spines/characters/m10044/m10044_material.mat
new file mode 100644
index 000000000..7bf4a36b7
--- /dev/null
+++ b/Assets/arts/spines/characters/m10044/m10044_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m10044_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: af9aeeb938a13fe45814978a2af8733b, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m10044/m10044_material.mat.meta b/Assets/arts/spines/characters/m10044/m10044_material.mat.meta
new file mode 100644
index 000000000..dbf5ced93
--- /dev/null
+++ b/Assets/arts/spines/characters/m10044/m10044_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: f8260842c9b391a419f961a69f1d89c6
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10044/m10044_skeletondata.asset b/Assets/arts/spines/characters/m10044/m10044_skeletondata.asset
new file mode 100644
index 000000000..e9acff78a
--- /dev/null
+++ b/Assets/arts/spines/characters/m10044/m10044_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m10044_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: 4d09fbb730b5fd347a68add9d0abe00d, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: f2e8f61e8dbfc9542a10de67581a07c2, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m10044/m10044_skeletondata.asset.meta b/Assets/arts/spines/characters/m10044/m10044_skeletondata.asset.meta
new file mode 100644
index 000000000..d97dd618d
--- /dev/null
+++ b/Assets/arts/spines/characters/m10044/m10044_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 45a7fef3a7efc6f448a96496d7a5f7ea
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10045.meta b/Assets/arts/spines/characters/m10045.meta
new file mode 100644
index 000000000..e68fc2ffe
--- /dev/null
+++ b/Assets/arts/spines/characters/m10045.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 32c9af8ad4c38cf44bd5241342300dc3
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10045/m10045.atlas.txt b/Assets/arts/spines/characters/m10045/m10045.atlas.txt
new file mode 100644
index 000000000..4038fd968
--- /dev/null
+++ b/Assets/arts/spines/characters/m10045/m10045.atlas.txt
@@ -0,0 +1,35 @@
+m10045.png
+size:512,512
+filter:Linear,Linear
+eye_L
+bounds:103,171,25,23
+offsets:1,1,27,25
+eye_R
+bounds:365,400,23,23
+offsets:1,1,25,25
+eye_xuanyun
+bounds:2,2,20,20
+head
+bounds:194,348,91,75
+offsets:1,1,93,77
+hit_yan3
+bounds:132,248,28,28
+leg_l_1
+bounds:32,45,61,70
+leg_l_2
+bounds:287,354,69,76
+rotate:90
+leg_r_1
+bounds:194,284,62,70
+rotate:90
+leg_r_2
+bounds:32,117,69,77
+spine_1
+bounds:32,196,98,80
+offsets:1,1,100,82
+spine_2
+bounds:32,278,160,145
+yingzi
+bounds:2,24,83,19
+zhizhusi
+bounds:2,45,28,378
diff --git a/Assets/arts/spines/characters/m10045/m10045.atlas.txt.meta b/Assets/arts/spines/characters/m10045/m10045.atlas.txt.meta
new file mode 100644
index 000000000..6e0f2de89
--- /dev/null
+++ b/Assets/arts/spines/characters/m10045/m10045.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: df5e11e0a3669cd47a02c0dbaa3a8f9a
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10045/m10045.png b/Assets/arts/spines/characters/m10045/m10045.png
new file mode 100644
index 000000000..6911573b5
Binary files /dev/null and b/Assets/arts/spines/characters/m10045/m10045.png differ
diff --git a/Assets/arts/spines/characters/m10045/m10045.png.meta b/Assets/arts/spines/characters/m10045/m10045.png.meta
new file mode 100644
index 000000000..0fecb93ad
--- /dev/null
+++ b/Assets/arts/spines/characters/m10045/m10045.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: ec9ee0b206667584b9627647d7d69a3f
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10045/m10045.skel.bytes b/Assets/arts/spines/characters/m10045/m10045.skel.bytes
new file mode 100644
index 000000000..48454736b
Binary files /dev/null and b/Assets/arts/spines/characters/m10045/m10045.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10045/m10045.skel.bytes.meta b/Assets/arts/spines/characters/m10045/m10045.skel.bytes.meta
new file mode 100644
index 000000000..46579ab10
--- /dev/null
+++ b/Assets/arts/spines/characters/m10045/m10045.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 7c9f2c6461e00bc4faf86b819ce7ae1e
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10045/m10045_atlas.asset b/Assets/arts/spines/characters/m10045/m10045_atlas.asset
new file mode 100644
index 000000000..97f59a009
--- /dev/null
+++ b/Assets/arts/spines/characters/m10045/m10045_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m10045_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: df5e11e0a3669cd47a02c0dbaa3a8f9a, type: 3}
+ materials:
+ - {fileID: 2100000, guid: c1a498ebdf785284cac269fdc6eb05cf, type: 2}
diff --git a/Assets/arts/spines/characters/m10045/m10045_atlas.asset.meta b/Assets/arts/spines/characters/m10045/m10045_atlas.asset.meta
new file mode 100644
index 000000000..2a8443fe5
--- /dev/null
+++ b/Assets/arts/spines/characters/m10045/m10045_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: f0c48fcb6b6c55640ab069f7bff4c600
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10045/m10045_material.mat b/Assets/arts/spines/characters/m10045/m10045_material.mat
new file mode 100644
index 000000000..366b4bf1f
--- /dev/null
+++ b/Assets/arts/spines/characters/m10045/m10045_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m10045_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: ec9ee0b206667584b9627647d7d69a3f, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m10045/m10045_material.mat.meta b/Assets/arts/spines/characters/m10045/m10045_material.mat.meta
new file mode 100644
index 000000000..5797b2575
--- /dev/null
+++ b/Assets/arts/spines/characters/m10045/m10045_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: c1a498ebdf785284cac269fdc6eb05cf
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10045/m10045_skeletondata.asset b/Assets/arts/spines/characters/m10045/m10045_skeletondata.asset
new file mode 100644
index 000000000..c0f18fb41
--- /dev/null
+++ b/Assets/arts/spines/characters/m10045/m10045_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m10045_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: f0c48fcb6b6c55640ab069f7bff4c600, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 7c9f2c6461e00bc4faf86b819ce7ae1e, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m10045/m10045_skeletondata.asset.meta b/Assets/arts/spines/characters/m10045/m10045_skeletondata.asset.meta
new file mode 100644
index 000000000..62bce4d9b
--- /dev/null
+++ b/Assets/arts/spines/characters/m10045/m10045_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 64424312abe30b34a92c39b24f36df5c
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10046.meta b/Assets/arts/spines/characters/m10046.meta
new file mode 100644
index 000000000..f3c300dbf
--- /dev/null
+++ b/Assets/arts/spines/characters/m10046.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: bb5ff5580ac7e094ca9ae89b872ae32b
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10046/m10046.atlas.txt b/Assets/arts/spines/characters/m10046/m10046.atlas.txt
new file mode 100644
index 000000000..e6a9371a1
--- /dev/null
+++ b/Assets/arts/spines/characters/m10046/m10046.atlas.txt
@@ -0,0 +1,31 @@
+m10046.png
+size:512,512
+filter:Linear,Linear
+eye_L
+bounds:101,215,25,23
+eye_R
+bounds:354,442,23,23
+eye_xuanyun
+bounds:262,368,20,20
+head
+bounds:192,390,91,75
+hit_yan3
+bounds:132,292,28,28
+leg_l_1
+bounds:32,93,59,68
+leg_l_2
+bounds:285,391,67,74
+leg_r_1
+bounds:192,328,60,68
+rotate:90
+leg_r_2
+bounds:32,163,67,75
+spine_1
+bounds:32,240,98,80
+spine_2
+bounds:32,322,158,143
+yingzi
+bounds:2,2,83,19
+rotate:90
+zhizhusi
+bounds:2,87,28,378
diff --git a/Assets/arts/spines/characters/m10046/m10046.atlas.txt.meta b/Assets/arts/spines/characters/m10046/m10046.atlas.txt.meta
new file mode 100644
index 000000000..4f4b883fa
--- /dev/null
+++ b/Assets/arts/spines/characters/m10046/m10046.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: a59faddd8a6f6034fbad509f7e42b761
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10046/m10046.png b/Assets/arts/spines/characters/m10046/m10046.png
new file mode 100644
index 000000000..b6ac46ba4
Binary files /dev/null and b/Assets/arts/spines/characters/m10046/m10046.png differ
diff --git a/Assets/arts/spines/characters/m10046/m10046.png.meta b/Assets/arts/spines/characters/m10046/m10046.png.meta
new file mode 100644
index 000000000..8c9f370b3
--- /dev/null
+++ b/Assets/arts/spines/characters/m10046/m10046.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: f1f0f633bc063fd4b985c992b5ca5081
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10046/m10046.skel.bytes b/Assets/arts/spines/characters/m10046/m10046.skel.bytes
new file mode 100644
index 000000000..487a90345
Binary files /dev/null and b/Assets/arts/spines/characters/m10046/m10046.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10046/m10046.skel.bytes.meta b/Assets/arts/spines/characters/m10046/m10046.skel.bytes.meta
new file mode 100644
index 000000000..e2c39139c
--- /dev/null
+++ b/Assets/arts/spines/characters/m10046/m10046.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 88027678b2554884680fa0168657cab7
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10046/m10046_atlas.asset b/Assets/arts/spines/characters/m10046/m10046_atlas.asset
new file mode 100644
index 000000000..2f29b30e0
--- /dev/null
+++ b/Assets/arts/spines/characters/m10046/m10046_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m10046_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: a59faddd8a6f6034fbad509f7e42b761, type: 3}
+ materials:
+ - {fileID: 2100000, guid: 2b9e3d4e123f6d746b03466a0a5e0da0, type: 2}
diff --git a/Assets/arts/spines/characters/m10046/m10046_atlas.asset.meta b/Assets/arts/spines/characters/m10046/m10046_atlas.asset.meta
new file mode 100644
index 000000000..60fbd0a2c
--- /dev/null
+++ b/Assets/arts/spines/characters/m10046/m10046_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: e8d3389f74c31d145be5a01715930e5a
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10046/m10046_material.mat b/Assets/arts/spines/characters/m10046/m10046_material.mat
new file mode 100644
index 000000000..d9cb2ee9a
--- /dev/null
+++ b/Assets/arts/spines/characters/m10046/m10046_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m10046_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: f1f0f633bc063fd4b985c992b5ca5081, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m10046/m10046_material.mat.meta b/Assets/arts/spines/characters/m10046/m10046_material.mat.meta
new file mode 100644
index 000000000..553df5333
--- /dev/null
+++ b/Assets/arts/spines/characters/m10046/m10046_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 2b9e3d4e123f6d746b03466a0a5e0da0
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10046/m10046_skeletondata.asset b/Assets/arts/spines/characters/m10046/m10046_skeletondata.asset
new file mode 100644
index 000000000..172d82475
--- /dev/null
+++ b/Assets/arts/spines/characters/m10046/m10046_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m10046_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: e8d3389f74c31d145be5a01715930e5a, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 88027678b2554884680fa0168657cab7, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m10046/m10046_skeletondata.asset.meta b/Assets/arts/spines/characters/m10046/m10046_skeletondata.asset.meta
new file mode 100644
index 000000000..5e9e0da77
--- /dev/null
+++ b/Assets/arts/spines/characters/m10046/m10046_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 7d54ac041f966c14095e3b425bbbf74c
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10047.meta b/Assets/arts/spines/characters/m10047.meta
new file mode 100644
index 000000000..6794072d3
--- /dev/null
+++ b/Assets/arts/spines/characters/m10047.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 0117546c714b9914e989a48235761cf1
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10047/m10047.atlas.txt b/Assets/arts/spines/characters/m10047/m10047.atlas.txt
new file mode 100644
index 000000000..7e9d18952
--- /dev/null
+++ b/Assets/arts/spines/characters/m10047/m10047.atlas.txt
@@ -0,0 +1,75 @@
+m10047.png
+size:1024,1024
+filter:Linear,Linear
+FX/6981f03cdd916661ca58e0417013e3543f7d35bb99358-yDzX5X_0000_图层-12
+bounds:2,745,573,277
+FX/6981f03cdd916661ca58e0417013e3543f7d35bb99358-yDzX5X_0001_图层-11
+bounds:2,552,548,191
+FX/6981f03cdd916661ca58e0417013e3543f7d35bb99358-yDzX5X_0002_图层-10
+bounds:468,429,543,53
+FX/6981f03cdd916661ca58e0417013e3543f7d35bb99358-yDzX5X_0003_图层-9
+bounds:468,377,534,50
+FX/6981f03cdd916661ca58e0417013e3543f7d35bb99358-yDzX5X_0004_图层-8
+bounds:2,24,515,71
+FX/6981f03cdd916661ca58e0417013e3543f7d35bb99358-yDzX5X_0005_图层-7
+bounds:2,97,528,112
+FX/6981f03cdd916661ca58e0417013e3543f7d35bb99358-yDzX5X_0006_图层-6
+bounds:2,211,503,137
+FX/6981f03cdd916661ca58e0417013e3543f7d35bb99358-yDzX5X_0007_图层-5
+bounds:2,350,464,200
+FX/6981f03cdd916661ca58e0417013e3543f7d35bb99358-yDzX5X_0008_图层-4
+bounds:577,800,425,222
+FX/6981f03cdd916661ca58e0417013e3543f7d35bb99358-yDzX5X_0009_图层-3
+bounds:552,484,388,206
+FX/6981f03cdd916661ca58e0417013e3543f7d35bb99358-yDzX5X_0010_图层-2
+bounds:532,194,359,181
+FX/6981f03cdd916661ca58e0417013e3543f7d35bb99358-yDzX5X_0011_图层-1
+bounds:532,62,218,130
+clothes_1
+bounds:893,223,86,51
+offsets:1,1,88,53
+clothes_2
+bounds:981,238,36,41
+rotate:90
+eye
+bounds:942,486,35,32
+offsets:1,1,37,34
+eye_xuanyun
+bounds:87,2,20,20
+hand_1
+bounds:846,83,36,28
+offsets:1,1,38,30
+hand_2
+bounds:983,503,39,36
+offsets:1,1,41,38
+head
+bounds:893,276,106,99
+hit_yan3
+bounds:752,54,28,28
+jitui
+bounds:959,175,63,46
+kulou
+bounds:468,488,77,62
+offsets:0,1,77,63
+leg_l
+bounds:983,541,39,57
+leg_r
+bounds:892,117,38,55
+rotate:90
+shuitan
+bounds:577,692,437,106
+spine
+bounds:752,84,92,108
+upperarm_l_01
+bounds:942,520,39,78
+upperarm_r_01
+bounds:846,113,44,79
+weapon_1
+bounds:893,157,64,64
+offsets:1,1,66,66
+weapon_2
+bounds:942,600,90,53
+offsets:1,1,92,55
+rotate:90
+yingzi
+bounds:2,3,83,19
diff --git a/Assets/arts/spines/characters/m10047/m10047.atlas.txt.meta b/Assets/arts/spines/characters/m10047/m10047.atlas.txt.meta
new file mode 100644
index 000000000..ea96ab3c9
--- /dev/null
+++ b/Assets/arts/spines/characters/m10047/m10047.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: ff3ab830968eaa443aa331f4844d7316
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10047/m10047.png b/Assets/arts/spines/characters/m10047/m10047.png
new file mode 100644
index 000000000..3f0d33d2a
Binary files /dev/null and b/Assets/arts/spines/characters/m10047/m10047.png differ
diff --git a/Assets/arts/spines/characters/m10047/m10047.png.meta b/Assets/arts/spines/characters/m10047/m10047.png.meta
new file mode 100644
index 000000000..656fca039
--- /dev/null
+++ b/Assets/arts/spines/characters/m10047/m10047.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: cd66b75e2e6ee344fa8f2af33ebf1de5
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10047/m10047.skel.bytes b/Assets/arts/spines/characters/m10047/m10047.skel.bytes
new file mode 100644
index 000000000..7a9a47253
Binary files /dev/null and b/Assets/arts/spines/characters/m10047/m10047.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10047/m10047.skel.bytes.meta b/Assets/arts/spines/characters/m10047/m10047.skel.bytes.meta
new file mode 100644
index 000000000..6b5c0d8a9
--- /dev/null
+++ b/Assets/arts/spines/characters/m10047/m10047.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 58e9ab6c49de6e74f81833494baab21c
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10047/m10047_atlas.asset b/Assets/arts/spines/characters/m10047/m10047_atlas.asset
new file mode 100644
index 000000000..b55f8ab71
--- /dev/null
+++ b/Assets/arts/spines/characters/m10047/m10047_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m10047_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: ff3ab830968eaa443aa331f4844d7316, type: 3}
+ materials:
+ - {fileID: 2100000, guid: 45b4c3ce8bdc6bf47ab9a5da1ce45175, type: 2}
diff --git a/Assets/arts/spines/characters/m10047/m10047_atlas.asset.meta b/Assets/arts/spines/characters/m10047/m10047_atlas.asset.meta
new file mode 100644
index 000000000..3e489864b
--- /dev/null
+++ b/Assets/arts/spines/characters/m10047/m10047_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 9bae4b866b45b6149b59dd680159e9eb
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10047/m10047_material.mat b/Assets/arts/spines/characters/m10047/m10047_material.mat
new file mode 100644
index 000000000..339ef94fd
--- /dev/null
+++ b/Assets/arts/spines/characters/m10047/m10047_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m10047_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: cd66b75e2e6ee344fa8f2af33ebf1de5, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m10047/m10047_material.mat.meta b/Assets/arts/spines/characters/m10047/m10047_material.mat.meta
new file mode 100644
index 000000000..e97d58764
--- /dev/null
+++ b/Assets/arts/spines/characters/m10047/m10047_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 45b4c3ce8bdc6bf47ab9a5da1ce45175
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10047/m10047_skeletondata.asset b/Assets/arts/spines/characters/m10047/m10047_skeletondata.asset
new file mode 100644
index 000000000..9b0125f0e
--- /dev/null
+++ b/Assets/arts/spines/characters/m10047/m10047_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m10047_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: 9bae4b866b45b6149b59dd680159e9eb, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 58e9ab6c49de6e74f81833494baab21c, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m10047/m10047_skeletondata.asset.meta b/Assets/arts/spines/characters/m10047/m10047_skeletondata.asset.meta
new file mode 100644
index 000000000..7e9fdc981
--- /dev/null
+++ b/Assets/arts/spines/characters/m10047/m10047_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: cf210c72568190242a06d862b42557c6
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10048.meta b/Assets/arts/spines/characters/m10048.meta
new file mode 100644
index 000000000..49d273f9f
--- /dev/null
+++ b/Assets/arts/spines/characters/m10048.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: f92495c3f034d014bb084a65e243d93b
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10048/m10047.atlas.txt b/Assets/arts/spines/characters/m10048/m10047.atlas.txt
new file mode 100644
index 000000000..6c5d92ecb
--- /dev/null
+++ b/Assets/arts/spines/characters/m10048/m10047.atlas.txt
@@ -0,0 +1,68 @@
+m10047.png
+size:1024,1024
+filter:Linear,Linear
+FX/6981f03cdd916661ca58e0417013e3543f7d35bb99358-yDzX5X_0000_图层-12
+bounds:2,745,573,277
+FX/6981f03cdd916661ca58e0417013e3543f7d35bb99358-yDzX5X_0001_图层-11
+bounds:2,552,548,191
+FX/6981f03cdd916661ca58e0417013e3543f7d35bb99358-yDzX5X_0002_图层-10
+bounds:468,429,543,53
+FX/6981f03cdd916661ca58e0417013e3543f7d35bb99358-yDzX5X_0003_图层-9
+bounds:468,377,534,50
+FX/6981f03cdd916661ca58e0417013e3543f7d35bb99358-yDzX5X_0004_图层-8
+bounds:2,24,515,71
+FX/6981f03cdd916661ca58e0417013e3543f7d35bb99358-yDzX5X_0005_图层-7
+bounds:2,97,528,112
+FX/6981f03cdd916661ca58e0417013e3543f7d35bb99358-yDzX5X_0006_图层-6
+bounds:2,211,503,137
+FX/6981f03cdd916661ca58e0417013e3543f7d35bb99358-yDzX5X_0007_图层-5
+bounds:2,350,464,200
+FX/6981f03cdd916661ca58e0417013e3543f7d35bb99358-yDzX5X_0008_图层-4
+bounds:577,800,425,222
+FX/6981f03cdd916661ca58e0417013e3543f7d35bb99358-yDzX5X_0009_图层-3
+bounds:552,484,388,206
+FX/6981f03cdd916661ca58e0417013e3543f7d35bb99358-yDzX5X_0010_图层-2
+bounds:532,194,359,181
+FX/6981f03cdd916661ca58e0417013e3543f7d35bb99358-yDzX5X_0011_图层-1
+bounds:532,62,218,130
+clothes_1
+bounds:893,216,87,51
+clothes_2
+bounds:831,75,34,39
+eye
+bounds:560,28,35,32
+eye_xuanyun
+bounds:87,2,20,20
+hand_1
+bounds:597,32,35,28
+hand_2
+bounds:519,24,39,36
+head
+bounds:752,116,104,76
+hit_yan3
+bounds:597,2,28,28
+jitui
+bounds:942,486,63,46
+kulou
+bounds:468,488,77,62
+offsets:0,1,77,63
+leg_l
+bounds:985,242,37,55
+leg_r
+bounds:858,139,37,53
+shuitan
+bounds:577,692,437,106
+spine
+bounds:893,269,90,106
+upperarm_l_01
+bounds:985,299,37,76
+upperarm_r_01
+bounds:752,72,42,77
+rotate:90
+weapon_1
+bounds:942,534,64,64
+weapon_2
+bounds:942,600,90,53
+rotate:90
+yingzi
+bounds:2,3,83,19
diff --git a/Assets/arts/spines/characters/m10048/m10047.atlas.txt.meta b/Assets/arts/spines/characters/m10048/m10047.atlas.txt.meta
new file mode 100644
index 000000000..3d7eb2fdc
--- /dev/null
+++ b/Assets/arts/spines/characters/m10048/m10047.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 2ff36bd64a38c7b478726763ee36e895
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10048/m10047.png b/Assets/arts/spines/characters/m10048/m10047.png
new file mode 100644
index 000000000..113ba4361
Binary files /dev/null and b/Assets/arts/spines/characters/m10048/m10047.png differ
diff --git a/Assets/arts/spines/characters/m10048/m10047.png.meta b/Assets/arts/spines/characters/m10048/m10047.png.meta
new file mode 100644
index 000000000..93aa5d8e6
--- /dev/null
+++ b/Assets/arts/spines/characters/m10048/m10047.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 0b6d8ddc7c82afd4a9182a36b2baff76
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10048/m10047.skel.bytes b/Assets/arts/spines/characters/m10048/m10047.skel.bytes
new file mode 100644
index 000000000..9d0e682ff
Binary files /dev/null and b/Assets/arts/spines/characters/m10048/m10047.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10048/m10047.skel.bytes.meta b/Assets/arts/spines/characters/m10048/m10047.skel.bytes.meta
new file mode 100644
index 000000000..8e18afee4
--- /dev/null
+++ b/Assets/arts/spines/characters/m10048/m10047.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 865cc6e6d2ee58b4cb1265cac3ca3300
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10048/m10047_atlas.asset b/Assets/arts/spines/characters/m10048/m10047_atlas.asset
new file mode 100644
index 000000000..cf0fbc47f
--- /dev/null
+++ b/Assets/arts/spines/characters/m10048/m10047_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m10047_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: 2ff36bd64a38c7b478726763ee36e895, type: 3}
+ materials:
+ - {fileID: 2100000, guid: 8f704aaab8a5f2c4baff5969d6450146, type: 2}
diff --git a/Assets/arts/spines/characters/m10048/m10047_atlas.asset.meta b/Assets/arts/spines/characters/m10048/m10047_atlas.asset.meta
new file mode 100644
index 000000000..a2a59db24
--- /dev/null
+++ b/Assets/arts/spines/characters/m10048/m10047_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 81dd3c6a81ee4004a9dc94d9ace66c40
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10048/m10047_material.mat b/Assets/arts/spines/characters/m10048/m10047_material.mat
new file mode 100644
index 000000000..e0f4d857f
--- /dev/null
+++ b/Assets/arts/spines/characters/m10048/m10047_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m10047_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 0b6d8ddc7c82afd4a9182a36b2baff76, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m10048/m10047_material.mat.meta b/Assets/arts/spines/characters/m10048/m10047_material.mat.meta
new file mode 100644
index 000000000..11bdf5c0f
--- /dev/null
+++ b/Assets/arts/spines/characters/m10048/m10047_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 8f704aaab8a5f2c4baff5969d6450146
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10048/m10047_skeletondata.asset b/Assets/arts/spines/characters/m10048/m10047_skeletondata.asset
new file mode 100644
index 000000000..c21418fd5
--- /dev/null
+++ b/Assets/arts/spines/characters/m10048/m10047_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m10047_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: 81dd3c6a81ee4004a9dc94d9ace66c40, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 865cc6e6d2ee58b4cb1265cac3ca3300, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m10048/m10047_skeletondata.asset.meta b/Assets/arts/spines/characters/m10048/m10047_skeletondata.asset.meta
new file mode 100644
index 000000000..0348f4a53
--- /dev/null
+++ b/Assets/arts/spines/characters/m10048/m10047_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: f9cf146a1657e174fad52c02df14df0a
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10049.meta b/Assets/arts/spines/characters/m10049.meta
new file mode 100644
index 000000000..ed7fd68cd
--- /dev/null
+++ b/Assets/arts/spines/characters/m10049.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: d5c2d8109c5e4304391c8d2cf2cacf54
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10049/m10049.atlas.txt b/Assets/arts/spines/characters/m10049/m10049.atlas.txt
new file mode 100644
index 000000000..8f3ea8106
--- /dev/null
+++ b/Assets/arts/spines/characters/m10049/m10049.atlas.txt
@@ -0,0 +1,33 @@
+m10049.png
+size:512,512
+filter:Linear,Linear
+eye_xuanyun
+bounds:480,480,20,20
+hair_1
+bounds:2,194,101,99
+hair_2
+bounds:309,436,64,84
+rotate:90
+head
+bounds:2,116,100,76
+offsets:1,1,102,78
+hit_yan1
+bounds:395,436,16,18
+hit_yan2
+bounds:111,320,20,20
+leg_l
+bounds:2,52,82,62
+leg_r
+bounds:395,456,83,44
+mouth_1
+bounds:156,434,151,66
+mouth_2
+bounds:2,417,152,83
+spine
+bounds:2,295,107,120
+ya
+bounds:111,342,73,35
+offsets:0,0,73,36
+rotate:90
+yingzi
+bounds:2,31,83,19
diff --git a/Assets/arts/spines/characters/m10049/m10049.atlas.txt.meta b/Assets/arts/spines/characters/m10049/m10049.atlas.txt.meta
new file mode 100644
index 000000000..f7eb7cb52
--- /dev/null
+++ b/Assets/arts/spines/characters/m10049/m10049.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 99e51b0b895162d48bd27185ace1ad6d
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10049/m10049.png b/Assets/arts/spines/characters/m10049/m10049.png
new file mode 100644
index 000000000..d047bdc61
Binary files /dev/null and b/Assets/arts/spines/characters/m10049/m10049.png differ
diff --git a/Assets/arts/spines/characters/m10049/m10049.png.meta b/Assets/arts/spines/characters/m10049/m10049.png.meta
new file mode 100644
index 000000000..e4079060d
--- /dev/null
+++ b/Assets/arts/spines/characters/m10049/m10049.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 8dfb8aba305ddbe4fae0d487b726c537
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 0
+ wrapV: 0
+ wrapW: 0
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 1
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 1
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10049/m10049.skel.bytes b/Assets/arts/spines/characters/m10049/m10049.skel.bytes
new file mode 100644
index 000000000..1c44dac81
Binary files /dev/null and b/Assets/arts/spines/characters/m10049/m10049.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10049/m10049.skel.bytes.meta b/Assets/arts/spines/characters/m10049/m10049.skel.bytes.meta
new file mode 100644
index 000000000..075a71bf4
--- /dev/null
+++ b/Assets/arts/spines/characters/m10049/m10049.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 41bf6f6940b475d42b210f165a5041d9
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10049/m10049_atlas.asset b/Assets/arts/spines/characters/m10049/m10049_atlas.asset
new file mode 100644
index 000000000..f71428bd7
--- /dev/null
+++ b/Assets/arts/spines/characters/m10049/m10049_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m10049_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: 99e51b0b895162d48bd27185ace1ad6d, type: 3}
+ materials:
+ - {fileID: 2100000, guid: a859fe8a92586ef4782a9fd0968cab2f, type: 2}
diff --git a/Assets/arts/spines/characters/m10049/m10049_atlas.asset.meta b/Assets/arts/spines/characters/m10049/m10049_atlas.asset.meta
new file mode 100644
index 000000000..c4919dce0
--- /dev/null
+++ b/Assets/arts/spines/characters/m10049/m10049_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 66d36b5c615a594489864bd2785c6aac
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10049/m10049_material.mat b/Assets/arts/spines/characters/m10049/m10049_material.mat
new file mode 100644
index 000000000..cea0056ad
--- /dev/null
+++ b/Assets/arts/spines/characters/m10049/m10049_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m10049_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 8dfb8aba305ddbe4fae0d487b726c537, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m10049/m10049_material.mat.meta b/Assets/arts/spines/characters/m10049/m10049_material.mat.meta
new file mode 100644
index 000000000..e78605847
--- /dev/null
+++ b/Assets/arts/spines/characters/m10049/m10049_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: a859fe8a92586ef4782a9fd0968cab2f
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10049/m10049_skeletondata.asset b/Assets/arts/spines/characters/m10049/m10049_skeletondata.asset
new file mode 100644
index 000000000..368001ae8
--- /dev/null
+++ b/Assets/arts/spines/characters/m10049/m10049_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m10049_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: 66d36b5c615a594489864bd2785c6aac, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 41bf6f6940b475d42b210f165a5041d9, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m10049/m10049_skeletondata.asset.meta b/Assets/arts/spines/characters/m10049/m10049_skeletondata.asset.meta
new file mode 100644
index 000000000..e0316d19f
--- /dev/null
+++ b/Assets/arts/spines/characters/m10049/m10049_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 7b3fad1e985d9fa40ae6a6ca7681dcc3
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10050.meta b/Assets/arts/spines/characters/m10050.meta
new file mode 100644
index 000000000..73c768d14
--- /dev/null
+++ b/Assets/arts/spines/characters/m10050.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 2eee5c3aae1fb3e438ea265b4769d82d
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10050/m10050.atlas.txt b/Assets/arts/spines/characters/m10050/m10050.atlas.txt
new file mode 100644
index 000000000..e3e89bce6
--- /dev/null
+++ b/Assets/arts/spines/characters/m10050/m10050.atlas.txt
@@ -0,0 +1,36 @@
+m10050.png
+size:512,512
+filter:Linear,Linear
+eye_xuanyun
+bounds:481,481,20,20
+hair_1
+bounds:2,195,100,99
+hair_2
+bounds:310,437,64,84
+rotate:90
+head
+bounds:2,92,101,76
+offsets:1,1,103,78
+rotate:90
+hit_yan1
+bounds:396,437,16,18
+hit_yan2
+bounds:111,321,20,20
+leg_l
+bounds:2,9,81,62
+rotate:90
+leg_r
+bounds:396,457,83,44
+mouth_1
+bounds:156,435,152,66
+mouth_2
+bounds:2,418,152,83
+spine
+bounds:2,296,107,120
+ya
+bounds:111,343,73,35
+offsets:0,0,73,36
+rotate:90
+yingzi
+bounds:80,110,83,19
+rotate:90
diff --git a/Assets/arts/spines/characters/m10050/m10050.atlas.txt.meta b/Assets/arts/spines/characters/m10050/m10050.atlas.txt.meta
new file mode 100644
index 000000000..e3332c335
--- /dev/null
+++ b/Assets/arts/spines/characters/m10050/m10050.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 50442a4cea8a9e34f95a8c1da4e462d8
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10050/m10050.png b/Assets/arts/spines/characters/m10050/m10050.png
new file mode 100644
index 000000000..a08682897
Binary files /dev/null and b/Assets/arts/spines/characters/m10050/m10050.png differ
diff --git a/Assets/arts/spines/characters/m10050/m10050.png.meta b/Assets/arts/spines/characters/m10050/m10050.png.meta
new file mode 100644
index 000000000..21ad3a5b5
--- /dev/null
+++ b/Assets/arts/spines/characters/m10050/m10050.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 36d39e13b0bbc984eb3dc66b9300c0a5
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 0
+ wrapV: 0
+ wrapW: 0
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 1
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 1
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10050/m10050.skel.bytes b/Assets/arts/spines/characters/m10050/m10050.skel.bytes
new file mode 100644
index 000000000..6af4191ab
Binary files /dev/null and b/Assets/arts/spines/characters/m10050/m10050.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10050/m10050.skel.bytes.meta b/Assets/arts/spines/characters/m10050/m10050.skel.bytes.meta
new file mode 100644
index 000000000..47fc53a01
--- /dev/null
+++ b/Assets/arts/spines/characters/m10050/m10050.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 3212b07added1124388193c30587033b
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10050/m10050_atlas.asset b/Assets/arts/spines/characters/m10050/m10050_atlas.asset
new file mode 100644
index 000000000..70cd10525
--- /dev/null
+++ b/Assets/arts/spines/characters/m10050/m10050_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m10050_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: 50442a4cea8a9e34f95a8c1da4e462d8, type: 3}
+ materials:
+ - {fileID: 2100000, guid: b569627ef8f36ba4ea97e3b91544b955, type: 2}
diff --git a/Assets/arts/spines/characters/m10050/m10050_atlas.asset.meta b/Assets/arts/spines/characters/m10050/m10050_atlas.asset.meta
new file mode 100644
index 000000000..b69049612
--- /dev/null
+++ b/Assets/arts/spines/characters/m10050/m10050_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 7ffc44bd3cd1bd046a06a96171875233
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10050/m10050_material.mat b/Assets/arts/spines/characters/m10050/m10050_material.mat
new file mode 100644
index 000000000..68525a722
--- /dev/null
+++ b/Assets/arts/spines/characters/m10050/m10050_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m10050_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 36d39e13b0bbc984eb3dc66b9300c0a5, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m10050/m10050_material.mat.meta b/Assets/arts/spines/characters/m10050/m10050_material.mat.meta
new file mode 100644
index 000000000..f5ac55db2
--- /dev/null
+++ b/Assets/arts/spines/characters/m10050/m10050_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: b569627ef8f36ba4ea97e3b91544b955
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10050/m10050_skeletondata.asset b/Assets/arts/spines/characters/m10050/m10050_skeletondata.asset
new file mode 100644
index 000000000..4f1e81b95
--- /dev/null
+++ b/Assets/arts/spines/characters/m10050/m10050_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m10050_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: 7ffc44bd3cd1bd046a06a96171875233, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 3212b07added1124388193c30587033b, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m10050/m10050_skeletondata.asset.meta b/Assets/arts/spines/characters/m10050/m10050_skeletondata.asset.meta
new file mode 100644
index 000000000..85cf2e08d
--- /dev/null
+++ b/Assets/arts/spines/characters/m10050/m10050_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 2d19af0f95f004047ab8028e60af5221
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10051.meta b/Assets/arts/spines/characters/m10051.meta
new file mode 100644
index 000000000..fbaead668
--- /dev/null
+++ b/Assets/arts/spines/characters/m10051.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: a96937ae7d393e44b9dea79605053e59
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10051/m10051.atlas.txt b/Assets/arts/spines/characters/m10051/m10051.atlas.txt
new file mode 100644
index 000000000..96938eb88
--- /dev/null
+++ b/Assets/arts/spines/characters/m10051/m10051.atlas.txt
@@ -0,0 +1,40 @@
+m10051.png
+size:512,512
+filter:Linear,Linear
+eye
+bounds:2,2,37,31
+eye_xuanyun
+bounds:347,464,20,20
+gutou
+bounds:2,225,70,53
+head_1
+bounds:195,370,43,71
+head_2
+bounds:274,462,43,71
+rotate:90
+hit_yan3
+bounds:240,368,28,28
+kulou
+bounds:195,443,77,62
+offsets:0,1,77,63
+leg_1
+bounds:117,294,54,69
+rotate:90
+leg_2
+bounds:240,398,43,43
+leg_3
+bounds:2,35,51,53
+leg_4
+bounds:2,160,50,63
+mouth
+bounds:2,280,113,68
+nose
+bounds:2,90,68,45
+rotate:90
+spine
+bounds:2,350,191,155
+tail
+bounds:74,226,52,43
+rotate:90
+yingzi
+bounds:347,486,83,19
diff --git a/Assets/arts/spines/characters/m10051/m10051.atlas.txt.meta b/Assets/arts/spines/characters/m10051/m10051.atlas.txt.meta
new file mode 100644
index 000000000..0abfac850
--- /dev/null
+++ b/Assets/arts/spines/characters/m10051/m10051.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 76905177b0ef9314cbb4757ea41ac810
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10051/m10051.png b/Assets/arts/spines/characters/m10051/m10051.png
new file mode 100644
index 000000000..cfc59baaf
Binary files /dev/null and b/Assets/arts/spines/characters/m10051/m10051.png differ
diff --git a/Assets/arts/spines/characters/m10051/m10051.png.meta b/Assets/arts/spines/characters/m10051/m10051.png.meta
new file mode 100644
index 000000000..cf4c8232a
--- /dev/null
+++ b/Assets/arts/spines/characters/m10051/m10051.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: de0f67982c858f54392013fec0575b9c
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10051/m10051.skel.bytes b/Assets/arts/spines/characters/m10051/m10051.skel.bytes
new file mode 100644
index 000000000..43c246fbb
Binary files /dev/null and b/Assets/arts/spines/characters/m10051/m10051.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10051/m10051.skel.bytes.meta b/Assets/arts/spines/characters/m10051/m10051.skel.bytes.meta
new file mode 100644
index 000000000..ca82e161d
--- /dev/null
+++ b/Assets/arts/spines/characters/m10051/m10051.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 1e8421a4f7e97e14eacae2c6defbc60c
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10051/m10051_atlas.asset b/Assets/arts/spines/characters/m10051/m10051_atlas.asset
new file mode 100644
index 000000000..d3bbdb0d4
--- /dev/null
+++ b/Assets/arts/spines/characters/m10051/m10051_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m10051_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: 76905177b0ef9314cbb4757ea41ac810, type: 3}
+ materials:
+ - {fileID: 2100000, guid: d392ce1f350fd904fbeb56b5ee354322, type: 2}
diff --git a/Assets/arts/spines/characters/m10051/m10051_atlas.asset.meta b/Assets/arts/spines/characters/m10051/m10051_atlas.asset.meta
new file mode 100644
index 000000000..703f95dce
--- /dev/null
+++ b/Assets/arts/spines/characters/m10051/m10051_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 941ec41e35a83a547897f97085690bb6
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10051/m10051_material.mat b/Assets/arts/spines/characters/m10051/m10051_material.mat
new file mode 100644
index 000000000..ef9efc2d4
--- /dev/null
+++ b/Assets/arts/spines/characters/m10051/m10051_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m10051_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: de0f67982c858f54392013fec0575b9c, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m10051/m10051_material.mat.meta b/Assets/arts/spines/characters/m10051/m10051_material.mat.meta
new file mode 100644
index 000000000..5a38ba47d
--- /dev/null
+++ b/Assets/arts/spines/characters/m10051/m10051_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: d392ce1f350fd904fbeb56b5ee354322
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10051/m10051_skeletondata.asset b/Assets/arts/spines/characters/m10051/m10051_skeletondata.asset
new file mode 100644
index 000000000..99c620722
--- /dev/null
+++ b/Assets/arts/spines/characters/m10051/m10051_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m10051_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: 941ec41e35a83a547897f97085690bb6, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 1e8421a4f7e97e14eacae2c6defbc60c, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m10051/m10051_skeletondata.asset.meta b/Assets/arts/spines/characters/m10051/m10051_skeletondata.asset.meta
new file mode 100644
index 000000000..730e4bbab
--- /dev/null
+++ b/Assets/arts/spines/characters/m10051/m10051_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: ef0f89159072de34e980849628f0190b
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10052.meta b/Assets/arts/spines/characters/m10052.meta
new file mode 100644
index 000000000..dfb5d4e5d
--- /dev/null
+++ b/Assets/arts/spines/characters/m10052.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 8145bd91f6d64754a8417e71a7480756
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10052/m10052.atlas.txt b/Assets/arts/spines/characters/m10052/m10052.atlas.txt
new file mode 100644
index 000000000..de59deaae
--- /dev/null
+++ b/Assets/arts/spines/characters/m10052/m10052.atlas.txt
@@ -0,0 +1,35 @@
+m10052.png
+size:512,512
+filter:Linear,Linear
+chibang_L
+bounds:2,330,114,82
+chibang_R
+bounds:2,414,115,91
+eye_L
+bounds:2,32,31,27
+eye_R
+bounds:459,476,31,29
+eye_xuanyun
+bounds:78,184,20,20
+gutou
+bounds:387,452,70,53
+hand_L
+bounds:2,61,47,67
+hand_R
+bounds:2,130,53,74
+head_1
+bounds:2,206,103,59
+head_2
+bounds:119,415,99,90
+hit_yan3
+bounds:2,2,28,28
+kulou
+bounds:308,443,77,62
+offsets:0,1,77,63
+mouth
+bounds:2,267,108,61
+spine
+bounds:220,426,86,79
+yingzi
+bounds:57,121,83,19
+rotate:90
diff --git a/Assets/arts/spines/characters/m10052/m10052.atlas.txt.meta b/Assets/arts/spines/characters/m10052/m10052.atlas.txt.meta
new file mode 100644
index 000000000..8da7b5f10
--- /dev/null
+++ b/Assets/arts/spines/characters/m10052/m10052.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: bca25869e40bf7843b4ec396a5d2601f
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10052/m10052.png b/Assets/arts/spines/characters/m10052/m10052.png
new file mode 100644
index 000000000..12c7a647c
Binary files /dev/null and b/Assets/arts/spines/characters/m10052/m10052.png differ
diff --git a/Assets/arts/spines/characters/m10052/m10052.png.meta b/Assets/arts/spines/characters/m10052/m10052.png.meta
new file mode 100644
index 000000000..727dd968d
--- /dev/null
+++ b/Assets/arts/spines/characters/m10052/m10052.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 58ac6e582e97d3c4bb0dda94101e0797
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10052/m10052.skel.bytes b/Assets/arts/spines/characters/m10052/m10052.skel.bytes
new file mode 100644
index 000000000..c489913da
Binary files /dev/null and b/Assets/arts/spines/characters/m10052/m10052.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10052/m10052.skel.bytes.meta b/Assets/arts/spines/characters/m10052/m10052.skel.bytes.meta
new file mode 100644
index 000000000..972c3ee63
--- /dev/null
+++ b/Assets/arts/spines/characters/m10052/m10052.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 4e41f7188aa904d4aa21eb21d9670475
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10052/m10052_atlas.asset b/Assets/arts/spines/characters/m10052/m10052_atlas.asset
new file mode 100644
index 000000000..778c1c4bf
--- /dev/null
+++ b/Assets/arts/spines/characters/m10052/m10052_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m10052_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: bca25869e40bf7843b4ec396a5d2601f, type: 3}
+ materials:
+ - {fileID: 2100000, guid: ed3113b8c8c44b94fbe0fa4a93107023, type: 2}
diff --git a/Assets/arts/spines/characters/m10052/m10052_atlas.asset.meta b/Assets/arts/spines/characters/m10052/m10052_atlas.asset.meta
new file mode 100644
index 000000000..d8d7cd074
--- /dev/null
+++ b/Assets/arts/spines/characters/m10052/m10052_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 1cf8532b2c03b83468f85375bfa5b7c8
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10052/m10052_material.mat b/Assets/arts/spines/characters/m10052/m10052_material.mat
new file mode 100644
index 000000000..d005422d2
--- /dev/null
+++ b/Assets/arts/spines/characters/m10052/m10052_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m10052_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 58ac6e582e97d3c4bb0dda94101e0797, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m10052/m10052_material.mat.meta b/Assets/arts/spines/characters/m10052/m10052_material.mat.meta
new file mode 100644
index 000000000..ac60ec8f2
--- /dev/null
+++ b/Assets/arts/spines/characters/m10052/m10052_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: ed3113b8c8c44b94fbe0fa4a93107023
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10052/m10052_skeletondata.asset b/Assets/arts/spines/characters/m10052/m10052_skeletondata.asset
new file mode 100644
index 000000000..07b5d3879
--- /dev/null
+++ b/Assets/arts/spines/characters/m10052/m10052_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m10052_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: 1cf8532b2c03b83468f85375bfa5b7c8, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 4e41f7188aa904d4aa21eb21d9670475, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m10052/m10052_skeletondata.asset.meta b/Assets/arts/spines/characters/m10052/m10052_skeletondata.asset.meta
new file mode 100644
index 000000000..5b6ee7830
--- /dev/null
+++ b/Assets/arts/spines/characters/m10052/m10052_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: c5ccbd6f4d84f9947bd1dd0ac8123a59
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10053.meta b/Assets/arts/spines/characters/m10053.meta
new file mode 100644
index 000000000..ae2b58db6
--- /dev/null
+++ b/Assets/arts/spines/characters/m10053.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 91f79f505ca1203498c42f33f5c99091
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10053/m10053.atlas.txt b/Assets/arts/spines/characters/m10053/m10053.atlas.txt
new file mode 100644
index 000000000..4306c6de2
--- /dev/null
+++ b/Assets/arts/spines/characters/m10053/m10053.atlas.txt
@@ -0,0 +1,25 @@
+m10053.png
+size:256,256
+filter:Linear,Linear
+eye_L
+bounds:164,52,32,24
+eye_R
+bounds:164,78,33,24
+eye_xuanyun
+bounds:220,155,20,20
+hand_L_1
+bounds:91,39,71,74
+hand_L_2
+bounds:91,2,55,35
+hand_R_1
+bounds:159,177,78,77
+hand_R_2
+bounds:159,137,59,38
+head_1
+bounds:2,37,87,76
+head_2
+bounds:2,115,155,139
+tail
+bounds:164,104,50,31
+yingzi
+bounds:2,16,83,19
diff --git a/Assets/arts/spines/characters/m10053/m10053.atlas.txt.meta b/Assets/arts/spines/characters/m10053/m10053.atlas.txt.meta
new file mode 100644
index 000000000..85b661368
--- /dev/null
+++ b/Assets/arts/spines/characters/m10053/m10053.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 33f53b710cb1d4a4a95282f593f3dad7
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10053/m10053.png b/Assets/arts/spines/characters/m10053/m10053.png
new file mode 100644
index 000000000..d66265114
Binary files /dev/null and b/Assets/arts/spines/characters/m10053/m10053.png differ
diff --git a/Assets/arts/spines/characters/m10053/m10053.png.meta b/Assets/arts/spines/characters/m10053/m10053.png.meta
new file mode 100644
index 000000000..b63cb279b
--- /dev/null
+++ b/Assets/arts/spines/characters/m10053/m10053.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: dcfc9bc111ab1454b806bdfafedf9f74
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10053/m10053.skel.bytes b/Assets/arts/spines/characters/m10053/m10053.skel.bytes
new file mode 100644
index 000000000..7bb8d9bce
Binary files /dev/null and b/Assets/arts/spines/characters/m10053/m10053.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10053/m10053.skel.bytes.meta b/Assets/arts/spines/characters/m10053/m10053.skel.bytes.meta
new file mode 100644
index 000000000..78b311a8d
--- /dev/null
+++ b/Assets/arts/spines/characters/m10053/m10053.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 45e055f2568bf3344be90662dd22ce8b
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10053/m10053_atlas.asset b/Assets/arts/spines/characters/m10053/m10053_atlas.asset
new file mode 100644
index 000000000..a055565f4
--- /dev/null
+++ b/Assets/arts/spines/characters/m10053/m10053_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m10053_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: 33f53b710cb1d4a4a95282f593f3dad7, type: 3}
+ materials:
+ - {fileID: 2100000, guid: 65a84ae7b0d21dd459a7ec3b546c91b4, type: 2}
diff --git a/Assets/arts/spines/characters/m10053/m10053_atlas.asset.meta b/Assets/arts/spines/characters/m10053/m10053_atlas.asset.meta
new file mode 100644
index 000000000..f8b69fadc
--- /dev/null
+++ b/Assets/arts/spines/characters/m10053/m10053_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: ec1174b4ba742b64fb191f6fcbcb3ce6
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10053/m10053_material.mat b/Assets/arts/spines/characters/m10053/m10053_material.mat
new file mode 100644
index 000000000..bdf39495d
--- /dev/null
+++ b/Assets/arts/spines/characters/m10053/m10053_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m10053_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: dcfc9bc111ab1454b806bdfafedf9f74, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m10053/m10053_material.mat.meta b/Assets/arts/spines/characters/m10053/m10053_material.mat.meta
new file mode 100644
index 000000000..bc1fcc463
--- /dev/null
+++ b/Assets/arts/spines/characters/m10053/m10053_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 65a84ae7b0d21dd459a7ec3b546c91b4
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10053/m10053_skeletondata.asset b/Assets/arts/spines/characters/m10053/m10053_skeletondata.asset
new file mode 100644
index 000000000..60a5d1ee7
--- /dev/null
+++ b/Assets/arts/spines/characters/m10053/m10053_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m10053_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: ec1174b4ba742b64fb191f6fcbcb3ce6, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 45e055f2568bf3344be90662dd22ce8b, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m10053/m10053_skeletondata.asset.meta b/Assets/arts/spines/characters/m10053/m10053_skeletondata.asset.meta
new file mode 100644
index 000000000..146dd9994
--- /dev/null
+++ b/Assets/arts/spines/characters/m10053/m10053_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: f47d4fed4d710d84bb67352eab25b4ac
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10054.meta b/Assets/arts/spines/characters/m10054.meta
new file mode 100644
index 000000000..ad65fe34c
--- /dev/null
+++ b/Assets/arts/spines/characters/m10054.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 603961b0db3816446b02ae31950ccd1b
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10054/m10054.atlas.txt b/Assets/arts/spines/characters/m10054/m10054.atlas.txt
new file mode 100644
index 000000000..7ec59f633
--- /dev/null
+++ b/Assets/arts/spines/characters/m10054/m10054.atlas.txt
@@ -0,0 +1,31 @@
+m10054.png
+size:256,256
+filter:Linear,Linear
+eye_L
+bounds:165,72,33,24
+offsets:1,1,35,26
+eye_R
+bounds:165,46,33,24
+offsets:1,1,35,26
+eye_xuanyun
+bounds:139,13,20,20
+hand_L_1
+bounds:91,35,72,76
+hand_L_2
+bounds:165,98,54,35
+offsets:1,1,56,37
+hand_R_1
+bounds:161,175,79,79
+hand_R_2
+bounds:161,135,59,38
+offsets:1,1,61,40
+head_1
+bounds:2,35,87,76
+offsets:1,1,89,78
+head_2
+bounds:2,113,157,141
+tail
+bounds:2,2,50,31
+offsets:1,1,52,33
+yingzi
+bounds:54,14,83,19
diff --git a/Assets/arts/spines/characters/m10054/m10054.atlas.txt.meta b/Assets/arts/spines/characters/m10054/m10054.atlas.txt.meta
new file mode 100644
index 000000000..9b8a3054b
--- /dev/null
+++ b/Assets/arts/spines/characters/m10054/m10054.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 5a92680326419c340acafbad37d22a12
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10054/m10054.png b/Assets/arts/spines/characters/m10054/m10054.png
new file mode 100644
index 000000000..46c3b3b9f
Binary files /dev/null and b/Assets/arts/spines/characters/m10054/m10054.png differ
diff --git a/Assets/arts/spines/characters/m10054/m10054.png.meta b/Assets/arts/spines/characters/m10054/m10054.png.meta
new file mode 100644
index 000000000..6b2e0d5d3
--- /dev/null
+++ b/Assets/arts/spines/characters/m10054/m10054.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 5039b5c4f3cf2284daea14c796b0dcf3
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10054/m10054.skel.bytes b/Assets/arts/spines/characters/m10054/m10054.skel.bytes
new file mode 100644
index 000000000..e73e837c9
Binary files /dev/null and b/Assets/arts/spines/characters/m10054/m10054.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10054/m10054.skel.bytes.meta b/Assets/arts/spines/characters/m10054/m10054.skel.bytes.meta
new file mode 100644
index 000000000..96b98c46f
--- /dev/null
+++ b/Assets/arts/spines/characters/m10054/m10054.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 2c99eb4b09453b24896595bc93d4b31f
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10054/m10054_atlas.asset b/Assets/arts/spines/characters/m10054/m10054_atlas.asset
new file mode 100644
index 000000000..ea3e59c30
--- /dev/null
+++ b/Assets/arts/spines/characters/m10054/m10054_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m10054_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: 5a92680326419c340acafbad37d22a12, type: 3}
+ materials:
+ - {fileID: 2100000, guid: 5d121cfecd33c9043add87b83a4aad16, type: 2}
diff --git a/Assets/arts/spines/characters/m10054/m10054_atlas.asset.meta b/Assets/arts/spines/characters/m10054/m10054_atlas.asset.meta
new file mode 100644
index 000000000..687e23cfc
--- /dev/null
+++ b/Assets/arts/spines/characters/m10054/m10054_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: d8382506914b55b409d155261612f600
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10054/m10054_material.mat b/Assets/arts/spines/characters/m10054/m10054_material.mat
new file mode 100644
index 000000000..79ddd1516
--- /dev/null
+++ b/Assets/arts/spines/characters/m10054/m10054_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m10054_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 5039b5c4f3cf2284daea14c796b0dcf3, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m10054/m10054_material.mat.meta b/Assets/arts/spines/characters/m10054/m10054_material.mat.meta
new file mode 100644
index 000000000..57a104d70
--- /dev/null
+++ b/Assets/arts/spines/characters/m10054/m10054_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 5d121cfecd33c9043add87b83a4aad16
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10054/m10054_skeletondata.asset b/Assets/arts/spines/characters/m10054/m10054_skeletondata.asset
new file mode 100644
index 000000000..b30059b71
--- /dev/null
+++ b/Assets/arts/spines/characters/m10054/m10054_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m10054_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: d8382506914b55b409d155261612f600, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 2c99eb4b09453b24896595bc93d4b31f, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m10054/m10054_skeletondata.asset.meta b/Assets/arts/spines/characters/m10054/m10054_skeletondata.asset.meta
new file mode 100644
index 000000000..2daa9b05c
--- /dev/null
+++ b/Assets/arts/spines/characters/m10054/m10054_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 4dab06e38dd35404b88552a0148fd88f
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10055.meta b/Assets/arts/spines/characters/m10055.meta
new file mode 100644
index 000000000..17858229c
--- /dev/null
+++ b/Assets/arts/spines/characters/m10055.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: e9dab0269a8efc74c8155f246dac3c02
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10055/m10055.atlas.txt b/Assets/arts/spines/characters/m10055/m10055.atlas.txt
new file mode 100644
index 000000000..0d59f6ef2
--- /dev/null
+++ b/Assets/arts/spines/characters/m10055/m10055.atlas.txt
@@ -0,0 +1,43 @@
+m10055.png
+size:512,512
+filter:Linear,Linear
+eye_L
+bounds:119,197,20,21
+eye_R
+bounds:241,380,31,26
+eye_xuanyun
+bounds:114,175,20,20
+gutou
+bounds:427,457,70,53
+hand_L_1
+bounds:119,220,45,51
+hand_L_2
+bounds:173,304,34,41
+hand_R_1
+bounds:2,12,55,34
+hand_R_2
+bounds:86,145,50,26
+rotate:90
+head_1
+bounds:169,408,103,102
+head_2
+bounds:2,197,115,146
+hit_yan3
+bounds:274,410,28,28
+kulou
+bounds:348,448,77,62
+offsets:0,1,77,63
+spine
+bounds:2,345,165,165
+upperarm_L_2
+bounds:119,273,52,70
+upperarm_L_3
+bounds:169,347,70,59
+upperarm_R_1
+bounds:274,440,72,70
+upperarm_R_2
+bounds:2,48,67,74
+upperarm_R_3
+bounds:2,124,82,71
+yingzi
+bounds:427,436,83,19
diff --git a/Assets/arts/spines/characters/m10055/m10055.atlas.txt.meta b/Assets/arts/spines/characters/m10055/m10055.atlas.txt.meta
new file mode 100644
index 000000000..819bbb436
--- /dev/null
+++ b/Assets/arts/spines/characters/m10055/m10055.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: b252e9bf984b7d344993c987d249ce7b
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10055/m10055.png b/Assets/arts/spines/characters/m10055/m10055.png
new file mode 100644
index 000000000..264b60629
Binary files /dev/null and b/Assets/arts/spines/characters/m10055/m10055.png differ
diff --git a/Assets/arts/spines/characters/m10055/m10055.png.meta b/Assets/arts/spines/characters/m10055/m10055.png.meta
new file mode 100644
index 000000000..93724d6b7
--- /dev/null
+++ b/Assets/arts/spines/characters/m10055/m10055.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 127468c294602ca4497680428e179d67
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10055/m10055.skel.bytes b/Assets/arts/spines/characters/m10055/m10055.skel.bytes
new file mode 100644
index 000000000..13e6f3e2e
Binary files /dev/null and b/Assets/arts/spines/characters/m10055/m10055.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10055/m10055.skel.bytes.meta b/Assets/arts/spines/characters/m10055/m10055.skel.bytes.meta
new file mode 100644
index 000000000..587971763
--- /dev/null
+++ b/Assets/arts/spines/characters/m10055/m10055.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 2e8d681348a4094489097b1153d0ff68
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10055/m10055_atlas.asset b/Assets/arts/spines/characters/m10055/m10055_atlas.asset
new file mode 100644
index 000000000..45d184864
--- /dev/null
+++ b/Assets/arts/spines/characters/m10055/m10055_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m10055_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: b252e9bf984b7d344993c987d249ce7b, type: 3}
+ materials:
+ - {fileID: 2100000, guid: 3dde5ffb8d24e5347bd4a49546cc43c9, type: 2}
diff --git a/Assets/arts/spines/characters/m10055/m10055_atlas.asset.meta b/Assets/arts/spines/characters/m10055/m10055_atlas.asset.meta
new file mode 100644
index 000000000..60815128c
--- /dev/null
+++ b/Assets/arts/spines/characters/m10055/m10055_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: aaf7a08c93c38b042a55e922b0adec24
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10055/m10055_material.mat b/Assets/arts/spines/characters/m10055/m10055_material.mat
new file mode 100644
index 000000000..8be5785f9
--- /dev/null
+++ b/Assets/arts/spines/characters/m10055/m10055_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m10055_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 127468c294602ca4497680428e179d67, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m10055/m10055_material.mat.meta b/Assets/arts/spines/characters/m10055/m10055_material.mat.meta
new file mode 100644
index 000000000..780e6acee
--- /dev/null
+++ b/Assets/arts/spines/characters/m10055/m10055_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 3dde5ffb8d24e5347bd4a49546cc43c9
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10055/m10055_skeletondata.asset b/Assets/arts/spines/characters/m10055/m10055_skeletondata.asset
new file mode 100644
index 000000000..bfc3c37ad
--- /dev/null
+++ b/Assets/arts/spines/characters/m10055/m10055_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m10055_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: aaf7a08c93c38b042a55e922b0adec24, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 2e8d681348a4094489097b1153d0ff68, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m10055/m10055_skeletondata.asset.meta b/Assets/arts/spines/characters/m10055/m10055_skeletondata.asset.meta
new file mode 100644
index 000000000..88285362a
--- /dev/null
+++ b/Assets/arts/spines/characters/m10055/m10055_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 690a3875ae5a80b47b34af40f0510dbe
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10056.meta b/Assets/arts/spines/characters/m10056.meta
new file mode 100644
index 000000000..b0ed3c44f
--- /dev/null
+++ b/Assets/arts/spines/characters/m10056.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: ddbbb91800c53e84d90095e1a1d28371
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10056/m10056.atlas.txt b/Assets/arts/spines/characters/m10056/m10056.atlas.txt
new file mode 100644
index 000000000..f1c4a091b
--- /dev/null
+++ b/Assets/arts/spines/characters/m10056/m10056.atlas.txt
@@ -0,0 +1,43 @@
+m10056.png
+size:512,512
+filter:Linear,Linear
+eye_L
+bounds:119,197,20,21
+eye_R
+bounds:241,380,31,26
+eye_xuanyun
+bounds:114,175,20,20
+gutou
+bounds:427,457,70,53
+hand_L_1
+bounds:119,220,45,51
+hand_L_2
+bounds:173,304,34,41
+hand_R_1
+bounds:2,12,55,34
+hand_R_2
+bounds:86,145,50,26
+rotate:90
+head_1
+bounds:169,408,103,102
+head_2
+bounds:2,197,115,146
+hit_yan3
+bounds:274,410,28,28
+kulou
+bounds:348,448,77,62
+offsets:0,1,77,63
+spine
+bounds:2,345,165,165
+upperarm_L_2
+bounds:119,273,52,70
+upperarm_L_3
+bounds:169,347,70,59
+upperarm_R_1
+bounds:274,440,72,70
+upperarm_R_2
+bounds:2,48,67,74
+upperarm_R_3
+bounds:2,124,82,71
+yingzi
+bounds:427,436,83,19
diff --git a/Assets/arts/spines/characters/m10056/m10056.atlas.txt.meta b/Assets/arts/spines/characters/m10056/m10056.atlas.txt.meta
new file mode 100644
index 000000000..f93714091
--- /dev/null
+++ b/Assets/arts/spines/characters/m10056/m10056.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 198eee94f0c9c3a48ab1fa3aa28e25bc
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10056/m10056.png b/Assets/arts/spines/characters/m10056/m10056.png
new file mode 100644
index 000000000..c50ab3f15
Binary files /dev/null and b/Assets/arts/spines/characters/m10056/m10056.png differ
diff --git a/Assets/arts/spines/characters/m10056/m10056.png.meta b/Assets/arts/spines/characters/m10056/m10056.png.meta
new file mode 100644
index 000000000..07e537755
--- /dev/null
+++ b/Assets/arts/spines/characters/m10056/m10056.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 8f09e345b62671043a5afb9c8edb1675
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10056/m10056.skel.bytes b/Assets/arts/spines/characters/m10056/m10056.skel.bytes
new file mode 100644
index 000000000..87068803b
Binary files /dev/null and b/Assets/arts/spines/characters/m10056/m10056.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10056/m10056.skel.bytes.meta b/Assets/arts/spines/characters/m10056/m10056.skel.bytes.meta
new file mode 100644
index 000000000..d0710c8eb
--- /dev/null
+++ b/Assets/arts/spines/characters/m10056/m10056.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 16cbc9a621fb74147ad9e31f5cf24702
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10056/m10056_atlas.asset b/Assets/arts/spines/characters/m10056/m10056_atlas.asset
new file mode 100644
index 000000000..03d4983b3
--- /dev/null
+++ b/Assets/arts/spines/characters/m10056/m10056_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m10056_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: 198eee94f0c9c3a48ab1fa3aa28e25bc, type: 3}
+ materials:
+ - {fileID: 2100000, guid: 18cbe74e5a386a4468a0a3ec31a8f31f, type: 2}
diff --git a/Assets/arts/spines/characters/m10056/m10056_atlas.asset.meta b/Assets/arts/spines/characters/m10056/m10056_atlas.asset.meta
new file mode 100644
index 000000000..b8764275d
--- /dev/null
+++ b/Assets/arts/spines/characters/m10056/m10056_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 73eb67524ed74534ab699e72961d4de4
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10056/m10056_material.mat b/Assets/arts/spines/characters/m10056/m10056_material.mat
new file mode 100644
index 000000000..bc536ba5f
--- /dev/null
+++ b/Assets/arts/spines/characters/m10056/m10056_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m10056_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 8f09e345b62671043a5afb9c8edb1675, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m10056/m10056_material.mat.meta b/Assets/arts/spines/characters/m10056/m10056_material.mat.meta
new file mode 100644
index 000000000..c6a587577
--- /dev/null
+++ b/Assets/arts/spines/characters/m10056/m10056_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 18cbe74e5a386a4468a0a3ec31a8f31f
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10056/m10056_skeletondata.asset b/Assets/arts/spines/characters/m10056/m10056_skeletondata.asset
new file mode 100644
index 000000000..3dc6e5391
--- /dev/null
+++ b/Assets/arts/spines/characters/m10056/m10056_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m10056_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: 73eb67524ed74534ab699e72961d4de4, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 16cbc9a621fb74147ad9e31f5cf24702, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m10056/m10056_skeletondata.asset.meta b/Assets/arts/spines/characters/m10056/m10056_skeletondata.asset.meta
new file mode 100644
index 000000000..6ea698d74
--- /dev/null
+++ b/Assets/arts/spines/characters/m10056/m10056_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: f60de49a3de9e3b458b348a752ee7e8d
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10057.meta b/Assets/arts/spines/characters/m10057.meta
new file mode 100644
index 000000000..ad375a2ef
--- /dev/null
+++ b/Assets/arts/spines/characters/m10057.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 718e37b985b363e409e2b504908592b7
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10057/m10057.atlas.txt b/Assets/arts/spines/characters/m10057/m10057.atlas.txt
new file mode 100644
index 000000000..8fc5ea082
--- /dev/null
+++ b/Assets/arts/spines/characters/m10057/m10057.atlas.txt
@@ -0,0 +1,53 @@
+m10057.png
+size:512,512
+filter:Linear,Linear
+clothes
+bounds:2,178,86,63
+offsets:1,1,88,65
+eye
+bounds:464,441,20,46
+offsets:1,1,22,48
+rotate:90
+eye_xuanyun
+bounds:419,397,20,20
+hand_L
+bounds:54,136,40,34
+offsets:1,1,42,36
+rotate:90
+hand_R
+bounds:144,272,37,32
+offsets:1,1,39,34
+head
+bounds:2,243,140,134
+offsets:1,1,142,136
+hit_yan3
+bounds:186,328,28,28
+leg_L
+bounds:90,194,43,47
+leg_R
+bounds:144,306,40,50
+spine
+bounds:295,397,122,113
+upperarm_L_1
+bounds:2,132,50,44
+offsets:1,1,52,46
+upperarm_L_2
+bounds:90,154,35,38
+offsets:1,1,37,40
+upperarm_L_3
+bounds:419,419,43,45
+offsets:1,1,45,47
+upperarm_R_1
+bounds:419,466,55,44
+offsets:1,1,57,46
+upperarm_R_2
+bounds:476,463,34,47
+offsets:1,1,36,49
+upperarm_R_3
+bounds:2,89,43,41
+offsets:1,1,45,43
+weapon_1
+bounds:2,379,291,131
+offsets:1,1,293,133
+yingzi
+bounds:144,358,83,19
diff --git a/Assets/arts/spines/characters/m10057/m10057.atlas.txt.meta b/Assets/arts/spines/characters/m10057/m10057.atlas.txt.meta
new file mode 100644
index 000000000..695048433
--- /dev/null
+++ b/Assets/arts/spines/characters/m10057/m10057.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: ad1294fc029d89149ae561bbf3cb8948
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10057/m10057.png b/Assets/arts/spines/characters/m10057/m10057.png
new file mode 100644
index 000000000..4642a759e
Binary files /dev/null and b/Assets/arts/spines/characters/m10057/m10057.png differ
diff --git a/Assets/arts/spines/characters/m10057/m10057.png.meta b/Assets/arts/spines/characters/m10057/m10057.png.meta
new file mode 100644
index 000000000..edf7652f8
--- /dev/null
+++ b/Assets/arts/spines/characters/m10057/m10057.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 722afdc6b17e2b74799c3f7e1cd6674f
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10057/m10057.skel.bytes b/Assets/arts/spines/characters/m10057/m10057.skel.bytes
new file mode 100644
index 000000000..1021c85ca
Binary files /dev/null and b/Assets/arts/spines/characters/m10057/m10057.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10057/m10057.skel.bytes.meta b/Assets/arts/spines/characters/m10057/m10057.skel.bytes.meta
new file mode 100644
index 000000000..6cf5e7b8b
--- /dev/null
+++ b/Assets/arts/spines/characters/m10057/m10057.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: a3d31751b19270c48bee2f8eb1d01c53
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10057/m10057_atlas.asset b/Assets/arts/spines/characters/m10057/m10057_atlas.asset
new file mode 100644
index 000000000..3e1e3b2fe
--- /dev/null
+++ b/Assets/arts/spines/characters/m10057/m10057_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m10057_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: ad1294fc029d89149ae561bbf3cb8948, type: 3}
+ materials:
+ - {fileID: 2100000, guid: 2ec8e61f74c647b4aa242bcef3b26953, type: 2}
diff --git a/Assets/arts/spines/characters/m10057/m10057_atlas.asset.meta b/Assets/arts/spines/characters/m10057/m10057_atlas.asset.meta
new file mode 100644
index 000000000..8ee9b1210
--- /dev/null
+++ b/Assets/arts/spines/characters/m10057/m10057_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 14e91eab238f875469bde437df7f7215
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10057/m10057_material.mat b/Assets/arts/spines/characters/m10057/m10057_material.mat
new file mode 100644
index 000000000..65a18b5a4
--- /dev/null
+++ b/Assets/arts/spines/characters/m10057/m10057_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m10057_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 722afdc6b17e2b74799c3f7e1cd6674f, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m10057/m10057_material.mat.meta b/Assets/arts/spines/characters/m10057/m10057_material.mat.meta
new file mode 100644
index 000000000..27391ffae
--- /dev/null
+++ b/Assets/arts/spines/characters/m10057/m10057_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 2ec8e61f74c647b4aa242bcef3b26953
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10057/m10057_skeletondata.asset b/Assets/arts/spines/characters/m10057/m10057_skeletondata.asset
new file mode 100644
index 000000000..1f79ea8e4
--- /dev/null
+++ b/Assets/arts/spines/characters/m10057/m10057_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m10057_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: 14e91eab238f875469bde437df7f7215, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: a3d31751b19270c48bee2f8eb1d01c53, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m10057/m10057_skeletondata.asset.meta b/Assets/arts/spines/characters/m10057/m10057_skeletondata.asset.meta
new file mode 100644
index 000000000..53ea9c990
--- /dev/null
+++ b/Assets/arts/spines/characters/m10057/m10057_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 416105983ca3bb3489c2b87f97c8ab10
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10058.meta b/Assets/arts/spines/characters/m10058.meta
new file mode 100644
index 000000000..a17c2af0e
--- /dev/null
+++ b/Assets/arts/spines/characters/m10058.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 9e637e444b1099047ad038d83d08303b
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10058/m10058.atlas.txt b/Assets/arts/spines/characters/m10058/m10058.atlas.txt
new file mode 100644
index 000000000..986521dad
--- /dev/null
+++ b/Assets/arts/spines/characters/m10058/m10058.atlas.txt
@@ -0,0 +1,41 @@
+m10058.png
+size:512,512
+filter:Linear,Linear
+clothes
+bounds:2,176,86,63
+eye
+bounds:2,39,20,46
+eye_xuanyun
+bounds:2,17,20,20
+hand_L
+bounds:474,468,40,34
+rotate:90
+hand_R
+bounds:54,137,37,32
+rotate:90
+head
+bounds:2,241,140,134
+hit_yan3
+bounds:24,57,28,28
+leg_L
+bounds:144,309,41,45
+leg_R
+bounds:417,414,38,48
+spine
+bounds:295,397,120,111
+upperarm_L_1
+bounds:2,130,50,44
+upperarm_L_2
+bounds:187,316,35,38
+upperarm_L_3
+bounds:90,194,43,45
+upperarm_R_1
+bounds:417,464,55,44
+upperarm_R_2
+bounds:144,260,34,47
+upperarm_R_3
+bounds:2,87,43,41
+weapon_1
+bounds:2,377,291,131
+yingzi
+bounds:144,356,83,19
diff --git a/Assets/arts/spines/characters/m10058/m10058.atlas.txt.meta b/Assets/arts/spines/characters/m10058/m10058.atlas.txt.meta
new file mode 100644
index 000000000..4b2a0d6a0
--- /dev/null
+++ b/Assets/arts/spines/characters/m10058/m10058.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 6de139594bede5a44a27238d55d5eb1a
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10058/m10058.png b/Assets/arts/spines/characters/m10058/m10058.png
new file mode 100644
index 000000000..b0aeb59cb
Binary files /dev/null and b/Assets/arts/spines/characters/m10058/m10058.png differ
diff --git a/Assets/arts/spines/characters/m10058/m10058.png.meta b/Assets/arts/spines/characters/m10058/m10058.png.meta
new file mode 100644
index 000000000..413d80908
--- /dev/null
+++ b/Assets/arts/spines/characters/m10058/m10058.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 54f403c66172d114799892bc1d8394f9
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10058/m10058.skel.bytes b/Assets/arts/spines/characters/m10058/m10058.skel.bytes
new file mode 100644
index 000000000..38f2913c6
Binary files /dev/null and b/Assets/arts/spines/characters/m10058/m10058.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10058/m10058.skel.bytes.meta b/Assets/arts/spines/characters/m10058/m10058.skel.bytes.meta
new file mode 100644
index 000000000..f0e5844a1
--- /dev/null
+++ b/Assets/arts/spines/characters/m10058/m10058.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 4629de123950ad04e874fa8e9e654807
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10058/m10058_atlas.asset b/Assets/arts/spines/characters/m10058/m10058_atlas.asset
new file mode 100644
index 000000000..89bf9f357
--- /dev/null
+++ b/Assets/arts/spines/characters/m10058/m10058_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m10058_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: 6de139594bede5a44a27238d55d5eb1a, type: 3}
+ materials:
+ - {fileID: 2100000, guid: b345e264b96b7b8428537f7c7ead9c60, type: 2}
diff --git a/Assets/arts/spines/characters/m10058/m10058_atlas.asset.meta b/Assets/arts/spines/characters/m10058/m10058_atlas.asset.meta
new file mode 100644
index 000000000..cf3b262ba
--- /dev/null
+++ b/Assets/arts/spines/characters/m10058/m10058_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: ba72e45b3086e46488f75b6c53d0bf16
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10058/m10058_material.mat b/Assets/arts/spines/characters/m10058/m10058_material.mat
new file mode 100644
index 000000000..acc76955b
--- /dev/null
+++ b/Assets/arts/spines/characters/m10058/m10058_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m10058_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 54f403c66172d114799892bc1d8394f9, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m10058/m10058_material.mat.meta b/Assets/arts/spines/characters/m10058/m10058_material.mat.meta
new file mode 100644
index 000000000..48a36ab50
--- /dev/null
+++ b/Assets/arts/spines/characters/m10058/m10058_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: b345e264b96b7b8428537f7c7ead9c60
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10058/m10058_skeletondata.asset b/Assets/arts/spines/characters/m10058/m10058_skeletondata.asset
new file mode 100644
index 000000000..f76422092
--- /dev/null
+++ b/Assets/arts/spines/characters/m10058/m10058_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m10058_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: ba72e45b3086e46488f75b6c53d0bf16, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 4629de123950ad04e874fa8e9e654807, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m10058/m10058_skeletondata.asset.meta b/Assets/arts/spines/characters/m10058/m10058_skeletondata.asset.meta
new file mode 100644
index 000000000..0e451fd0d
--- /dev/null
+++ b/Assets/arts/spines/characters/m10058/m10058_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: aa1534015ea21d84d9431dd4fc2bef40
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10059.meta b/Assets/arts/spines/characters/m10059.meta
new file mode 100644
index 000000000..88da66f69
--- /dev/null
+++ b/Assets/arts/spines/characters/m10059.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 703127f48c898a741bea742423e02749
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10059/m10049.atlas.txt b/Assets/arts/spines/characters/m10059/m10049.atlas.txt
new file mode 100644
index 000000000..2cb2b8c71
--- /dev/null
+++ b/Assets/arts/spines/characters/m10059/m10049.atlas.txt
@@ -0,0 +1,34 @@
+m10049.png
+size:512,512
+filter:Linear,Linear
+eye_xuanyun
+bounds:2,42,20,20
+hair_1
+bounds:2,206,100,98
+hair_2
+bounds:307,446,64,82
+rotate:90
+head
+bounds:2,128,100,76
+offsets:1,1,102,78
+hit_yan1
+bounds:85,108,16,18
+hit_yan2
+bounds:132,405,20,20
+leg_l
+bounds:2,64,81,62
+leg_r
+bounds:391,467,82,43
+mouth_1
+bounds:155,443,150,67
+mouth_2
+bounds:2,427,151,83
+spine
+bounds:2,306,107,119
+ya
+bounds:475,437,73,35
+offsets:0,0,73,36
+rotate:90
+yingzi
+bounds:111,342,83,19
+rotate:90
diff --git a/Assets/arts/spines/characters/m10059/m10049.atlas.txt.meta b/Assets/arts/spines/characters/m10059/m10049.atlas.txt.meta
new file mode 100644
index 000000000..f329cf754
--- /dev/null
+++ b/Assets/arts/spines/characters/m10059/m10049.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 3e202069859248a4fba3dffc2cd84bc6
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10059/m10049.png b/Assets/arts/spines/characters/m10059/m10049.png
new file mode 100644
index 000000000..099e64df3
Binary files /dev/null and b/Assets/arts/spines/characters/m10059/m10049.png differ
diff --git a/Assets/arts/spines/characters/m10059/m10049.png.meta b/Assets/arts/spines/characters/m10059/m10049.png.meta
new file mode 100644
index 000000000..b967810cd
--- /dev/null
+++ b/Assets/arts/spines/characters/m10059/m10049.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: e232921d2de2cd045aaf2d35ddb03eb5
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 0
+ wrapV: 0
+ wrapW: 0
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 1
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 1
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10059/m10049.skel.bytes b/Assets/arts/spines/characters/m10059/m10049.skel.bytes
new file mode 100644
index 000000000..2cccfff09
Binary files /dev/null and b/Assets/arts/spines/characters/m10059/m10049.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m10059/m10049.skel.bytes.meta b/Assets/arts/spines/characters/m10059/m10049.skel.bytes.meta
new file mode 100644
index 000000000..541ee3f9e
--- /dev/null
+++ b/Assets/arts/spines/characters/m10059/m10049.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 263944e8bd2c2c34d82e48d5e25bf8cc
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10059/m10049_atlas.asset b/Assets/arts/spines/characters/m10059/m10049_atlas.asset
new file mode 100644
index 000000000..98d8888b8
--- /dev/null
+++ b/Assets/arts/spines/characters/m10059/m10049_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m10049_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: 3e202069859248a4fba3dffc2cd84bc6, type: 3}
+ materials:
+ - {fileID: 2100000, guid: 4743060dc34599a43a2b2fae9f75283a, type: 2}
diff --git a/Assets/arts/spines/characters/m10059/m10049_atlas.asset.meta b/Assets/arts/spines/characters/m10059/m10049_atlas.asset.meta
new file mode 100644
index 000000000..39cdfe1bb
--- /dev/null
+++ b/Assets/arts/spines/characters/m10059/m10049_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 03cf955fae7c20447b40aed835b96bf3
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10059/m10049_material.mat b/Assets/arts/spines/characters/m10059/m10049_material.mat
new file mode 100644
index 000000000..1fb283bdf
--- /dev/null
+++ b/Assets/arts/spines/characters/m10059/m10049_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m10049_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: e232921d2de2cd045aaf2d35ddb03eb5, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m10059/m10049_material.mat.meta b/Assets/arts/spines/characters/m10059/m10049_material.mat.meta
new file mode 100644
index 000000000..363e66897
--- /dev/null
+++ b/Assets/arts/spines/characters/m10059/m10049_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 4743060dc34599a43a2b2fae9f75283a
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m10059/m10049_skeletondata.asset b/Assets/arts/spines/characters/m10059/m10049_skeletondata.asset
new file mode 100644
index 000000000..97b1147d5
--- /dev/null
+++ b/Assets/arts/spines/characters/m10059/m10049_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m10049_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: 03cf955fae7c20447b40aed835b96bf3, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 263944e8bd2c2c34d82e48d5e25bf8cc, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m10059/m10049_skeletondata.asset.meta b/Assets/arts/spines/characters/m10059/m10049_skeletondata.asset.meta
new file mode 100644
index 000000000..832268cfe
--- /dev/null
+++ b/Assets/arts/spines/characters/m10059/m10049_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: c46a7058795934d439c61762f0eab1a8
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20001/m20001.atlas.txt b/Assets/arts/spines/characters/m20001/m20001.atlas.txt
index 6339483a1..c5167bcdb 100644
--- a/Assets/arts/spines/characters/m20001/m20001.atlas.txt
+++ b/Assets/arts/spines/characters/m20001/m20001.atlas.txt
@@ -1,27 +1,40 @@
m20001.png
size:512,512
filter:Linear,Linear
-head
-bounds:132,333,134,164
-hit_yan3
-bounds:268,334,28,28
-legL
-bounds:2,5,67,75
-legL1
-bounds:149,118,50,55
-legR
-bounds:80,98,67,75
-legR1
-bounds:418,349,50,54
+clothes_1
+bounds:364,423,110,81
+hair
+bounds:2,84,62,51
rotate:90
+hand_L
+bounds:154,186,42,44
+hand_R
+bounds:2,9,73,61
+rotate:90
+head_1
+bounds:244,410,118,94
+head_2
+bounds:55,133,97,97
+hit_yan3
+bounds:476,476,28,28
+leg_L
+bounds:203,294,39,54
+leg_R
+bounds:130,232,38,55
+rotate:90
+pelvis
+bounds:129,350,105,43
spine
-bounds:268,364,148,133
-upperarm
-bounds:80,175,108,135
-upperarmR
-bounds:418,401,79,96
+bounds:129,395,113,109
+upperarm_L_1
+bounds:130,272,71,76
+upperarm_R_2
+bounds:55,232,73,104
weapon_1
-bounds:2,82,228,76
+bounds:2,148,188,51
+offsets:0,0,189,51
rotate:90
weapon_2
-bounds:2,312,128,185
+bounds:2,338,125,166
+yinying
+bounds:55,109,93,22
diff --git a/Assets/arts/spines/characters/m20001/m20001.png b/Assets/arts/spines/characters/m20001/m20001.png
index 1d1929640..95476419b 100644
Binary files a/Assets/arts/spines/characters/m20001/m20001.png and b/Assets/arts/spines/characters/m20001/m20001.png differ
diff --git a/Assets/arts/spines/characters/m20001/m20001.skel.bytes b/Assets/arts/spines/characters/m20001/m20001.skel.bytes
index 384965b16..de96cb5bb 100644
Binary files a/Assets/arts/spines/characters/m20001/m20001.skel.bytes and b/Assets/arts/spines/characters/m20001/m20001.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m20002/m20002.atlas.txt b/Assets/arts/spines/characters/m20002/m20002.atlas.txt
index 9369543d4..012d58765 100644
--- a/Assets/arts/spines/characters/m20002/m20002.atlas.txt
+++ b/Assets/arts/spines/characters/m20002/m20002.atlas.txt
@@ -1,27 +1,40 @@
m20002.png
size:512,512
filter:Linear,Linear
-head
-bounds:132,333,134,164
-hit_yan3
-bounds:268,334,28,28
-legL
-bounds:2,5,67,75
-legL1
-bounds:149,118,50,55
-legR
-bounds:80,98,67,75
-legR1
-bounds:418,349,50,54
+clothes_1
+bounds:364,423,110,81
+hair
+bounds:2,83,62,51
rotate:90
+hand_L
+bounds:301,366,42,45
+rotate:90
+hand_R
+bounds:2,7,74,62
+rotate:90
+head_1
+bounds:244,410,118,94
+head_2
+bounds:55,133,97,97
+hit_yan3
+bounds:476,476,28,28
+leg_L
+bounds:203,293,39,55
+leg_R
+bounds:244,369,39,55
+rotate:90
+pelvis
+bounds:129,350,105,43
spine
-bounds:268,364,148,133
-upperarm
-bounds:80,175,108,135
-upperarmR
-bounds:418,401,79,96
+bounds:129,395,113,109
+upperarm_L_1
+bounds:130,272,71,76
+upperarm_R_2
+bounds:55,232,73,104
weapon_1
-bounds:2,82,228,76
+bounds:2,147,189,51
rotate:90
weapon_2
-bounds:2,312,128,185
+bounds:2,338,125,166
+yinying
+bounds:55,109,93,22
diff --git a/Assets/arts/spines/characters/m20002/m20002.png b/Assets/arts/spines/characters/m20002/m20002.png
index 9d6b5eb43..983b9913f 100644
Binary files a/Assets/arts/spines/characters/m20002/m20002.png and b/Assets/arts/spines/characters/m20002/m20002.png differ
diff --git a/Assets/arts/spines/characters/m20002/m20002.skel.bytes b/Assets/arts/spines/characters/m20002/m20002.skel.bytes
index 316076a1d..e45e6be6f 100644
Binary files a/Assets/arts/spines/characters/m20002/m20002.skel.bytes and b/Assets/arts/spines/characters/m20002/m20002.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m20003/m20003.atlas.txt b/Assets/arts/spines/characters/m20003/m20003.atlas.txt
index 1c7d60a2b..0aeddf295 100644
--- a/Assets/arts/spines/characters/m20003/m20003.atlas.txt
+++ b/Assets/arts/spines/characters/m20003/m20003.atlas.txt
@@ -1,36 +1,65 @@
m20003.png
-size:512,512
+size:1024,1024
filter:Linear,Linear
-hair_1
-bounds:460,420,84,44
+clothes
+bounds:481,876,62,47
+clothes_1
+bounds:2,606,184,131
+eye_L_1
+bounds:71,251,23,20
rotate:90
-hair_3
-bounds:128,35,72,46
-hair_4
-bounds:208,105,41,43
-hand_l
-bounds:2,24,124,235
-hand_r
-bounds:240,273,105,231
-head
-bounds:208,150,109,84
+eye_L_2
+bounds:981,1006,14,16
+eye_R_1
+bounds:104,474,29,25
+eye_R_2
+bounds:2,2,15,19
+eye_xuanyun
+bounds:322,746,22,22
+gutou
+bounds:409,870,70,53
+hand_L
+bounds:841,956,68,66
+hand_R
+bounds:764,955,75,67
+head_1
+bounds:322,770,96,78
rotate:90
-hit_yan1
-bounds:208,85,16,18
-hit_yan2
-bounds:460,398,20,20
-legL
-bounds:347,412,111,92
-legR
-bounds:347,318,111,92
-mei
-bounds:2,6,39,16
-spine
-bounds:2,261,236,243
-weib
-bounds:128,83,176,78
+head_3
+bounds:911,959,68,63
+head_R
+bounds:2,23,66,63
+rotate:90
+hit_yan3
+bounds:290,709,28,28
+kulou
+bounds:2,91,77,62
+offsets:0,1,77,63
+rotate:90
+leg_L
+bounds:188,618,100,119
+leg_R
+bounds:2,380,100,119
+mouth
+bounds:2,170,104,67
+rotate:90
+spine_1
+bounds:2,739,318,283
+spine_2
+bounds:2,501,133,103
+spine_3
+bounds:409,925,136,97
+upperarm_L_1
+bounds:547,931,91,117
+rotate:90
+upperarm_L_2
+bounds:666,945,77,96
+rotate:90
+upperarm_R_1
+bounds:322,868,85,154
+upperarm_R_2
+bounds:2,276,102,90
+rotate:90
+yinying
+bounds:137,511,93,22
rotate:90
-yan
-bounds:251,135,20,13
-zui
-bounds:347,243,119,73
diff --git a/Assets/arts/spines/characters/m20003/m20003.png b/Assets/arts/spines/characters/m20003/m20003.png
index 9a0015871..fbf190489 100644
Binary files a/Assets/arts/spines/characters/m20003/m20003.png and b/Assets/arts/spines/characters/m20003/m20003.png differ
diff --git a/Assets/arts/spines/characters/m20003/m20003.skel.bytes b/Assets/arts/spines/characters/m20003/m20003.skel.bytes
index dbdd5867f..8e528a0ee 100644
Binary files a/Assets/arts/spines/characters/m20003/m20003.skel.bytes and b/Assets/arts/spines/characters/m20003/m20003.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m20004/m20004.atlas.txt b/Assets/arts/spines/characters/m20004/m20004.atlas.txt
index a7e857081..814d593b4 100644
--- a/Assets/arts/spines/characters/m20004/m20004.atlas.txt
+++ b/Assets/arts/spines/characters/m20004/m20004.atlas.txt
@@ -1,36 +1,68 @@
m20004.png
size:512,512
filter:Linear,Linear
-hair
-bounds:244,303,43,54
-offsets:1,1,45,56
-hand
-bounds:97,89,65,48
-offsets:1,1,67,50
-hand1
-bounds:170,240,59,58
-offsets:1,1,61,60
-head
-bounds:172,359,134,121
-offsets:1,1,136,123
-hit_yan2
-bounds:170,198,40,40
-pifeng
-bounds:1,139,167,159
-spine
-bounds:1,300,169,180
-upperarm
-bounds:308,416,50,64
-offsets:1,1,52,66
-upperarm1
-bounds:1,1,41,73
-offsets:1,1,43,75
+eye_xuanyun
+bounds:237,355,22,22
+hand_L_1
+bounds:429,469,45,41
+offsets:1,1,47,43
+hand_L_2
+bounds:164,297,29,30
+offsets:1,1,31,32
+hand_R_1
+bounds:164,329,49,49
+offsets:1,1,51,51
+hand_R_2
+bounds:476,488,33,22
+offsets:1,1,35,24
+head_1
+bounds:2,291,136,80
+head_2
+bounds:388,402,45,35
+offsets:1,1,47,37
rotate:90
+hit_yan1
+bounds:429,449,16,18
+hit_yan2
+bounds:195,307,20,20
+leg_L
+bounds:62,154,59,72
+rotate:90
+leg_R
+bounds:355,449,61,72
+rotate:90
+mouth
+bounds:2,60,90,44
+offsets:1,1,92,46
+rotate:90
+pelvis
+bounds:2,152,137,58
+rotate:90
+spine
+bounds:2,373,160,137
+upperarm_L_1
+bounds:316,385,62,70
+offsets:1,1,64,72
+rotate:90
+upperarm_L_2
+bounds:2,2,56,64
+offsets:1,1,58,66
+rotate:90
+upperarm_R_1
+bounds:237,379,68,77
+offsets:1,1,70,79
+rotate:90
+upperarm_R_2
+bounds:62,215,73,74
+offsets:1,1,75,76
+upperarm_R_3
+bounds:215,329,20,49
+offsets:1,1,22,51
weapon_1
-bounds:1,44,94,93
-offsets:1,1,96,95
-yan
-bounds:172,300,70,57
-offsets:1,1,72,59
-yan2
-bounds:308,396,16,18
+bounds:237,449,116,61
+offsets:1,1,118,63
+weapon_2
+bounds:164,380,71,130
+yinying
+bounds:140,278,93,22
+rotate:90
diff --git a/Assets/arts/spines/characters/m20004/m20004.png b/Assets/arts/spines/characters/m20004/m20004.png
index 1570c311d..ddef498e6 100644
Binary files a/Assets/arts/spines/characters/m20004/m20004.png and b/Assets/arts/spines/characters/m20004/m20004.png differ
diff --git a/Assets/arts/spines/characters/m20004/m20004.skel.bytes b/Assets/arts/spines/characters/m20004/m20004.skel.bytes
index 8053c7027..28139d810 100644
Binary files a/Assets/arts/spines/characters/m20004/m20004.skel.bytes and b/Assets/arts/spines/characters/m20004/m20004.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m20005/m20005.atlas.txt b/Assets/arts/spines/characters/m20005/m20005.atlas.txt
index fb78a50b3..2bacf7af2 100644
--- a/Assets/arts/spines/characters/m20005/m20005.atlas.txt
+++ b/Assets/arts/spines/characters/m20005/m20005.atlas.txt
@@ -1,52 +1,75 @@
m20005.png
size:512,512
filter:Linear,Linear
-LEG-L1
-bounds:213,260,61,40
-offsets:1,1,63,42
-LEG-L2
-bounds:407,446,65,83
-offsets:1,1,67,85
+eye
+bounds:289,369,26,18
+offsets:1,1,28,20
+eye_xuanyun
+bounds:132,85,22,22
+hand_L
+bounds:117,374,98,133
+offsets:1,1,100,135
+hand_R
+bounds:2,237,98,134
+offsets:1,1,100,136
+head_1
+bounds:217,389,100,118
+offsets:1,1,102,120
+head_2
+bounds:446,416,61,91
+offsets:1,1,63,93
+head_3
+bounds:2,112,98,123
+offsets:1,1,100,125
+hit_yan1
+bounds:126,278,16,18
rotate:90
-LEG-r1
-bounds:86,27,61,40
-offsets:1,1,63,42
+hit_yan2
+bounds:237,298,20,20
+leg_L
+bounds:237,320,50,67
+offsets:1,1,52,69
+leg_R
+bounds:102,208,49,68
+offsets:1,1,51,70
+pelvis
+bounds:102,154,48,52
+offsets:1,1,50,54
+pelvis_L
+bounds:100,2,44,37
+offsets:1,1,46,39
rotate:90
-LEG-r2
-bounds:1,1,64,83
-offsets:1,1,66,85
-rotate:90
-head
-bounds:1,169,129,145
-offsets:1,1,131,147
+pelvis_R
+bounds:102,109,52,43
+offsets:1,1,54,45
spine
-bounds:1,316,232,195
-upperarm -L-1
-bounds:235,425,82,86
-offsets:1,1,84,88
-upperarm -L-2
-bounds:235,302,40,68
-offsets:1,1,42,70
+bounds:2,4,106,96
+offsets:1,1,108,98
rotate:90
-upperarm -L-3
-bounds:235,344,75,79
-offsets:1,1,77,81
-upperarm -L-4
-bounds:319,443,86,68
-offsets:1,1,88,70
-upperarm -L-5
-bounds:1,67,63,100
-offsets:1,1,65,102
-upperarm -r-1
-bounds:132,231,79,83
-offsets:1,1,81,85
-upperarm -r-2
-bounds:66,90,70,77
-offsets:1,1,72,79
-upperarm -r-3
-bounds:132,178,51,84
-offsets:1,1,53,86
+upperarm_L_1
+bounds:416,348,66,86
+offsets:1,1,68,88
+rotate:90
+upperarm_L_2
+bounds:319,423,84,125
+offsets:1,1,86,127
+rotate:90
+upperarm_L_3
+bounds:100,48,30,59
+offsets:1,1,32,61
+upperarm_L_4
+bounds:182,297,53,75
+offsets:1,1,55,77
+upperarm_R_1
+bounds:319,353,68,95
+offsets:1,1,70,97
+rotate:90
+upperarm_R_2
+bounds:2,373,113,134
+offsets:1,1,115,136
+upperarm_R_3
+bounds:126,296,54,76
+offsets:1,1,56,78
+yingzi
+bounds:102,278,93,22
rotate:90
-upperarm -r-4
-bounds:138,104,77,72
-offsets:1,1,79,74
diff --git a/Assets/arts/spines/characters/m20005/m20005.png b/Assets/arts/spines/characters/m20005/m20005.png
index db57d4bd8..4dee1f4ba 100644
Binary files a/Assets/arts/spines/characters/m20005/m20005.png and b/Assets/arts/spines/characters/m20005/m20005.png differ
diff --git a/Assets/arts/spines/characters/m20005/m20005.skel.bytes b/Assets/arts/spines/characters/m20005/m20005.skel.bytes
index bf556b708..a83c9d2ec 100644
Binary files a/Assets/arts/spines/characters/m20005/m20005.skel.bytes and b/Assets/arts/spines/characters/m20005/m20005.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m20006/m20006.atlas.txt b/Assets/arts/spines/characters/m20006/m20006.atlas.txt
index 30a3a3708..429daef17 100644
--- a/Assets/arts/spines/characters/m20006/m20006.atlas.txt
+++ b/Assets/arts/spines/characters/m20006/m20006.atlas.txt
@@ -1,21 +1,39 @@
m20006.png
size:512,512
filter:Linear,Linear
+eye_L
+bounds:66,36,26,25
+eye_L_1
+bounds:66,63,33,26
+rotate:90
+eye_R
+bounds:97,119,29,29
+eye_R_2
+bounds:152,232,36,28
+rotate:90
+eye_xuanyun
+bounds:128,126,22,22
hand
-bounds:1,1,66,97
-offsets:1,1,68,99
+bounds:1,98,94,132
hand1
-bounds:234,332,67,97
-offsets:1,1,69,99
+bounds:336,377,87,133
head
-bounds:1,100,165,157
-offsets:1,1,167,159
+bounds:195,372,139,138
+hit_yan1
+bounds:176,345,16,18
+hit_yan2
+bounds:159,210,20,20
leg L 1
-bounds:303,342,66,87
-offsets:1,1,68,89
+bounds:1,17,63,79
leg R 1
-bounds:69,11,66,87
-offsets:1,1,68,89
+bounds:97,150,60,80
+mouth
+bounds:425,385,125,85
+rotate:90
spine
-bounds:1,259,231,170
-offsets:1,1,233,172
+bounds:1,232,149,131
+spine_2
+bounds:1,365,192,145
+yingzi
+bounds:152,270,93,22
+rotate:90
diff --git a/Assets/arts/spines/characters/m20006/m20006.png b/Assets/arts/spines/characters/m20006/m20006.png
index 0021c3cf3..b66e0e5a5 100644
Binary files a/Assets/arts/spines/characters/m20006/m20006.png and b/Assets/arts/spines/characters/m20006/m20006.png differ
diff --git a/Assets/arts/spines/characters/m20006/m20006.skel.bytes b/Assets/arts/spines/characters/m20006/m20006.skel.bytes
index 54f2f5172..5c02a3711 100644
Binary files a/Assets/arts/spines/characters/m20006/m20006.skel.bytes and b/Assets/arts/spines/characters/m20006/m20006.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m20007/m20007.atlas.txt b/Assets/arts/spines/characters/m20007/m20007.atlas.txt
index 68008b258..863594ace 100644
--- a/Assets/arts/spines/characters/m20007/m20007.atlas.txt
+++ b/Assets/arts/spines/characters/m20007/m20007.atlas.txt
@@ -1,34 +1,70 @@
m20007.png
size:512,512
filter:Linear,Linear
-head
-bounds:1,263,173,116
-offsets:1,1,175,118
-hit_yan2
-bounds:176,339,40,40
-legL
-bounds:1,69,77,77
-offsets:1,1,79,79
-legL1
-bounds:1,1,57,66
-offsets:1,1,59,68
-legR
-bounds:80,183,76,78
-offsets:1,1,78,80
-legR1
-bounds:80,116,56,65
-offsets:1,1,58,67
-spine
-bounds:210,392,143,89
-offsets:1,1,145,91
-upperarm
-bounds:355,416,65,117
+eye_xuanyun
+bounds:138,219,22,22
+hand_L_1
+bounds:390,402,45,41
+offsets:1,1,47,43
+rotate:90
+hand_L_2
+bounds:480,481,29,30
+offsets:1,1,31,32
+rotate:90
+hand_R_1
+bounds:429,461,49,49
+offsets:1,1,51,51
+hand_R_2
+bounds:138,243,33,22
+offsets:1,1,35,24
+rotate:90
+head_1
+bounds:2,256,134,115
+head_2
+bounds:106,70,45,35
+rotate:90
+hit_yan1
+bounds:480,461,16,18
+hit_yan2
+bounds:2,3,20,20
+leg_L
+bounds:316,389,58,72
+rotate:90
+leg_R
+bounds:355,449,61,72
+rotate:90
+mouth
+bounds:2,25,90,44
+offsets:1,1,92,46
+rotate:90
+pelvis
+bounds:2,117,137,58
+rotate:90
+spine
+bounds:2,373,160,137
+upperarm_L_1
+bounds:62,117,62,70
+offsets:1,1,64,72
+rotate:90
+upperarm_L_2
+bounds:48,51,56,64
+offsets:1,1,58,66
+upperarm_R_1
+bounds:237,379,68,77
+offsets:1,1,70,79
+rotate:90
+upperarm_R_2
+bounds:62,181,74,73
+offsets:1,1,76,75
+upperarm_R_3
+bounds:48,29,20,49
+offsets:1,1,22,51
rotate:90
-upperarm1
-bounds:1,148,77,113
weapon_1
-bounds:1,381,207,100
-offsets:1,1,209,102
-yan
-bounds:80,64,67,50
-offsets:1,1,69,52
+bounds:237,449,116,61
+offsets:1,1,118,63
+weapon_2
+bounds:164,380,71,130
+yinying
+bounds:138,278,93,22
+rotate:90
diff --git a/Assets/arts/spines/characters/m20007/m20007.png b/Assets/arts/spines/characters/m20007/m20007.png
index e1e14f8e8..c2d6663db 100644
Binary files a/Assets/arts/spines/characters/m20007/m20007.png and b/Assets/arts/spines/characters/m20007/m20007.png differ
diff --git a/Assets/arts/spines/characters/m20007/m20007.skel.bytes b/Assets/arts/spines/characters/m20007/m20007.skel.bytes
index c3ac85261..0771caa23 100644
Binary files a/Assets/arts/spines/characters/m20007/m20007.skel.bytes and b/Assets/arts/spines/characters/m20007/m20007.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m20008/m20008.atlas.txt b/Assets/arts/spines/characters/m20008/m20008.atlas.txt
index f835dac80..ff7c67da4 100644
--- a/Assets/arts/spines/characters/m20008/m20008.atlas.txt
+++ b/Assets/arts/spines/characters/m20008/m20008.atlas.txt
@@ -1,59 +1,53 @@
m20008.png
size:512,512
filter:Linear,Linear
+eye_L
+bounds:103,260,24,18
+offsets:1,1,26,20
+eye_R
+bounds:2,2,25,18
+offsets:1,1,27,20
+eye_xuanyun
+bounds:469,477,22,22
+hand_L
+bounds:241,412,87,116
+offsets:1,1,89,118
+rotate:90
+hand_R
+bounds:2,253,99,118
+offsets:1,1,101,120
head
-bounds:1,160,134,139
-offsets:1,1,136,141
-leg L1
-bounds:226,190,42,29
-offsets:1,1,44,31
-leg L2
-bounds:167,71,55,38
-offsets:1,1,57,40
+bounds:2,117,134,71
+offsets:1,1,136,73
rotate:90
-leg L3
-bounds:114,14,50,55
-offsets:1,1,52,57
-leg r1
-bounds:294,251,41,29
-offsets:1,1,43,31
+hit_yan1
+bounds:321,392,16,18
+hit_yan2
+bounds:75,136,20,20
+leg_L
+bounds:236,292,59,68
rotate:90
-leg r2
-bounds:166,15,54,38
-offsets:1,1,56,40
-rotate:90
-leg r3
-bounds:114,71,51,55
-offsets:1,1,53,57
+leg_R
+bounds:169,309,65,75
pelvis
-bounds:194,294,115,70
-offsets:1,1,117,72
+bounds:241,353,78,57
+offsets:1,1,80,59
spine
-bounds:1,301,191,208
-offsets:1,1,193,210
-upperarm L1
-bounds:422,413,87,96
-offsets:1,1,89,98
-upperarm L2
-bounds:194,366,111,143
-offsets:1,1,113,145
-upperarm L3
-bounds:307,412,113,97
-offsets:1,1,115,99
-upperarm L4
-bounds:226,221,66,71
-offsets:1,1,68,73
-upperarm R1
-bounds:137,196,87,96
-offsets:1,1,89,98
-upperarm R2
-bounds:1,15,111,143
-offsets:1,1,113,145
-upperarm R3
-bounds:311,297,113,97
-offsets:1,1,115,99
+bounds:2,373,140,126
+offsets:1,1,142,128
+upperarm_L_1
+bounds:359,420,79,108
+offsets:1,1,81,110
rotate:90
-upperarm R4
-bounds:137,128,66,71
-offsets:1,1,68,73
+upperarm_L_2
+bounds:2,22,64,93
+offsets:1,1,66,95
+upperarm_R_1
+bounds:144,386,95,113
+offsets:1,1,97,115
+upperarm_R_2
+bounds:103,280,64,91
+offsets:1,1,66,93
+yingzi
+bounds:75,158,93,22
rotate:90
diff --git a/Assets/arts/spines/characters/m20008/m20008.png b/Assets/arts/spines/characters/m20008/m20008.png
index a1bc13d12..1e0dd323a 100644
Binary files a/Assets/arts/spines/characters/m20008/m20008.png and b/Assets/arts/spines/characters/m20008/m20008.png differ
diff --git a/Assets/arts/spines/characters/m20008/m20008.skel.bytes b/Assets/arts/spines/characters/m20008/m20008.skel.bytes
index bc67d0cd6..9ceda8090 100644
Binary files a/Assets/arts/spines/characters/m20008/m20008.skel.bytes and b/Assets/arts/spines/characters/m20008/m20008.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m20009/m20009.atlas.txt b/Assets/arts/spines/characters/m20009/m20009.atlas.txt
index fde95737f..5019503cd 100644
--- a/Assets/arts/spines/characters/m20009/m20009.atlas.txt
+++ b/Assets/arts/spines/characters/m20009/m20009.atlas.txt
@@ -1,45 +1,44 @@
m20009.png
size:512,512
filter:Linear,Linear
-1
-bounds:281,223,75,86
-offsets:1,1,77,88
-rotate:90
-2
-bounds:1,31,80,129
-offsets:1,1,82,131
-rotate:90
-3
-bounds:132,30,81,118
-offsets:1,1,83,120
-rotate:90
-4
-bounds:252,14,98,62
-offsets:1,1,100,64
-rotate:90
-5
-bounds:309,123,72,74
-offsets:1,1,74,76
-6
-bounds:369,298,57,120
-offsets:1,1,59,122
+eye_L
+bounds:355,270,32,21
+eye_R
+bounds:319,267,34,24
+eye_xuanyun
+bounds:98,89,22,22
+hair_1
+bounds:162,209,53,93
rotate:90
+hair_2
+bounds:408,298,43,74
+hair_3
+bounds:259,268,58,94
+hair_4
+bounds:192,139,50,68
+hand_R
+bounds:2,213,158,149
head
-bounds:369,357,154,142
-offsets:1,1,156,144
-rotate:90
-leg
-bounds:218,180,61,111
-leg1
-bounds:369,199,97,103
-rotate:90
-pelvis
-bounds:218,114,89,64
-offsets:1,1,91,66
+bounds:2,364,312,146
+hit_yan1
+bounds:389,273,16,18
+hit_yan2
+bounds:98,67,20,20
+jianjia_L
+bounds:319,293,87,79
+jianjia_R
+bounds:2,31,94,80
+leg_L
+bounds:456,422,54,88
+leg_R
+bounds:456,332,54,88
+mouth
+bounds:2,113,116,98
spine
-bounds:1,113,215,178
-offsets:1,1,217,180
-upperarm
-bounds:1,293,250,218
-upperarm1
-bounds:253,300,114,211
+bounds:316,374,138,136
+upperarm_L_1
+bounds:162,264,95,98
+upperarm_L_2
+bounds:120,127,70,80
+yingzi
+bounds:2,7,93,22
diff --git a/Assets/arts/spines/characters/m20009/m20009.png b/Assets/arts/spines/characters/m20009/m20009.png
index 085a589f7..69bf198da 100644
Binary files a/Assets/arts/spines/characters/m20009/m20009.png and b/Assets/arts/spines/characters/m20009/m20009.png differ
diff --git a/Assets/arts/spines/characters/m20009/m20009.skel.bytes b/Assets/arts/spines/characters/m20009/m20009.skel.bytes
index 2893a7adc..b4d99de6b 100644
Binary files a/Assets/arts/spines/characters/m20009/m20009.skel.bytes and b/Assets/arts/spines/characters/m20009/m20009.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m20010/m20010.atlas.txt b/Assets/arts/spines/characters/m20010/m20010.atlas.txt
index 830c1f540..d64b06829 100644
--- a/Assets/arts/spines/characters/m20010/m20010.atlas.txt
+++ b/Assets/arts/spines/characters/m20010/m20010.atlas.txt
@@ -1,22 +1,69 @@
m20010.png
size:512,512
filter:Linear,Linear
-hand
-bounds:130,209,71,70
-hand1
-bounds:68,80,61,50
+clothes_1
+bounds:353,269,49,49
+clothes_2
+bounds:404,285,33,50
+rotate:90
+clothes_3
+bounds:449,320,33,52
+eye_L
+bounds:479,391,18,24
+eye_R
+bounds:349,209,22,30
+eye_xuanyun
+bounds:327,296,22,22
+gutou
+bounds:227,241,70,53
+hand_L_1
+bounds:456,291,27,23
+rotate:90
+hand_L_2
+bounds:397,320,50,52
+hand_R_1
+bounds:353,241,26,28
+rotate:90
+hand_R_2
+bounds:299,241,53,52
+rotate:90
+hand_R_3
+bounds:174,9,62,45
+rotate:90
+head_1
+bounds:101,2,71,69
+head_2
+bounds:104,188,121,125
+hit_yan1
+bounds:227,297,16,18
+rotate:90
+kulou
+bounds:248,296,77,62
+offsets:0,1,77,63
+leg
+bounds:104,73,113,116
rotate:90
-head
-bounds:2,143,126,136
-hit_yan3
-bounds:209,290,28,28
-leg01
-bounds:2,61,64,80
spine
-bounds:209,320,138,122
-upperarm_l_01
-bounds:2,2,62,57
-upperarm_r_01
-bounds:349,382,65,60
-weapon_1
-bounds:2,281,205,161
+bounds:2,17,97,86
+upperarm_L_1
+bounds:189,315,57,43
+upperarm_L_2
+bounds:341,320,52,54
+rotate:90
+upperarm_R_1
+bounds:227,190,58,49
+upperarm_R_2
+bounds:287,195,44,60
+rotate:90
+weapon_2
+bounds:2,105,208,100
+rotate:90
+yan01
+bounds:2,315,185,195
+yan02
+bounds:341,374,136,136
+yan03
+bounds:189,360,150,150
+yinying
+bounds:479,417,93,22
+rotate:90
diff --git a/Assets/arts/spines/characters/m20010/m20010.png b/Assets/arts/spines/characters/m20010/m20010.png
index 505342ced..b0f909b70 100644
Binary files a/Assets/arts/spines/characters/m20010/m20010.png and b/Assets/arts/spines/characters/m20010/m20010.png differ
diff --git a/Assets/arts/spines/characters/m20010/m20010.skel.bytes b/Assets/arts/spines/characters/m20010/m20010.skel.bytes
index 05d256230..b4ea8d48d 100644
Binary files a/Assets/arts/spines/characters/m20010/m20010.skel.bytes and b/Assets/arts/spines/characters/m20010/m20010.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m20011/m20011.atlas.txt b/Assets/arts/spines/characters/m20011/m20011.atlas.txt
index d32357ba7..16074b502 100644
--- a/Assets/arts/spines/characters/m20011/m20011.atlas.txt
+++ b/Assets/arts/spines/characters/m20011/m20011.atlas.txt
@@ -1,37 +1,30 @@
m20011.png
size:512,512
filter:Linear,Linear
+eye_xuanyun
+bounds:299,387,22,22
hand
-bounds:363,381,114,96
-offsets:1,1,116,98
+bounds:299,411,88,71
hand 1
-bounds:148,176,94,79
-offsets:1,1,96,81
+bounds:1,23,83,68
rotate:90
head
-bounds:1,107,145,163
-offsets:1,1,147,165
-leg L 1
-bounds:236,272,58,53
-offsets:1,1,60,55
+bounds:1,221,113,126
+hit_yan1
+bounds:116,254,16,18
+hit_yan2
+bounds:1,1,20,20
leg L 2
-bounds:148,101,73,91
-offsets:1,1,75,93
-rotate:90
-leg R 1
-bounds:229,217,58,53
-offsets:1,1,60,55
+bounds:116,274,54,73
leg R 2
-bounds:147,26,73,91
-offsets:1,1,75,93
+bounds:389,428,54,73
rotate:90
spine
-bounds:1,272,233,205
-offsets:1,1,235,207
+bounds:1,349,182,133
upperarm
-bounds:236,327,125,150
-offsets:1,1,127,152
+bounds:185,366,112,116
upperarm1
-bounds:1,14,91,144
-offsets:1,1,93,146
+bounds:1,108,69,111
+yinying
+bounds:72,126,93,22
rotate:90
diff --git a/Assets/arts/spines/characters/m20011/m20011.png b/Assets/arts/spines/characters/m20011/m20011.png
index b1afc3750..8bfa5ce8f 100644
Binary files a/Assets/arts/spines/characters/m20011/m20011.png and b/Assets/arts/spines/characters/m20011/m20011.png differ
diff --git a/Assets/arts/spines/characters/m20011/m20011.skel.bytes b/Assets/arts/spines/characters/m20011/m20011.skel.bytes
index 3e1bb7e5a..c3f81e2fb 100644
Binary files a/Assets/arts/spines/characters/m20011/m20011.skel.bytes and b/Assets/arts/spines/characters/m20011/m20011.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m20012/m20012.atlas.txt b/Assets/arts/spines/characters/m20012/m20012.atlas.txt
index 4b8ae55fc..6730ac2f7 100644
--- a/Assets/arts/spines/characters/m20012/m20012.atlas.txt
+++ b/Assets/arts/spines/characters/m20012/m20012.atlas.txt
@@ -1,42 +1,57 @@
m20012.png
size:512,512
filter:Linear,Linear
-gutou
-bounds:161,439,70,53
+clothes
+bounds:123,83,52,38
+rotate:90
+eye_l
+bounds:498,496,14,10
+rotate:90
+eye_r
+bounds:224,219,21,14
+rotate:90
+eye_xuanyun
+bounds:97,24,22,22
hair
-bounds:2,329,139,89
-hand
-bounds:275,454,39,38
-hand1
-bounds:233,454,40,38
-head
-bounds:2,217,118,110
+bounds:2,192,162,178
+hand_l_01
+bounds:174,150,36,40
+hand_r_01
+bounds:386,386,35,39
+rotate:90
+head_1
+bounds:166,242,128,75
+rotate:90
+head_2
+bounds:2,48,119,142
hit_yan3
-bounds:122,267,28,28
-legL
-bounds:316,457,42,35
-legL1
-bounds:404,466,26,38
+bounds:427,393,28,28
+jianjia
+bounds:328,385,56,36
+leg_l
+bounds:123,137,49,53
+leg_r
+bounds:166,192,48,56
rotate:90
-legr
-bounds:360,457,42,35
-legr2
-bounds:444,467,25,38
-rotate:90
-pif
-bounds:2,112,110,103
spine
-bounds:2,35,75,75
-upperarm
-bounds:2,2,31,51
+bounds:252,353,68,74
rotate:90
-upperarm _R_1
-bounds:122,297,30,29
+upperarm_l_01
+bounds:328,353,30,38
rotate:90
-upperarm1
-bounds:79,59,31,51
-upperarm_ L_1
-bounds:55,2,31,29
+upperarm_l_02
+bounds:2,2,20,35
rotate:90
-weapon_1
-bounds:2,420,157,72
+upperarm_r_01
+bounds:123,51,30,36
+rotate:90
+upperarm_r_02
+bounds:39,2,20,34
+rotate:90
+weapon
+bounds:252,423,244,87
+weapon_canying
+bounds:2,372,248,138
+offsets:0,1,248,140
+yinying
+bounds:2,24,93,22
diff --git a/Assets/arts/spines/characters/m20012/m20012.png b/Assets/arts/spines/characters/m20012/m20012.png
index 02ea18a69..111053072 100644
Binary files a/Assets/arts/spines/characters/m20012/m20012.png and b/Assets/arts/spines/characters/m20012/m20012.png differ
diff --git a/Assets/arts/spines/characters/m20012/m20012.skel.bytes b/Assets/arts/spines/characters/m20012/m20012.skel.bytes
index 0e289577b..8e44253f2 100644
Binary files a/Assets/arts/spines/characters/m20012/m20012.skel.bytes and b/Assets/arts/spines/characters/m20012/m20012.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m20013.meta b/Assets/arts/spines/characters/m20013.meta
new file mode 100644
index 000000000..94a8986a0
--- /dev/null
+++ b/Assets/arts/spines/characters/m20013.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 3ae251c68e42a1345846a565e6f2f31a
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20013/m20013.atlas.txt b/Assets/arts/spines/characters/m20013/m20013.atlas.txt
new file mode 100644
index 000000000..5ffa131b3
--- /dev/null
+++ b/Assets/arts/spines/characters/m20013/m20013.atlas.txt
@@ -0,0 +1,64 @@
+m20013.png
+size:2048,2048
+filter:Linear,Linear
+bj
+bounds:2,414,720,1560
+offsets:1,1,722,1562
+clothes_1
+bounds:724,1780,98,69
+offsets:1,1,100,71
+clothes_2
+bounds:899,1879,41,54
+rotate:90
+clothes_3
+bounds:346,362,48,50
+offsets:1,1,50,52
+clothes_4
+bounds:57,134,61,50
+offsets:1,1,63,52
+clothes_5
+bounds:2,274,172,138
+eye
+bounds:176,259,64,30
+offsets:1,1,66,32
+eye_xuanyun
+bounds:846,1854,22,22
+hair
+bounds:2,186,130,86
+hand_L
+bounds:134,207,40,65
+offsets:1,1,42,67
+hand_R
+bounds:846,1878,51,96
+head
+bounds:176,315,113,97
+offsets:1,1,115,99
+hit_yan1
+bounds:795,1760,16,18
+hit_yan2
+bounds:824,1829,20,20
+hit_yan3
+bounds:2,2,28,28
+leg_L
+bounds:2,101,53,83
+leg_R
+bounds:291,329,53,83
+spine
+bounds:724,1851,120,123
+upperarm_L_1
+bounds:724,1671,50,48
+offsets:1,1,52,50
+upperarm_L_2
+bounds:2,32,46,67
+offsets:1,1,48,69
+upperarm_R_1
+bounds:968,1928,51,46
+offsets:1,1,53,48
+weapon_1
+bounds:899,1922,67,52
+offsets:1,1,69,54
+weapon_2
+bounds:724,1721,69,57
+offsets:1,1,71,59
+yingzi
+bounds:176,291,93,22
diff --git a/Assets/arts/spines/characters/m20013/m20013.atlas.txt.meta b/Assets/arts/spines/characters/m20013/m20013.atlas.txt.meta
new file mode 100644
index 000000000..cd9849035
--- /dev/null
+++ b/Assets/arts/spines/characters/m20013/m20013.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 167f5d6b2476c1a47815b72277aba247
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName: arts/spines/characters/m20013.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20013/m20013.png b/Assets/arts/spines/characters/m20013/m20013.png
new file mode 100644
index 000000000..d3fa78490
Binary files /dev/null and b/Assets/arts/spines/characters/m20013/m20013.png differ
diff --git a/Assets/arts/spines/characters/m20013/m20013.png.meta b/Assets/arts/spines/characters/m20013/m20013.png.meta
new file mode 100644
index 000000000..ae8efad55
--- /dev/null
+++ b/Assets/arts/spines/characters/m20013/m20013.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 47eea9a3b150f904d82100c6597cd285
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/spines/characters/m20013.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20013/m20013.skel.bytes b/Assets/arts/spines/characters/m20013/m20013.skel.bytes
new file mode 100644
index 000000000..74dd3728e
Binary files /dev/null and b/Assets/arts/spines/characters/m20013/m20013.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m20013/m20013.skel.bytes.meta b/Assets/arts/spines/characters/m20013/m20013.skel.bytes.meta
new file mode 100644
index 000000000..389fbe08e
--- /dev/null
+++ b/Assets/arts/spines/characters/m20013/m20013.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: db89932ead5c46c47bff6a052fefae57
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName: arts/spines/characters/m20013.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20013/m20013_atlas.asset b/Assets/arts/spines/characters/m20013/m20013_atlas.asset
new file mode 100644
index 000000000..7a8fd5d65
--- /dev/null
+++ b/Assets/arts/spines/characters/m20013/m20013_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m20013_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: 167f5d6b2476c1a47815b72277aba247, type: 3}
+ materials:
+ - {fileID: 2100000, guid: 6ab093110af5d4e458ed9afe78b7543b, type: 2}
diff --git a/Assets/arts/spines/characters/m20013/m20013_atlas.asset.meta b/Assets/arts/spines/characters/m20013/m20013_atlas.asset.meta
new file mode 100644
index 000000000..80f52d5bb
--- /dev/null
+++ b/Assets/arts/spines/characters/m20013/m20013_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 0e414c4725a98d046a6d5389caf4ac1a
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/m20013.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20013/m20013_material.mat b/Assets/arts/spines/characters/m20013/m20013_material.mat
new file mode 100644
index 000000000..e232581b9
--- /dev/null
+++ b/Assets/arts/spines/characters/m20013/m20013_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m20013_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 47eea9a3b150f904d82100c6597cd285, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m20013/m20013_material.mat.meta b/Assets/arts/spines/characters/m20013/m20013_material.mat.meta
new file mode 100644
index 000000000..44cb5ed02
--- /dev/null
+++ b/Assets/arts/spines/characters/m20013/m20013_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 6ab093110af5d4e458ed9afe78b7543b
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName: arts/spines/characters/m20013.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20013/m20013_skeletondata.asset b/Assets/arts/spines/characters/m20013/m20013_skeletondata.asset
new file mode 100644
index 000000000..c5ca6f910
--- /dev/null
+++ b/Assets/arts/spines/characters/m20013/m20013_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m20013_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: 0e414c4725a98d046a6d5389caf4ac1a, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: db89932ead5c46c47bff6a052fefae57, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m20013/m20013_skeletondata.asset.meta b/Assets/arts/spines/characters/m20013/m20013_skeletondata.asset.meta
new file mode 100644
index 000000000..b8febc755
--- /dev/null
+++ b/Assets/arts/spines/characters/m20013/m20013_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 93e3d675ccbab724b817fae2bf2807d3
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/m20013.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20014.meta b/Assets/arts/spines/characters/m20014.meta
new file mode 100644
index 000000000..9c8de904f
--- /dev/null
+++ b/Assets/arts/spines/characters/m20014.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 29b9a785b9dd2e1458564cae17ff7861
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20014/m20014.atlas.txt b/Assets/arts/spines/characters/m20014/m20014.atlas.txt
new file mode 100644
index 000000000..089bc9df6
--- /dev/null
+++ b/Assets/arts/spines/characters/m20014/m20014.atlas.txt
@@ -0,0 +1,61 @@
+m20014.png
+size:512,512
+filter:Linear,Linear
+clothes_1
+bounds:159,250,34,40
+clothes_2
+bounds:167,215,32,33
+clothes_3
+bounds:167,183,30,33
+rotate:90
+eye_L
+bounds:2,8,18,11
+eye_R
+bounds:394,416,15,9
+eye_xuanyun
+bounds:370,403,22,22
+hair
+bounds:2,21,88,59
+hand_L
+bounds:434,438,74,70
+hand_R
+bounds:107,237,50,53
+head_1
+bounds:305,331,37,58
+head_2
+bounds:340,454,92,54
+head_3
+bounds:2,188,103,105
+hit_yan3
+bounds:340,397,28,28
+jitui
+bounds:240,343,63,46
+offsets:35,45,128,128
+kulou
+bounds:126,335,77,62
+offsets:0,1,77,63
+rotate:90
+leg_L
+bounds:126,292,41,59
+rotate:90
+leg_R
+bounds:107,194,41,58
+rotate:90
+pelvis
+bounds:340,427,85,25
+spine
+bounds:2,295,122,117
+upperarm_L_1
+bounds:168,415,93,109
+rotate:90
+upperarm_R_1
+bounds:279,415,59,93
+weapon_1
+bounds:2,82,96,104
+weapon_2
+bounds:2,414,164,94
+yinying
+bounds:240,391,93,22
+yugu
+bounds:190,341,48,72
+offsets:4,0,52,73
diff --git a/Assets/arts/spines/characters/m20014/m20014.atlas.txt.meta b/Assets/arts/spines/characters/m20014/m20014.atlas.txt.meta
new file mode 100644
index 000000000..e634607ac
--- /dev/null
+++ b/Assets/arts/spines/characters/m20014/m20014.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: aceed3e84bec99c49866658ad2199b08
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName: arts/spines/characters/m20014.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20014/m20014.png b/Assets/arts/spines/characters/m20014/m20014.png
new file mode 100644
index 000000000..8f97317d0
Binary files /dev/null and b/Assets/arts/spines/characters/m20014/m20014.png differ
diff --git a/Assets/arts/spines/characters/m20014/m20014.png.meta b/Assets/arts/spines/characters/m20014/m20014.png.meta
new file mode 100644
index 000000000..476a5b295
--- /dev/null
+++ b/Assets/arts/spines/characters/m20014/m20014.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 3c0e1a0e7776a714c85cd2957187969c
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 0
+ wrapV: 0
+ wrapW: 0
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 1
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 1
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/spines/characters/m20014.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20014/m20014.skel.bytes b/Assets/arts/spines/characters/m20014/m20014.skel.bytes
new file mode 100644
index 000000000..2cb0e15dc
Binary files /dev/null and b/Assets/arts/spines/characters/m20014/m20014.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m20014/m20014.skel.bytes.meta b/Assets/arts/spines/characters/m20014/m20014.skel.bytes.meta
new file mode 100644
index 000000000..63e4aca4f
--- /dev/null
+++ b/Assets/arts/spines/characters/m20014/m20014.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 8604a00929cd85140bd57b96c3bac870
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName: arts/spines/characters/m20014.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20014/m20014_atlas.asset b/Assets/arts/spines/characters/m20014/m20014_atlas.asset
new file mode 100644
index 000000000..87a336eed
--- /dev/null
+++ b/Assets/arts/spines/characters/m20014/m20014_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m20014_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: aceed3e84bec99c49866658ad2199b08, type: 3}
+ materials:
+ - {fileID: 2100000, guid: 544b2f09c3f76674aa9a1f85b7e56145, type: 2}
diff --git a/Assets/arts/spines/characters/m20014/m20014_atlas.asset.meta b/Assets/arts/spines/characters/m20014/m20014_atlas.asset.meta
new file mode 100644
index 000000000..75ca57026
--- /dev/null
+++ b/Assets/arts/spines/characters/m20014/m20014_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 858e3b66ea5268c438962564e75a972d
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/m20014.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20014/m20014_material.mat b/Assets/arts/spines/characters/m20014/m20014_material.mat
new file mode 100644
index 000000000..96950eced
--- /dev/null
+++ b/Assets/arts/spines/characters/m20014/m20014_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m20014_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 3c0e1a0e7776a714c85cd2957187969c, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m20014/m20014_material.mat.meta b/Assets/arts/spines/characters/m20014/m20014_material.mat.meta
new file mode 100644
index 000000000..461e74d48
--- /dev/null
+++ b/Assets/arts/spines/characters/m20014/m20014_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 544b2f09c3f76674aa9a1f85b7e56145
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName: arts/spines/characters/m20014.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20014/m20014_skeletondata.asset b/Assets/arts/spines/characters/m20014/m20014_skeletondata.asset
new file mode 100644
index 000000000..0316c9643
--- /dev/null
+++ b/Assets/arts/spines/characters/m20014/m20014_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m20014_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: 858e3b66ea5268c438962564e75a972d, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 8604a00929cd85140bd57b96c3bac870, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m20014/m20014_skeletondata.asset.meta b/Assets/arts/spines/characters/m20014/m20014_skeletondata.asset.meta
new file mode 100644
index 000000000..69ea9ad69
--- /dev/null
+++ b/Assets/arts/spines/characters/m20014/m20014_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 15fe2063531855d49abf3ffdcbb9bc1d
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/m20014.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20015.meta b/Assets/arts/spines/characters/m20015.meta
new file mode 100644
index 000000000..45981e037
--- /dev/null
+++ b/Assets/arts/spines/characters/m20015.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: bbd054b15ebfd5c4893c3d54c76db5ca
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20015/m20015.atlas.txt b/Assets/arts/spines/characters/m20015/m20015.atlas.txt
new file mode 100644
index 000000000..d3394740c
--- /dev/null
+++ b/Assets/arts/spines/characters/m20015/m20015.atlas.txt
@@ -0,0 +1,59 @@
+m20015.png
+size:512,512
+filter:Linear,Linear
+clothes_1
+bounds:305,373,34,40
+clothes_2
+bounds:341,392,31,33
+clothes_3
+bounds:374,392,30,33
+eye_L
+bounds:2,8,17,11
+eye_R
+bounds:341,381,14,9
+eye_xuanyun
+bounds:159,239,22,22
+hair
+bounds:2,21,88,59
+hand_L
+bounds:435,438,73,70
+hand_R
+bounds:107,238,50,53
+head_1
+bounds:240,330,35,58
+rotate:90
+head_2
+bounds:341,454,92,54
+head_3
+bounds:2,188,103,105
+hit_yan3
+bounds:159,263,28,28
+jitui
+bounds:240,367,63,46
+offsets:35,45,128,128
+kulou
+bounds:126,335,77,62
+offsets:0,1,77,63
+rotate:90
+leg_L
+bounds:126,293,40,59
+rotate:90
+leg_R
+bounds:107,195,41,58
+rotate:90
+pelvis
+bounds:341,427,85,25
+spine
+bounds:2,295,122,117
+upperarm_L_1
+bounds:169,415,93,109
+rotate:90
+upperarm_R_1
+bounds:280,415,59,93
+weapon_1
+bounds:2,82,96,104
+weapon_2
+bounds:2,414,165,94
+yugu
+bounds:190,341,48,72
+offsets:4,0,52,73
diff --git a/Assets/arts/spines/characters/m20015/m20015.atlas.txt.meta b/Assets/arts/spines/characters/m20015/m20015.atlas.txt.meta
new file mode 100644
index 000000000..eed213314
--- /dev/null
+++ b/Assets/arts/spines/characters/m20015/m20015.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: e98fad9438c3e2e4bba65e9d1e0de2f4
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName: arts/spines/characters/m20015.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20015/m20015.png b/Assets/arts/spines/characters/m20015/m20015.png
new file mode 100644
index 000000000..8fefb3f83
Binary files /dev/null and b/Assets/arts/spines/characters/m20015/m20015.png differ
diff --git a/Assets/arts/spines/characters/m20015/m20015.png.meta b/Assets/arts/spines/characters/m20015/m20015.png.meta
new file mode 100644
index 000000000..17621842f
--- /dev/null
+++ b/Assets/arts/spines/characters/m20015/m20015.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: f26a707bbef104642ab73ff64a0789cf
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 0
+ wrapV: 0
+ wrapW: 0
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 1
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 1
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/spines/characters/m20015.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20015/m20015.skel.bytes b/Assets/arts/spines/characters/m20015/m20015.skel.bytes
new file mode 100644
index 000000000..5bf8acfc9
Binary files /dev/null and b/Assets/arts/spines/characters/m20015/m20015.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m20015/m20015.skel.bytes.meta b/Assets/arts/spines/characters/m20015/m20015.skel.bytes.meta
new file mode 100644
index 000000000..43930114e
--- /dev/null
+++ b/Assets/arts/spines/characters/m20015/m20015.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 1a358f986ce46b144a2d423702b2d437
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName: arts/spines/characters/m20015.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20015/m20015_atlas.asset b/Assets/arts/spines/characters/m20015/m20015_atlas.asset
new file mode 100644
index 000000000..d4cd2f0c1
--- /dev/null
+++ b/Assets/arts/spines/characters/m20015/m20015_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m20015_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: e98fad9438c3e2e4bba65e9d1e0de2f4, type: 3}
+ materials:
+ - {fileID: 2100000, guid: 524f1458e2dccf4419b5f2ace4e57191, type: 2}
diff --git a/Assets/arts/spines/characters/m20015/m20015_atlas.asset.meta b/Assets/arts/spines/characters/m20015/m20015_atlas.asset.meta
new file mode 100644
index 000000000..7bfe0cb50
--- /dev/null
+++ b/Assets/arts/spines/characters/m20015/m20015_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: d1dc385450c27ce409a541fe70c175b8
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/m20015.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20015/m20015_material.mat b/Assets/arts/spines/characters/m20015/m20015_material.mat
new file mode 100644
index 000000000..f277bd395
--- /dev/null
+++ b/Assets/arts/spines/characters/m20015/m20015_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m20015_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: f26a707bbef104642ab73ff64a0789cf, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m20015/m20015_material.mat.meta b/Assets/arts/spines/characters/m20015/m20015_material.mat.meta
new file mode 100644
index 000000000..4fb9092ea
--- /dev/null
+++ b/Assets/arts/spines/characters/m20015/m20015_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 524f1458e2dccf4419b5f2ace4e57191
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName: arts/spines/characters/m20015.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20015/m20015_skeletondata.asset b/Assets/arts/spines/characters/m20015/m20015_skeletondata.asset
new file mode 100644
index 000000000..f128cd667
--- /dev/null
+++ b/Assets/arts/spines/characters/m20015/m20015_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m20015_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: d1dc385450c27ce409a541fe70c175b8, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 1a358f986ce46b144a2d423702b2d437, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m20015/m20015_skeletondata.asset.meta b/Assets/arts/spines/characters/m20015/m20015_skeletondata.asset.meta
new file mode 100644
index 000000000..07a23e8d0
--- /dev/null
+++ b/Assets/arts/spines/characters/m20015/m20015_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: fa920ad3713f1af43934b181d5a79da3
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/m20015.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20016.meta b/Assets/arts/spines/characters/m20016.meta
new file mode 100644
index 000000000..93927d61a
--- /dev/null
+++ b/Assets/arts/spines/characters/m20016.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 9da052036b9423f4fb8d063163a8fcc1
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20016/m20016.atlas.txt b/Assets/arts/spines/characters/m20016/m20016.atlas.txt
new file mode 100644
index 000000000..c78c8c252
--- /dev/null
+++ b/Assets/arts/spines/characters/m20016/m20016.atlas.txt
@@ -0,0 +1,58 @@
+m20016.png
+size:2048,2048
+filter:Linear,Linear
+bj
+bounds:2,486,720,1560
+offsets:1,1,722,1562
+eye
+bounds:884,1938,46,46
+offsets:1,1,48,48
+eye_1
+bounds:2,162,81,80
+offsets:1,1,83,82
+eye_xuanyun
+bounds:142,220,22,22
+hair_1
+bounds:2,2,48,63
+offsets:1,1,50,65
+hair_2
+bounds:261,438,64,46
+offsets:1,1,66,48
+hair_3
+bounds:192,349,58,54
+offsets:1,1,60,56
+hand_L
+bounds:724,1783,56,83
+offsets:1,2,58,86
+hand_R
+bounds:192,405,67,79
+offsets:1,1,69,81
+hit_yan1
+bounds:85,163,16,18
+hit_yan2
+bounds:192,327,20,20
+leg_L_1
+bounds:943,2016,49,30
+offsets:1,1,51,32
+leg_L_2
+bounds:724,1728,53,53
+offsets:1,1,55,55
+leg_R_1
+bounds:26,130,48,30
+offsets:1,1,50,32
+leg_R_2
+bounds:782,1813,53,53
+offsets:1,1,55,55
+spine
+bounds:724,1868,158,178
+upperarm_L_1
+bounds:884,1986,57,60
+offsets:1,1,59,62
+upperarm_R_1
+bounds:85,183,55,59
+offsets:1,1,57,61
+xuanzhuan
+bounds:2,244,188,240
+yingzi
+bounds:2,67,93,22
+rotate:90
diff --git a/Assets/arts/spines/characters/m20016/m20016.atlas.txt.meta b/Assets/arts/spines/characters/m20016/m20016.atlas.txt.meta
new file mode 100644
index 000000000..30854fc8b
--- /dev/null
+++ b/Assets/arts/spines/characters/m20016/m20016.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 3bcd6c8e9c5a0e14b8dac7b1bf7af058
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName: arts/spines/characters/m20016.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20016/m20016.png b/Assets/arts/spines/characters/m20016/m20016.png
new file mode 100644
index 000000000..cf4429710
Binary files /dev/null and b/Assets/arts/spines/characters/m20016/m20016.png differ
diff --git a/Assets/arts/spines/characters/m20016/m20016.png.meta b/Assets/arts/spines/characters/m20016/m20016.png.meta
new file mode 100644
index 000000000..470d160c8
--- /dev/null
+++ b/Assets/arts/spines/characters/m20016/m20016.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 5c9fb7e234cfbc34c8928a236ad42d8e
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 0
+ wrapV: 0
+ wrapW: 0
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 1
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 1
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/spines/characters/m20016.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20016/m20016.skel.bytes b/Assets/arts/spines/characters/m20016/m20016.skel.bytes
new file mode 100644
index 000000000..fe2a5878b
Binary files /dev/null and b/Assets/arts/spines/characters/m20016/m20016.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m20016/m20016.skel.bytes.meta b/Assets/arts/spines/characters/m20016/m20016.skel.bytes.meta
new file mode 100644
index 000000000..4c62adba4
--- /dev/null
+++ b/Assets/arts/spines/characters/m20016/m20016.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: e27f2f1bd8f732a48bb436db33a7497a
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName: arts/spines/characters/m20016.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20016/m20016_atlas.asset b/Assets/arts/spines/characters/m20016/m20016_atlas.asset
new file mode 100644
index 000000000..3b3866654
--- /dev/null
+++ b/Assets/arts/spines/characters/m20016/m20016_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m20016_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: 3bcd6c8e9c5a0e14b8dac7b1bf7af058, type: 3}
+ materials:
+ - {fileID: 2100000, guid: aae83c9cc3939c24197f17ad16604b8c, type: 2}
diff --git a/Assets/arts/spines/characters/m20016/m20016_atlas.asset.meta b/Assets/arts/spines/characters/m20016/m20016_atlas.asset.meta
new file mode 100644
index 000000000..afeab3f05
--- /dev/null
+++ b/Assets/arts/spines/characters/m20016/m20016_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 4a6a25876a56f7345aebfa40181952ee
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/m20016.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20016/m20016_material.mat b/Assets/arts/spines/characters/m20016/m20016_material.mat
new file mode 100644
index 000000000..6b19b9ad6
--- /dev/null
+++ b/Assets/arts/spines/characters/m20016/m20016_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m20016_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 5c9fb7e234cfbc34c8928a236ad42d8e, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m20016/m20016_material.mat.meta b/Assets/arts/spines/characters/m20016/m20016_material.mat.meta
new file mode 100644
index 000000000..ac0b5c38b
--- /dev/null
+++ b/Assets/arts/spines/characters/m20016/m20016_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: aae83c9cc3939c24197f17ad16604b8c
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName: arts/spines/characters/m20016.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20016/m20016_skeletondata.asset b/Assets/arts/spines/characters/m20016/m20016_skeletondata.asset
new file mode 100644
index 000000000..cf90fdfbe
--- /dev/null
+++ b/Assets/arts/spines/characters/m20016/m20016_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m20016_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: 4a6a25876a56f7345aebfa40181952ee, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: e27f2f1bd8f732a48bb436db33a7497a, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m20016/m20016_skeletondata.asset.meta b/Assets/arts/spines/characters/m20016/m20016_skeletondata.asset.meta
new file mode 100644
index 000000000..6df197c61
--- /dev/null
+++ b/Assets/arts/spines/characters/m20016/m20016_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 63b2d47f25c9f114da9348bf34296b77
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/m20016.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20017.meta b/Assets/arts/spines/characters/m20017.meta
new file mode 100644
index 000000000..8571d7639
--- /dev/null
+++ b/Assets/arts/spines/characters/m20017.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 8923ff8c005354d469434e0d27db602f
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20017/m20017.atlas.txt b/Assets/arts/spines/characters/m20017/m20017.atlas.txt
new file mode 100644
index 000000000..ac8c4d322
--- /dev/null
+++ b/Assets/arts/spines/characters/m20017/m20017.atlas.txt
@@ -0,0 +1,66 @@
+m20017.png
+size:2048,2048
+filter:Linear,Linear
+bj
+bounds:2,387,720,1560
+offsets:1,1,722,1562
+clothes
+bounds:2,113,137,56
+rotate:90
+eye_1_L
+bounds:60,132,23,22
+offsets:1,1,25,24
+rotate:90
+eye_1_R
+bounds:84,228,23,22
+offsets:1,1,25,24
+eye_L
+bounds:227,313,15,10
+offsets:1,1,17,12
+eye_R
+bounds:128,253,14,13
+offsets:1,1,16,15
+eye_xuanyun
+bounds:268,363,22,22
+hand_L
+bounds:878,1853,30,30
+offsets:1,1,32,32
+hand_R
+bounds:958,1917,30,30
+offsets:1,1,32,32
+head_1
+bounds:878,1885,78,62
+offsets:1,1,80,64
+head_2
+bounds:2,252,124,133
+head_3
+bounds:227,325,39,60
+offsets:1,1,41,62
+head_4
+bounds:724,1842,152,105
+offsets:1,1,154,107
+head_5
+bounds:792,1785,39,55
+offsets:1,1,41,57
+hit_yan1
+bounds:206,286,16,18
+hit_yan2
+bounds:724,1691,20,20
+hit_yan3
+bounds:2,2,28,28
+pelvis
+bounds:128,268,76,36
+offsets:1,1,78,38
+spine
+bounds:128,306,97,79
+offsets:1,1,99,81
+upperarm_L_01
+bounds:2,32,53,79
+upperarm_R_1
+bounds:724,1764,66,76
+weapon_1
+bounds:724,1713,50,49
+offsets:1,1,52,51
+yingzi
+bounds:60,157,93,22
+rotate:90
diff --git a/Assets/arts/spines/characters/m20017/m20017.atlas.txt.meta b/Assets/arts/spines/characters/m20017/m20017.atlas.txt.meta
new file mode 100644
index 000000000..2b5876a50
--- /dev/null
+++ b/Assets/arts/spines/characters/m20017/m20017.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 5a88835a81aa4e2418ce7ca680536cd9
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName: arts/spines/characters/m20017.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20017/m20017.png b/Assets/arts/spines/characters/m20017/m20017.png
new file mode 100644
index 000000000..cd4ded3b7
Binary files /dev/null and b/Assets/arts/spines/characters/m20017/m20017.png differ
diff --git a/Assets/arts/spines/characters/m20017/m20017.png.meta b/Assets/arts/spines/characters/m20017/m20017.png.meta
new file mode 100644
index 000000000..02e49d18e
--- /dev/null
+++ b/Assets/arts/spines/characters/m20017/m20017.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 454a7e75abb97b34ea0306f42127a3b9
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/spines/characters/m20017.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20017/m20017.skel.bytes b/Assets/arts/spines/characters/m20017/m20017.skel.bytes
new file mode 100644
index 000000000..6864fed0e
Binary files /dev/null and b/Assets/arts/spines/characters/m20017/m20017.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m20017/m20017.skel.bytes.meta b/Assets/arts/spines/characters/m20017/m20017.skel.bytes.meta
new file mode 100644
index 000000000..bcf073a8a
--- /dev/null
+++ b/Assets/arts/spines/characters/m20017/m20017.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 3a2057b6d5517b34c825838be5a9fe0a
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName: arts/spines/characters/m20017.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20017/m20017_atlas.asset b/Assets/arts/spines/characters/m20017/m20017_atlas.asset
new file mode 100644
index 000000000..149ebb947
--- /dev/null
+++ b/Assets/arts/spines/characters/m20017/m20017_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m20017_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: 5a88835a81aa4e2418ce7ca680536cd9, type: 3}
+ materials:
+ - {fileID: 2100000, guid: 9ad8e987d2474b042a16b7ff956bcbae, type: 2}
diff --git a/Assets/arts/spines/characters/m20017/m20017_atlas.asset.meta b/Assets/arts/spines/characters/m20017/m20017_atlas.asset.meta
new file mode 100644
index 000000000..13a18bdc2
--- /dev/null
+++ b/Assets/arts/spines/characters/m20017/m20017_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: c1ba3303f764f5d4fa47b617a942e2e9
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/m20017.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20017/m20017_material.mat b/Assets/arts/spines/characters/m20017/m20017_material.mat
new file mode 100644
index 000000000..e81fb9618
--- /dev/null
+++ b/Assets/arts/spines/characters/m20017/m20017_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m20017_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 454a7e75abb97b34ea0306f42127a3b9, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m20017/m20017_material.mat.meta b/Assets/arts/spines/characters/m20017/m20017_material.mat.meta
new file mode 100644
index 000000000..6d186b190
--- /dev/null
+++ b/Assets/arts/spines/characters/m20017/m20017_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 9ad8e987d2474b042a16b7ff956bcbae
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName: arts/spines/characters/m20017.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20017/m20017_skeletondata.asset b/Assets/arts/spines/characters/m20017/m20017_skeletondata.asset
new file mode 100644
index 000000000..475defead
--- /dev/null
+++ b/Assets/arts/spines/characters/m20017/m20017_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m20017_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: c1ba3303f764f5d4fa47b617a942e2e9, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 3a2057b6d5517b34c825838be5a9fe0a, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m20017/m20017_skeletondata.asset.meta b/Assets/arts/spines/characters/m20017/m20017_skeletondata.asset.meta
new file mode 100644
index 000000000..ba089bf7b
--- /dev/null
+++ b/Assets/arts/spines/characters/m20017/m20017_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 89fa62c19a3074e43a88fa084fd3d11d
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/m20017.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20018.meta b/Assets/arts/spines/characters/m20018.meta
new file mode 100644
index 000000000..42336a65e
--- /dev/null
+++ b/Assets/arts/spines/characters/m20018.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: c334cf216ebf6fd40bc55ef8aac271c5
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20018/m20018.atlas.txt b/Assets/arts/spines/characters/m20018/m20018.atlas.txt
new file mode 100644
index 000000000..46448e406
--- /dev/null
+++ b/Assets/arts/spines/characters/m20018/m20018.atlas.txt
@@ -0,0 +1,64 @@
+m20018.png
+size:2048,2048
+filter:Linear,Linear
+bj
+bounds:2,280,720,1560
+offsets:1,1,722,1562
+clothes
+bounds:2,114,136,56
+eye_1_L
+bounds:331,256,23,22
+offsets:1,1,25,24
+eye_1_R
+bounds:253,219,24,22
+offsets:1,1,26,24
+eye_L
+bounds:155,163,15,10
+offsets:1,1,17,12
+eye_R
+bounds:140,156,14,13
+offsets:1,1,16,15
+rotate:90
+eye_xuanyun
+bounds:724,1544,22,22
+hand_L
+bounds:930,1810,30,30
+offsets:1,1,32,32
+hand_R
+bounds:2,2,30,29
+offsets:1,1,32,31
+head_1
+bounds:850,1778,78,62
+offsets:1,1,80,64
+head_2
+bounds:724,1708,124,132
+head_3
+bounds:724,1568,39,60
+offsets:1,1,41,62
+head_4
+bounds:2,172,151,106
+offsets:1,1,153,108
+head_5
+bounds:850,1721,39,55
+offsets:1,1,41,57
+hit_yan1
+bounds:792,1637,16,18
+hit_yan2
+bounds:765,1608,20,20
+hit_yan3
+bounds:57,84,28,28
+pelvis
+bounds:253,243,76,35
+offsets:1,1,78,37
+spine
+bounds:155,199,96,79
+offsets:1,1,98,81
+upperarm_L_01
+bounds:2,33,53,79
+upperarm_R_1
+bounds:724,1630,66,76
+weapon_1
+bounds:792,1657,50,49
+offsets:1,1,52,51
+yingzi
+bounds:155,175,93,22
diff --git a/Assets/arts/spines/characters/m20018/m20018.atlas.txt.meta b/Assets/arts/spines/characters/m20018/m20018.atlas.txt.meta
new file mode 100644
index 000000000..ee10396ef
--- /dev/null
+++ b/Assets/arts/spines/characters/m20018/m20018.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: a13f16869bb411c43bddc5f61ac0c9e4
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName: arts/spines/characters/m20018.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20018/m20018.png b/Assets/arts/spines/characters/m20018/m20018.png
new file mode 100644
index 000000000..280912cc0
Binary files /dev/null and b/Assets/arts/spines/characters/m20018/m20018.png differ
diff --git a/Assets/arts/spines/characters/m20018/m20018.png.meta b/Assets/arts/spines/characters/m20018/m20018.png.meta
new file mode 100644
index 000000000..2b7726ec9
--- /dev/null
+++ b/Assets/arts/spines/characters/m20018/m20018.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 75409ad626c9af24093f268de81bd711
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/spines/characters/m20018.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20018/m20018.skel.bytes b/Assets/arts/spines/characters/m20018/m20018.skel.bytes
new file mode 100644
index 000000000..892b1bf06
Binary files /dev/null and b/Assets/arts/spines/characters/m20018/m20018.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m20018/m20018.skel.bytes.meta b/Assets/arts/spines/characters/m20018/m20018.skel.bytes.meta
new file mode 100644
index 000000000..b796e5e2f
--- /dev/null
+++ b/Assets/arts/spines/characters/m20018/m20018.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 7a34dfe14b4d69145879fe69cea40af9
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName: arts/spines/characters/m20018.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20018/m20018_atlas.asset b/Assets/arts/spines/characters/m20018/m20018_atlas.asset
new file mode 100644
index 000000000..746b7c01d
--- /dev/null
+++ b/Assets/arts/spines/characters/m20018/m20018_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m20018_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: a13f16869bb411c43bddc5f61ac0c9e4, type: 3}
+ materials:
+ - {fileID: 2100000, guid: 5980949a1f60ee64bac4ce6e65c65aaa, type: 2}
diff --git a/Assets/arts/spines/characters/m20018/m20018_atlas.asset.meta b/Assets/arts/spines/characters/m20018/m20018_atlas.asset.meta
new file mode 100644
index 000000000..e65ed41e7
--- /dev/null
+++ b/Assets/arts/spines/characters/m20018/m20018_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 93c0d0cffb9f5ae4ba5c46ee0d2f28fd
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/m20018.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20018/m20018_material.mat b/Assets/arts/spines/characters/m20018/m20018_material.mat
new file mode 100644
index 000000000..193874fbe
--- /dev/null
+++ b/Assets/arts/spines/characters/m20018/m20018_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m20018_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 75409ad626c9af24093f268de81bd711, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m20018/m20018_material.mat.meta b/Assets/arts/spines/characters/m20018/m20018_material.mat.meta
new file mode 100644
index 000000000..0c0bc6e0b
--- /dev/null
+++ b/Assets/arts/spines/characters/m20018/m20018_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 5980949a1f60ee64bac4ce6e65c65aaa
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName: arts/spines/characters/m20018.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20018/m20018_skeletondata.asset b/Assets/arts/spines/characters/m20018/m20018_skeletondata.asset
new file mode 100644
index 000000000..566de76b9
--- /dev/null
+++ b/Assets/arts/spines/characters/m20018/m20018_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m20018_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: 93c0d0cffb9f5ae4ba5c46ee0d2f28fd, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 7a34dfe14b4d69145879fe69cea40af9, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m20018/m20018_skeletondata.asset.meta b/Assets/arts/spines/characters/m20018/m20018_skeletondata.asset.meta
new file mode 100644
index 000000000..f702d27f2
--- /dev/null
+++ b/Assets/arts/spines/characters/m20018/m20018_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 81fa80b9974d463419e15f6820310bb4
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/m20018.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20019.meta b/Assets/arts/spines/characters/m20019.meta
new file mode 100644
index 000000000..bb7e29f98
--- /dev/null
+++ b/Assets/arts/spines/characters/m20019.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 5b8d01e82a708bf46a7f0cce922e0772
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20019/m20019.atlas.txt b/Assets/arts/spines/characters/m20019/m20019.atlas.txt
new file mode 100644
index 000000000..4542c3f56
--- /dev/null
+++ b/Assets/arts/spines/characters/m20019/m20019.atlas.txt
@@ -0,0 +1,67 @@
+m20019.png
+size:512,512
+filter:Linear,Linear
+clothes_1
+bounds:375,317,48,49
+clothes_2
+bounds:425,333,33,50
+rotate:90
+clothes_3
+bounds:299,229,34,52
+eye_L
+bounds:227,283,18,24
+eye_R
+bounds:479,379,22,30
+eye_xuanyun
+bounds:455,309,22,22
+gutou
+bounds:227,228,70,53
+hand_L_1
+bounds:375,292,28,23
+hand_L_2
+bounds:323,300,50,52
+hand_R_1
+bounds:425,306,25,28
+rotate:90
+hand_R_2
+bounds:226,19,53,52
+rotate:90
+hand_R_3
+bounds:179,2,62,45
+rotate:90
+head_1
+bounds:249,283,72,69
+head_2
+bounds:104,182,121,125
+hit_yan1
+bounds:405,299,16,18
+rotate:90
+kulou
+bounds:100,2,77,62
+offsets:0,1,77,63
+leg
+bounds:104,66,114,116
+rotate:90
+spine
+bounds:2,10,96,86
+upperarm_L_1
+bounds:189,309,58,43
+upperarm_L_2
+bounds:222,74,52,54
+upperarm_R_1
+bounds:222,130,58,49
+upperarm_R_2
+bounds:227,181,45,60
+rotate:90
+weapon_1
+bounds:2,98,209,100
+rotate:90
+yan01
+bounds:2,309,185,195
+yan02
+bounds:341,368,136,136
+yan03
+bounds:189,354,150,150
+yinying
+bounds:479,411,93,22
+rotate:90
diff --git a/Assets/arts/spines/characters/m20019/m20019.atlas.txt.meta b/Assets/arts/spines/characters/m20019/m20019.atlas.txt.meta
new file mode 100644
index 000000000..b888cbaaf
--- /dev/null
+++ b/Assets/arts/spines/characters/m20019/m20019.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 937bf0b96d0235b478c403ce3f9b941d
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20019/m20019.png b/Assets/arts/spines/characters/m20019/m20019.png
new file mode 100644
index 000000000..949ef53c5
Binary files /dev/null and b/Assets/arts/spines/characters/m20019/m20019.png differ
diff --git a/Assets/arts/spines/characters/m20019/m20019.png.meta b/Assets/arts/spines/characters/m20019/m20019.png.meta
new file mode 100644
index 000000000..174bad187
--- /dev/null
+++ b/Assets/arts/spines/characters/m20019/m20019.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 14ad0419fb0864c439f67a598f08c6f3
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20019/m20019.skel.bytes b/Assets/arts/spines/characters/m20019/m20019.skel.bytes
new file mode 100644
index 000000000..82ea7b41b
Binary files /dev/null and b/Assets/arts/spines/characters/m20019/m20019.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m20019/m20019.skel.bytes.meta b/Assets/arts/spines/characters/m20019/m20019.skel.bytes.meta
new file mode 100644
index 000000000..9a5e89b2a
--- /dev/null
+++ b/Assets/arts/spines/characters/m20019/m20019.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 0c7529a3a094bc2469b3c72e7bca4437
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20019/m20019_atlas.asset b/Assets/arts/spines/characters/m20019/m20019_atlas.asset
new file mode 100644
index 000000000..c377809d6
--- /dev/null
+++ b/Assets/arts/spines/characters/m20019/m20019_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m20019_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: 937bf0b96d0235b478c403ce3f9b941d, type: 3}
+ materials:
+ - {fileID: 2100000, guid: 63fd8881d70913745bcdfe74ef4ee3ce, type: 2}
diff --git a/Assets/arts/spines/characters/m20019/m20019_atlas.asset.meta b/Assets/arts/spines/characters/m20019/m20019_atlas.asset.meta
new file mode 100644
index 000000000..f4c77f96b
--- /dev/null
+++ b/Assets/arts/spines/characters/m20019/m20019_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 6c262629b4ba78b438e6c83f23e397f3
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20019/m20019_material.mat b/Assets/arts/spines/characters/m20019/m20019_material.mat
new file mode 100644
index 000000000..839b1c4ba
--- /dev/null
+++ b/Assets/arts/spines/characters/m20019/m20019_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m20019_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 14ad0419fb0864c439f67a598f08c6f3, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m20019/m20019_material.mat.meta b/Assets/arts/spines/characters/m20019/m20019_material.mat.meta
new file mode 100644
index 000000000..1b6cd4e2d
--- /dev/null
+++ b/Assets/arts/spines/characters/m20019/m20019_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 63fd8881d70913745bcdfe74ef4ee3ce
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20019/m20019_skeletondata.asset b/Assets/arts/spines/characters/m20019/m20019_skeletondata.asset
new file mode 100644
index 000000000..16fdae5c1
--- /dev/null
+++ b/Assets/arts/spines/characters/m20019/m20019_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m20019_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: 6c262629b4ba78b438e6c83f23e397f3, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 0c7529a3a094bc2469b3c72e7bca4437, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m20019/m20019_skeletondata.asset.meta b/Assets/arts/spines/characters/m20019/m20019_skeletondata.asset.meta
new file mode 100644
index 000000000..5f331cd2a
--- /dev/null
+++ b/Assets/arts/spines/characters/m20019/m20019_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 4eb9e2eec29f0cf4fa33018834523764
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20020.meta b/Assets/arts/spines/characters/m20020.meta
new file mode 100644
index 000000000..d8307bcd1
--- /dev/null
+++ b/Assets/arts/spines/characters/m20020.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 390f8554134ad77498053466495c8f0a
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20020/m20020.atlas.txt b/Assets/arts/spines/characters/m20020/m20020.atlas.txt
new file mode 100644
index 000000000..b8006f264
--- /dev/null
+++ b/Assets/arts/spines/characters/m20020/m20020.atlas.txt
@@ -0,0 +1,66 @@
+m20020.png
+size:512,512
+filter:Linear,Linear
+clothes_1
+bounds:401,258,48,49
+rotate:90
+clothes_2
+bounds:467,400,33,50
+clothes_3
+bounds:100,47,34,52
+eye_L
+bounds:467,356,18,24
+rotate:90
+eye_R
+bounds:327,241,22,30
+rotate:90
+eye_xuanyun
+bounds:359,241,22,22
+gutou
+bounds:263,181,70,53
+hand_L_1
+bounds:467,376,31,22
+hand_L_2
+bounds:410,308,50,52
+rotate:90
+hand_R_1
+bounds:100,17,25,28
+hand_R_2
+bounds:258,24,53,52
+hand_R_3
+bounds:258,134,62,45
+head_1
+bounds:327,265,72,69
+head_2
+bounds:140,188,121,125
+hit_yan1
+bounds:383,245,16,18
+kulou
+bounds:263,236,77,62
+offsets:0,1,77,63
+rotate:90
+leg
+bounds:140,72,114,116
+rotate:90
+spine
+bounds:2,13,96,86
+upperarm_L_1
+bounds:467,452,58,43
+rotate:90
+upperarm_L_2
+bounds:258,78,53,54
+upperarm_R_1
+bounds:198,21,58,49
+upperarm_R_2
+bounds:136,25,45,60
+rotate:90
+weapon_1
+bounds:2,239,124,271
+yan01
+bounds:128,315,185,195
+yan02
+bounds:2,101,136,136
+yan03
+bounds:315,360,150,150
+yinying
+bounds:315,336,93,22
diff --git a/Assets/arts/spines/characters/m20020/m20020.atlas.txt.meta b/Assets/arts/spines/characters/m20020/m20020.atlas.txt.meta
new file mode 100644
index 000000000..65eef794d
--- /dev/null
+++ b/Assets/arts/spines/characters/m20020/m20020.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 1ce043d793074e24ba9c34cda96fddd2
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20020/m20020.png b/Assets/arts/spines/characters/m20020/m20020.png
new file mode 100644
index 000000000..8f3d122b2
Binary files /dev/null and b/Assets/arts/spines/characters/m20020/m20020.png differ
diff --git a/Assets/arts/spines/characters/m20020/m20020.png.meta b/Assets/arts/spines/characters/m20020/m20020.png.meta
new file mode 100644
index 000000000..ede311863
--- /dev/null
+++ b/Assets/arts/spines/characters/m20020/m20020.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: ed1da244201e37b4fbbb3f6a165d4b43
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20020/m20020.skel.bytes b/Assets/arts/spines/characters/m20020/m20020.skel.bytes
new file mode 100644
index 000000000..2134b2b3b
Binary files /dev/null and b/Assets/arts/spines/characters/m20020/m20020.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m20020/m20020.skel.bytes.meta b/Assets/arts/spines/characters/m20020/m20020.skel.bytes.meta
new file mode 100644
index 000000000..780be2074
--- /dev/null
+++ b/Assets/arts/spines/characters/m20020/m20020.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 85cee074c70b8bb4d86cb1930146004e
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20020/m20020_atlas.asset b/Assets/arts/spines/characters/m20020/m20020_atlas.asset
new file mode 100644
index 000000000..c1ff2bf3e
--- /dev/null
+++ b/Assets/arts/spines/characters/m20020/m20020_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m20020_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: 1ce043d793074e24ba9c34cda96fddd2, type: 3}
+ materials:
+ - {fileID: 2100000, guid: 6cdcd9068019206419fa831103976973, type: 2}
diff --git a/Assets/arts/spines/characters/m20020/m20020_atlas.asset.meta b/Assets/arts/spines/characters/m20020/m20020_atlas.asset.meta
new file mode 100644
index 000000000..782d64a6b
--- /dev/null
+++ b/Assets/arts/spines/characters/m20020/m20020_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: af21140fd539d254999899e3994e6eda
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20020/m20020_material.mat b/Assets/arts/spines/characters/m20020/m20020_material.mat
new file mode 100644
index 000000000..1fb62f8e0
--- /dev/null
+++ b/Assets/arts/spines/characters/m20020/m20020_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m20020_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: ed1da244201e37b4fbbb3f6a165d4b43, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m20020/m20020_material.mat.meta b/Assets/arts/spines/characters/m20020/m20020_material.mat.meta
new file mode 100644
index 000000000..2f928b4f2
--- /dev/null
+++ b/Assets/arts/spines/characters/m20020/m20020_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 6cdcd9068019206419fa831103976973
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20020/m20020_skeletondata.asset b/Assets/arts/spines/characters/m20020/m20020_skeletondata.asset
new file mode 100644
index 000000000..c5f493a82
--- /dev/null
+++ b/Assets/arts/spines/characters/m20020/m20020_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m20020_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: af21140fd539d254999899e3994e6eda, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 85cee074c70b8bb4d86cb1930146004e, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m20020/m20020_skeletondata.asset.meta b/Assets/arts/spines/characters/m20020/m20020_skeletondata.asset.meta
new file mode 100644
index 000000000..26a44f462
--- /dev/null
+++ b/Assets/arts/spines/characters/m20020/m20020_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: ea683b3ab98384f41a8f5129a909595f
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20021.meta b/Assets/arts/spines/characters/m20021.meta
new file mode 100644
index 000000000..39acffcc0
--- /dev/null
+++ b/Assets/arts/spines/characters/m20021.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 4f0c502913a64784583b884bf657956e
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20021/m20021.atlas.txt b/Assets/arts/spines/characters/m20021/m20021.atlas.txt
new file mode 100644
index 000000000..6962e3a40
--- /dev/null
+++ b/Assets/arts/spines/characters/m20021/m20021.atlas.txt
@@ -0,0 +1,103 @@
+m20021.png
+size:2048,2048
+filter:Linear,Linear
+FX/6981f03cdd916661ca58e0417013e3543f7d35bb99358-yDzX5X_0000_图层-12
+bounds:2,1768,573,277
+FX/6981f03cdd916661ca58e0417013e3543f7d35bb99358-yDzX5X_0001_图层-11
+bounds:2,1575,548,191
+FX/6981f03cdd916661ca58e0417013e3543f7d35bb99358-yDzX5X_0002_图层-10
+bounds:2,301,543,53
+rotate:90
+FX/6981f03cdd916661ca58e0417013e3543f7d35bb99358-yDzX5X_0003_图层-9
+bounds:57,310,534,50
+rotate:90
+FX/6981f03cdd916661ca58e0417013e3543f7d35bb99358-yDzX5X_0004_图层-8
+bounds:1043,1860,515,71
+FX/6981f03cdd916661ca58e0417013e3543f7d35bb99358-yDzX5X_0005_图层-7
+bounds:1043,1933,528,112
+FX/6981f03cdd916661ca58e0417013e3543f7d35bb99358-yDzX5X_0006_图层-6
+bounds:2,846,503,137
+rotate:90
+FX/6981f03cdd916661ca58e0417013e3543f7d35bb99358-yDzX5X_0007_图层-5
+bounds:577,1845,464,200
+FX/6981f03cdd916661ca58e0417013e3543f7d35bb99358-yDzX5X_0008_图层-4
+bounds:2,1351,425,222
+FX/6981f03cdd916661ca58e0417013e3543f7d35bb99358-yDzX5X_0009_图层-3
+bounds:141,961,388,206
+rotate:90
+FX/6981f03cdd916661ca58e0417013e3543f7d35bb99358-yDzX5X_0010_图层-2
+bounds:349,990,359,181
+rotate:90
+FX/6981f03cdd916661ca58e0417013e3543f7d35bb99358-yDzX5X_0011_图层-1
+bounds:429,1355,218,130
+rotate:90
+eye_L
+bounds:552,1744,20,22
+eye_R
+bounds:109,678,28,31
+eye_xuanyun
+bounds:349,966,22,22
+gutou
+bounds:2,229,70,53
+rotate:90
+hair
+bounds:1160,1790,117,68
+hair_1
+bounds:711,1747,96,129
+rotate:90
+hand_L_1
+bounds:109,799,45,28
+rotate:90
+hand_L_2
+bounds:284,826,31,46
+rotate:90
+hand_L_3
+bounds:109,711,31,41
+hand_L_4
+bounds:1522,1812,46,33
+rotate:90
+hand_R
+bounds:842,1743,109,100
+head
+bounds:953,1747,88,96
+hit_yan3
+bounds:109,648,28,28
+kulou
+bounds:1371,1796,77,62
+offsets:0,1,77,63
+leg_L_1
+bounds:2,100,48,58
+leg_L_2
+bounds:2,2,39,44
+rotate:90
+leg_R_1
+bounds:57,248,48,60
+leg_R_2
+bounds:109,754,38,43
+mouth_1
+bounds:284,859,100,55
+rotate:90
+mouth_2
+bounds:1279,1803,90,55
+pelvis
+bounds:2,43,55,50
+rotate:90
+shuitan
+bounds:1573,1939,437,106
+spine
+bounds:141,825,134,141
+rotate:90
+upperarm_L_1
+bounds:1450,1799,59,70
+rotate:90
+upperarm_L_2
+bounds:1043,1774,84,115
+rotate:90
+upperarm_R_1
+bounds:2,160,63,67
+upperarm_R_2
+bounds:577,1749,94,132
+rotate:90
+yinying
+bounds:2012,1952,93,22
+rotate:90
diff --git a/Assets/arts/spines/characters/m20021/m20021.atlas.txt.meta b/Assets/arts/spines/characters/m20021/m20021.atlas.txt.meta
new file mode 100644
index 000000000..6aa4b3b79
--- /dev/null
+++ b/Assets/arts/spines/characters/m20021/m20021.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: e9b27651bea164947925fb4bd68e171f
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20021/m20021.png b/Assets/arts/spines/characters/m20021/m20021.png
new file mode 100644
index 000000000..7efc4f98c
Binary files /dev/null and b/Assets/arts/spines/characters/m20021/m20021.png differ
diff --git a/Assets/arts/spines/characters/m20021/m20021.png.meta b/Assets/arts/spines/characters/m20021/m20021.png.meta
new file mode 100644
index 000000000..87b9eeb5b
--- /dev/null
+++ b/Assets/arts/spines/characters/m20021/m20021.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: c3f9a0ec4ba203d469d54832bd88a2da
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 0
+ wrapV: 0
+ wrapW: 0
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 1
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 1
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20021/m20021.skel.bytes b/Assets/arts/spines/characters/m20021/m20021.skel.bytes
new file mode 100644
index 000000000..8a8ffd386
Binary files /dev/null and b/Assets/arts/spines/characters/m20021/m20021.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m20021/m20021.skel.bytes.meta b/Assets/arts/spines/characters/m20021/m20021.skel.bytes.meta
new file mode 100644
index 000000000..01f6a90e3
--- /dev/null
+++ b/Assets/arts/spines/characters/m20021/m20021.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: f62c3dcc202e2dc45a3a1e01692145f8
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20021/m20021_atlas.asset b/Assets/arts/spines/characters/m20021/m20021_atlas.asset
new file mode 100644
index 000000000..b8b1242a8
--- /dev/null
+++ b/Assets/arts/spines/characters/m20021/m20021_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m20021_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: e9b27651bea164947925fb4bd68e171f, type: 3}
+ materials:
+ - {fileID: 2100000, guid: 9610eb114f3e54043bfe90bf95625afa, type: 2}
diff --git a/Assets/arts/spines/characters/m20021/m20021_atlas.asset.meta b/Assets/arts/spines/characters/m20021/m20021_atlas.asset.meta
new file mode 100644
index 000000000..8cfe261fb
--- /dev/null
+++ b/Assets/arts/spines/characters/m20021/m20021_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 4bbb63c31afa319409a1db2a238a1f49
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20021/m20021_material.mat b/Assets/arts/spines/characters/m20021/m20021_material.mat
new file mode 100644
index 000000000..cb9262971
--- /dev/null
+++ b/Assets/arts/spines/characters/m20021/m20021_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m20021_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: c3f9a0ec4ba203d469d54832bd88a2da, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m20021/m20021_material.mat.meta b/Assets/arts/spines/characters/m20021/m20021_material.mat.meta
new file mode 100644
index 000000000..f964754e5
--- /dev/null
+++ b/Assets/arts/spines/characters/m20021/m20021_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 9610eb114f3e54043bfe90bf95625afa
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20021/m20021_skeletondata.asset b/Assets/arts/spines/characters/m20021/m20021_skeletondata.asset
new file mode 100644
index 000000000..0c8f255d8
--- /dev/null
+++ b/Assets/arts/spines/characters/m20021/m20021_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m20021_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: 4bbb63c31afa319409a1db2a238a1f49, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: f62c3dcc202e2dc45a3a1e01692145f8, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m20021/m20021_skeletondata.asset.meta b/Assets/arts/spines/characters/m20021/m20021_skeletondata.asset.meta
new file mode 100644
index 000000000..531cee68e
--- /dev/null
+++ b/Assets/arts/spines/characters/m20021/m20021_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 4086436fd4467a340af9b4de4f7d6195
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20022.meta b/Assets/arts/spines/characters/m20022.meta
new file mode 100644
index 000000000..9e4265a23
--- /dev/null
+++ b/Assets/arts/spines/characters/m20022.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: fcd55332223fc6344b2541e4e04b73a0
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20022/m20022.atlas.txt b/Assets/arts/spines/characters/m20022/m20022.atlas.txt
new file mode 100644
index 000000000..6a0de4966
--- /dev/null
+++ b/Assets/arts/spines/characters/m20022/m20022.atlas.txt
@@ -0,0 +1,51 @@
+m20022.png
+size:512,512
+filter:Linear,Linear
+clothes
+bounds:158,58,70,67
+eye
+bounds:481,404,29,21
+eye_xuanyun
+bounds:203,36,20,20
+hair
+bounds:2,168,205,70
+rotate:90
+hand_L
+bounds:88,2,61,58
+rotate:90
+hand_R
+bounds:148,2,53,54
+head
+bounds:74,169,59,82
+rotate:90
+hit_yan3
+bounds:2,30,28,28
+leg_L
+bounds:158,127,66,101
+leg_R
+bounds:88,65,68,102
+pelvis
+bounds:170,417,173,93
+spine_1
+bounds:345,406,134,104
+spine_2
+bounds:2,375,166,135
+upperarm_L_1
+bounds:181,330,104,85
+upperarm_L_2
+bounds:226,144,74,91
+upperarm_L_3
+bounds:287,340,64,82
+rotate:90
+upperarm_R_1
+bounds:181,237,98,91
+upperarm_R_2
+bounds:2,60,84,106
+upperarm_R_3
+bounds:230,59,67,83
+weapon_1
+bounds:74,230,143,105
+rotate:90
+yingzi
+bounds:481,427,83,19
+rotate:90
diff --git a/Assets/arts/spines/characters/m20022/m20022.atlas.txt.meta b/Assets/arts/spines/characters/m20022/m20022.atlas.txt.meta
new file mode 100644
index 000000000..d4dd83fe9
--- /dev/null
+++ b/Assets/arts/spines/characters/m20022/m20022.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 51a88569431053c4ba5d115f1d50e996
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20022/m20022.png b/Assets/arts/spines/characters/m20022/m20022.png
new file mode 100644
index 000000000..c2f2ce5d0
Binary files /dev/null and b/Assets/arts/spines/characters/m20022/m20022.png differ
diff --git a/Assets/arts/spines/characters/m20022/m20022.png.meta b/Assets/arts/spines/characters/m20022/m20022.png.meta
new file mode 100644
index 000000000..6a17b2219
--- /dev/null
+++ b/Assets/arts/spines/characters/m20022/m20022.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: eac1b7c4ee087fa408e4bc2f2ce30fa2
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20022/m20022.skel.bytes b/Assets/arts/spines/characters/m20022/m20022.skel.bytes
new file mode 100644
index 000000000..ddc75d64d
Binary files /dev/null and b/Assets/arts/spines/characters/m20022/m20022.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m20022/m20022.skel.bytes.meta b/Assets/arts/spines/characters/m20022/m20022.skel.bytes.meta
new file mode 100644
index 000000000..9f5c0e4a4
--- /dev/null
+++ b/Assets/arts/spines/characters/m20022/m20022.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 7f88e22286620fc4c9f0c828ed84880e
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20022/m20022_atlas.asset b/Assets/arts/spines/characters/m20022/m20022_atlas.asset
new file mode 100644
index 000000000..c4168ad1e
--- /dev/null
+++ b/Assets/arts/spines/characters/m20022/m20022_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m20022_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: 51a88569431053c4ba5d115f1d50e996, type: 3}
+ materials:
+ - {fileID: 2100000, guid: 4e45d612c2565a54ab8482f54243d566, type: 2}
diff --git a/Assets/arts/spines/characters/m20022/m20022_atlas.asset.meta b/Assets/arts/spines/characters/m20022/m20022_atlas.asset.meta
new file mode 100644
index 000000000..ed3e13ae5
--- /dev/null
+++ b/Assets/arts/spines/characters/m20022/m20022_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 62934413402b8cc4e9ba86a99815d775
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20022/m20022_material.mat b/Assets/arts/spines/characters/m20022/m20022_material.mat
new file mode 100644
index 000000000..18e8c4edc
--- /dev/null
+++ b/Assets/arts/spines/characters/m20022/m20022_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m20022_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: eac1b7c4ee087fa408e4bc2f2ce30fa2, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m20022/m20022_material.mat.meta b/Assets/arts/spines/characters/m20022/m20022_material.mat.meta
new file mode 100644
index 000000000..1fb670fa1
--- /dev/null
+++ b/Assets/arts/spines/characters/m20022/m20022_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 4e45d612c2565a54ab8482f54243d566
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20022/m20022_skeletondata.asset b/Assets/arts/spines/characters/m20022/m20022_skeletondata.asset
new file mode 100644
index 000000000..29326d680
--- /dev/null
+++ b/Assets/arts/spines/characters/m20022/m20022_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m20022_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: 62934413402b8cc4e9ba86a99815d775, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 7f88e22286620fc4c9f0c828ed84880e, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m20022/m20022_skeletondata.asset.meta b/Assets/arts/spines/characters/m20022/m20022_skeletondata.asset.meta
new file mode 100644
index 000000000..97ef7d391
--- /dev/null
+++ b/Assets/arts/spines/characters/m20022/m20022_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: ad17396d88ad1de44be4b157cd3443b0
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20023.meta b/Assets/arts/spines/characters/m20023.meta
new file mode 100644
index 000000000..62fd9eae9
--- /dev/null
+++ b/Assets/arts/spines/characters/m20023.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 22cf70f0cad6df04facc24bef1d9b6ab
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20023/m20023.atlas.txt b/Assets/arts/spines/characters/m20023/m20023.atlas.txt
new file mode 100644
index 000000000..3e7f4cb2b
--- /dev/null
+++ b/Assets/arts/spines/characters/m20023/m20023.atlas.txt
@@ -0,0 +1,52 @@
+m20023.png
+size:512,512
+filter:Linear,Linear
+eye_L
+bounds:331,400,23,21
+eye_R
+bounds:2,19,26,23
+eye_xuanyun
+bounds:192,244,20,20
+gutou
+bounds:2,44,70,53
+rotate:90
+hand_L
+bounds:449,456,61,54
+hand_R
+bounds:57,58,65,54
+rotate:90
+head
+bounds:2,257,123,92
+hit_yan3
+bounds:192,266,28,28
+kulou
+bounds:370,448,77,62
+offsets:0,1,77,63
+leg_L
+bounds:41,125,63,73
+rotate:90
+leg_R
+bounds:127,277,63,72
+mouth_1
+bounds:41,190,79,65
+mouth_2
+bounds:192,296,67,68
+pelvis
+bounds:2,116,139,37
+rotate:90
+spine
+bounds:2,351,165,159
+upperarm_L_1
+bounds:169,366,68,92
+rotate:90
+upperarm_L_2
+bounds:127,234,63,41
+upperarm_R_1
+bounds:279,444,66,89
+rotate:90
+upperarm_R_2
+bounds:263,378,66,43
+weapon_1
+bounds:169,436,108,74
+yingzi
+bounds:279,423,83,19
diff --git a/Assets/arts/spines/characters/m20023/m20023.atlas.txt.meta b/Assets/arts/spines/characters/m20023/m20023.atlas.txt.meta
new file mode 100644
index 000000000..b016331ea
--- /dev/null
+++ b/Assets/arts/spines/characters/m20023/m20023.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: d834fc5970a23fd43a7a839a11a33c7e
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20023/m20023.png b/Assets/arts/spines/characters/m20023/m20023.png
new file mode 100644
index 000000000..1423a52d2
Binary files /dev/null and b/Assets/arts/spines/characters/m20023/m20023.png differ
diff --git a/Assets/arts/spines/characters/m20023/m20023.png.meta b/Assets/arts/spines/characters/m20023/m20023.png.meta
new file mode 100644
index 000000000..c64dd0c2b
--- /dev/null
+++ b/Assets/arts/spines/characters/m20023/m20023.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 595f9bf1cd77e61498ef2b3a0f654531
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20023/m20023.skel.bytes b/Assets/arts/spines/characters/m20023/m20023.skel.bytes
new file mode 100644
index 000000000..90fc7b95d
Binary files /dev/null and b/Assets/arts/spines/characters/m20023/m20023.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m20023/m20023.skel.bytes.meta b/Assets/arts/spines/characters/m20023/m20023.skel.bytes.meta
new file mode 100644
index 000000000..efd8d86a1
--- /dev/null
+++ b/Assets/arts/spines/characters/m20023/m20023.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 7eaa7186d33ce9845b79de98fccacb92
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20023/m20023_atlas.asset b/Assets/arts/spines/characters/m20023/m20023_atlas.asset
new file mode 100644
index 000000000..c31410df3
--- /dev/null
+++ b/Assets/arts/spines/characters/m20023/m20023_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m20023_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: d834fc5970a23fd43a7a839a11a33c7e, type: 3}
+ materials:
+ - {fileID: 2100000, guid: 68f24ea6d8c5dba4bb00b05f65718716, type: 2}
diff --git a/Assets/arts/spines/characters/m20023/m20023_atlas.asset.meta b/Assets/arts/spines/characters/m20023/m20023_atlas.asset.meta
new file mode 100644
index 000000000..cae23e550
--- /dev/null
+++ b/Assets/arts/spines/characters/m20023/m20023_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 5c91ae330150cc34193aedacd2495912
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20023/m20023_material.mat b/Assets/arts/spines/characters/m20023/m20023_material.mat
new file mode 100644
index 000000000..e16721753
--- /dev/null
+++ b/Assets/arts/spines/characters/m20023/m20023_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m20023_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 595f9bf1cd77e61498ef2b3a0f654531, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m20023/m20023_material.mat.meta b/Assets/arts/spines/characters/m20023/m20023_material.mat.meta
new file mode 100644
index 000000000..c125ac500
--- /dev/null
+++ b/Assets/arts/spines/characters/m20023/m20023_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 68f24ea6d8c5dba4bb00b05f65718716
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20023/m20023_skeletondata.asset b/Assets/arts/spines/characters/m20023/m20023_skeletondata.asset
new file mode 100644
index 000000000..5c578addd
--- /dev/null
+++ b/Assets/arts/spines/characters/m20023/m20023_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m20023_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: 5c91ae330150cc34193aedacd2495912, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 7eaa7186d33ce9845b79de98fccacb92, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m20023/m20023_skeletondata.asset.meta b/Assets/arts/spines/characters/m20023/m20023_skeletondata.asset.meta
new file mode 100644
index 000000000..dc9a1d7d3
--- /dev/null
+++ b/Assets/arts/spines/characters/m20023/m20023_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 365f329b21d36a7459a3cc3caea81d3a
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20024.meta b/Assets/arts/spines/characters/m20024.meta
new file mode 100644
index 000000000..c27ade7cf
--- /dev/null
+++ b/Assets/arts/spines/characters/m20024.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 6892ba9678eaddc47b99b5b38274b8ea
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20024/m20024.atlas.txt b/Assets/arts/spines/characters/m20024/m20024.atlas.txt
new file mode 100644
index 000000000..16527a9c7
--- /dev/null
+++ b/Assets/arts/spines/characters/m20024/m20024.atlas.txt
@@ -0,0 +1,56 @@
+m20024.png
+size:512,512
+filter:Linear,Linear
+bianfu
+bounds:74,111,96,50
+offsets:0,1,96,51
+bugang
+bounds:2,163,192,144
+offsets:0,0,207,149
+clothes
+bounds:2,3,29,24
+offsets:1,1,31,26
+eye_xuanyun
+bounds:33,7,20,20
+gutou
+bounds:203,319,70,53
+hand_L
+bounds:110,22,31,37
+offsets:1,1,33,39
+rotate:90
+hand_L_1
+bounds:356,436,15,22
+offsets:1,1,17,24
+rotate:90
+hand_R
+bounds:437,478,32,43
+offsets:1,1,34,45
+rotate:90
+head
+bounds:279,433,75,77
+offsets:1,1,77,79
+hit_yan3
+bounds:482,482,28,28
+jitui
+bounds:279,385,63,46
+offsets:35,45,128,128
+lizi
+bounds:172,112,47,49
+offsets:1,1,50,50
+spine
+bounds:2,309,199,201
+upperarm_L_1
+bounds:203,374,74,136
+upperarm_L_2
+bounds:74,32,34,77
+upperarm_R_1
+bounds:2,29,70,132
+upperarm_R_2
+bounds:110,55,49,54
+offsets:1,1,51,56
+weapon_1
+bounds:356,474,36,79
+offsets:1,1,38,81
+rotate:90
+yingzi
+bounds:356,453,83,19
diff --git a/Assets/arts/spines/characters/m20024/m20024.atlas.txt.meta b/Assets/arts/spines/characters/m20024/m20024.atlas.txt.meta
new file mode 100644
index 000000000..426390003
--- /dev/null
+++ b/Assets/arts/spines/characters/m20024/m20024.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: ad192ccf67d00444f9c223d0b17369f8
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20024/m20024.png b/Assets/arts/spines/characters/m20024/m20024.png
new file mode 100644
index 000000000..37ee71f74
Binary files /dev/null and b/Assets/arts/spines/characters/m20024/m20024.png differ
diff --git a/Assets/arts/spines/characters/m20024/m20024.png.meta b/Assets/arts/spines/characters/m20024/m20024.png.meta
new file mode 100644
index 000000000..3c24dfc83
--- /dev/null
+++ b/Assets/arts/spines/characters/m20024/m20024.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 7809e116639441a4897cf49ba38774a5
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20024/m20024.skel.bytes b/Assets/arts/spines/characters/m20024/m20024.skel.bytes
new file mode 100644
index 000000000..6834b6845
Binary files /dev/null and b/Assets/arts/spines/characters/m20024/m20024.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m20024/m20024.skel.bytes.meta b/Assets/arts/spines/characters/m20024/m20024.skel.bytes.meta
new file mode 100644
index 000000000..8ac7b1b88
--- /dev/null
+++ b/Assets/arts/spines/characters/m20024/m20024.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 1d8026c195212114a8d22ee999f5209b
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20024/m20024_atlas.asset b/Assets/arts/spines/characters/m20024/m20024_atlas.asset
new file mode 100644
index 000000000..0436b3f92
--- /dev/null
+++ b/Assets/arts/spines/characters/m20024/m20024_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m20024_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: ad192ccf67d00444f9c223d0b17369f8, type: 3}
+ materials:
+ - {fileID: 2100000, guid: bb0615790c37c6143a1e84d1b758c6bc, type: 2}
diff --git a/Assets/arts/spines/characters/m20024/m20024_atlas.asset.meta b/Assets/arts/spines/characters/m20024/m20024_atlas.asset.meta
new file mode 100644
index 000000000..ef9dada6b
--- /dev/null
+++ b/Assets/arts/spines/characters/m20024/m20024_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 18fe16236669cdc4786232f74af0d4f5
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20024/m20024_material.mat b/Assets/arts/spines/characters/m20024/m20024_material.mat
new file mode 100644
index 000000000..becca1e55
--- /dev/null
+++ b/Assets/arts/spines/characters/m20024/m20024_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m20024_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 7809e116639441a4897cf49ba38774a5, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m20024/m20024_material.mat.meta b/Assets/arts/spines/characters/m20024/m20024_material.mat.meta
new file mode 100644
index 000000000..ddf96d69c
--- /dev/null
+++ b/Assets/arts/spines/characters/m20024/m20024_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: bb0615790c37c6143a1e84d1b758c6bc
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20024/m20024_skeletondata.asset b/Assets/arts/spines/characters/m20024/m20024_skeletondata.asset
new file mode 100644
index 000000000..d6450107c
--- /dev/null
+++ b/Assets/arts/spines/characters/m20024/m20024_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m20024_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: 18fe16236669cdc4786232f74af0d4f5, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 1d8026c195212114a8d22ee999f5209b, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m20024/m20024_skeletondata.asset.meta b/Assets/arts/spines/characters/m20024/m20024_skeletondata.asset.meta
new file mode 100644
index 000000000..17ea4eadd
--- /dev/null
+++ b/Assets/arts/spines/characters/m20024/m20024_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 3259f2deffa6bc1439cc82db0b231b60
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20025.meta b/Assets/arts/spines/characters/m20025.meta
new file mode 100644
index 000000000..cd257dca0
--- /dev/null
+++ b/Assets/arts/spines/characters/m20025.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 80bb66b99205b0747a1e994c3a25e62b
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20025/m20025.atlas.txt b/Assets/arts/spines/characters/m20025/m20025.atlas.txt
new file mode 100644
index 000000000..71e453f20
--- /dev/null
+++ b/Assets/arts/spines/characters/m20025/m20025.atlas.txt
@@ -0,0 +1,55 @@
+m20025.png
+size:512,512
+filter:Linear,Linear
+clothes
+bounds:182,24,73,70
+eye
+bounds:463,338,30,22
+rotate:90
+eye_xuanyun
+bounds:284,237,20,20
+hair
+bounds:2,154,214,73
+rotate:90
+hand_L
+bounds:257,31,63,60
+rotate:90
+hand_R
+bounds:284,259,55,56
+head
+bounds:293,325,61,86
+hit_yan3
+bounds:463,370,28,28
+leg_L
+bounds:356,330,68,105
+rotate:90
+leg_R
+bounds:77,156,70,107
+rotate:90
+pelvis
+bounds:178,413,181,97
+spine_1
+bounds:77,228,140,109
+rotate:90
+spine_2
+bounds:2,370,174,140
+upperarm_L_1
+bounds:92,45,109,88
+rotate:90
+upperarm_L_2
+bounds:188,237,78,94
+rotate:90
+upperarm_L_3
+bounds:186,96,67,86
+rotate:90
+upperarm_R_1
+bounds:188,317,103,94
+upperarm_R_2
+bounds:2,42,88,110
+upperarm_R_3
+bounds:188,165,70,87
+rotate:90
+weapon_1
+bounds:361,400,149,110
+yingzi
+bounds:2,21,83,19
diff --git a/Assets/arts/spines/characters/m20025/m20025.atlas.txt.meta b/Assets/arts/spines/characters/m20025/m20025.atlas.txt.meta
new file mode 100644
index 000000000..dd1d32080
--- /dev/null
+++ b/Assets/arts/spines/characters/m20025/m20025.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: c3e20263cc96df246944b4ff74fc491f
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20025/m20025.png b/Assets/arts/spines/characters/m20025/m20025.png
new file mode 100644
index 000000000..656728c78
Binary files /dev/null and b/Assets/arts/spines/characters/m20025/m20025.png differ
diff --git a/Assets/arts/spines/characters/m20025/m20025.png.meta b/Assets/arts/spines/characters/m20025/m20025.png.meta
new file mode 100644
index 000000000..c48716284
--- /dev/null
+++ b/Assets/arts/spines/characters/m20025/m20025.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 6d743bdaf1ce0134b942b22f7540e787
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20025/m20025.skel.bytes b/Assets/arts/spines/characters/m20025/m20025.skel.bytes
new file mode 100644
index 000000000..cb25085ea
Binary files /dev/null and b/Assets/arts/spines/characters/m20025/m20025.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m20025/m20025.skel.bytes.meta b/Assets/arts/spines/characters/m20025/m20025.skel.bytes.meta
new file mode 100644
index 000000000..2ec00aae0
--- /dev/null
+++ b/Assets/arts/spines/characters/m20025/m20025.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: de84909f3d3a6904cb40f6a0ce23516b
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20025/m20025_atlas.asset b/Assets/arts/spines/characters/m20025/m20025_atlas.asset
new file mode 100644
index 000000000..dd437790e
--- /dev/null
+++ b/Assets/arts/spines/characters/m20025/m20025_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m20025_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: c3e20263cc96df246944b4ff74fc491f, type: 3}
+ materials:
+ - {fileID: 2100000, guid: f75a2ac276626704797412c7ddcf524c, type: 2}
diff --git a/Assets/arts/spines/characters/m20025/m20025_atlas.asset.meta b/Assets/arts/spines/characters/m20025/m20025_atlas.asset.meta
new file mode 100644
index 000000000..758c6e4cb
--- /dev/null
+++ b/Assets/arts/spines/characters/m20025/m20025_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 23b753b58f4fa1c49976226fac01439a
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20025/m20025_material.mat b/Assets/arts/spines/characters/m20025/m20025_material.mat
new file mode 100644
index 000000000..af4f89db8
--- /dev/null
+++ b/Assets/arts/spines/characters/m20025/m20025_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m20025_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 6d743bdaf1ce0134b942b22f7540e787, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m20025/m20025_material.mat.meta b/Assets/arts/spines/characters/m20025/m20025_material.mat.meta
new file mode 100644
index 000000000..90a26e229
--- /dev/null
+++ b/Assets/arts/spines/characters/m20025/m20025_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: f75a2ac276626704797412c7ddcf524c
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20025/m20025_skeletondata.asset b/Assets/arts/spines/characters/m20025/m20025_skeletondata.asset
new file mode 100644
index 000000000..9cd0a5d70
--- /dev/null
+++ b/Assets/arts/spines/characters/m20025/m20025_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m20025_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: 23b753b58f4fa1c49976226fac01439a, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: de84909f3d3a6904cb40f6a0ce23516b, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m20025/m20025_skeletondata.asset.meta b/Assets/arts/spines/characters/m20025/m20025_skeletondata.asset.meta
new file mode 100644
index 000000000..0d0a9ae5d
--- /dev/null
+++ b/Assets/arts/spines/characters/m20025/m20025_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 17cc4e25e48f71649b9ecd763aecc424
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20026.meta b/Assets/arts/spines/characters/m20026.meta
new file mode 100644
index 000000000..68925543d
--- /dev/null
+++ b/Assets/arts/spines/characters/m20026.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 8b9dd68b0299b8241b8abc38edf76bdf
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20026/m20026.atlas.txt b/Assets/arts/spines/characters/m20026/m20026.atlas.txt
new file mode 100644
index 000000000..d649a4359
--- /dev/null
+++ b/Assets/arts/spines/characters/m20026/m20026.atlas.txt
@@ -0,0 +1,52 @@
+m20026.png
+size:512,512
+filter:Linear,Linear
+eye_L
+bounds:377,421,25,22
+eye_R
+bounds:105,4,27,24
+rotate:90
+eye_xuanyun
+bounds:404,423,20,20
+gutou
+bounds:75,33,70,53
+rotate:90
+hand_L
+bounds:203,304,64,57
+hand_R
+bounds:454,442,68,56
+rotate:90
+head
+bounds:2,247,128,95
+hit_yan3
+bounds:75,3,28,28
+kulou
+bounds:43,105,77,62
+offsets:0,1,77,63
+leg_L
+bounds:376,445,65,76
+rotate:90
+leg_R
+bounds:43,169,66,76
+mouth_1
+bounds:292,443,82,67
+mouth_2
+bounds:132,271,69,71
+pelvis
+bounds:2,100,145,39
+rotate:90
+spine
+bounds:2,344,173,166
+upperarm_L_1
+bounds:2,2,71,96
+upperarm_L_2
+bounds:132,228,63,41
+upperarm_R_1
+bounds:177,363,68,93
+rotate:90
+upperarm_R_2
+bounds:203,259,66,43
+weapon_1
+bounds:177,433,113,77
+yingzi
+bounds:292,422,83,19
diff --git a/Assets/arts/spines/characters/m20026/m20026.atlas.txt.meta b/Assets/arts/spines/characters/m20026/m20026.atlas.txt.meta
new file mode 100644
index 000000000..18d6225d4
--- /dev/null
+++ b/Assets/arts/spines/characters/m20026/m20026.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 768ed3cf6fecf3740a56491b71daf09b
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20026/m20026.png b/Assets/arts/spines/characters/m20026/m20026.png
new file mode 100644
index 000000000..4a4eeece1
Binary files /dev/null and b/Assets/arts/spines/characters/m20026/m20026.png differ
diff --git a/Assets/arts/spines/characters/m20026/m20026.png.meta b/Assets/arts/spines/characters/m20026/m20026.png.meta
new file mode 100644
index 000000000..a8b51e59e
--- /dev/null
+++ b/Assets/arts/spines/characters/m20026/m20026.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 83bf9c0c36804f045bd57d0ced1a32da
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20026/m20026.skel.bytes b/Assets/arts/spines/characters/m20026/m20026.skel.bytes
new file mode 100644
index 000000000..a6a091b71
Binary files /dev/null and b/Assets/arts/spines/characters/m20026/m20026.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m20026/m20026.skel.bytes.meta b/Assets/arts/spines/characters/m20026/m20026.skel.bytes.meta
new file mode 100644
index 000000000..c57700b51
--- /dev/null
+++ b/Assets/arts/spines/characters/m20026/m20026.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 8ddbdb89836fc2b4ab53ca2ff03fbb71
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20026/m20026_atlas.asset b/Assets/arts/spines/characters/m20026/m20026_atlas.asset
new file mode 100644
index 000000000..1057bdf35
--- /dev/null
+++ b/Assets/arts/spines/characters/m20026/m20026_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m20026_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: 768ed3cf6fecf3740a56491b71daf09b, type: 3}
+ materials:
+ - {fileID: 2100000, guid: 6bfd0885df392f646ba695afa76bbd0f, type: 2}
diff --git a/Assets/arts/spines/characters/m20026/m20026_atlas.asset.meta b/Assets/arts/spines/characters/m20026/m20026_atlas.asset.meta
new file mode 100644
index 000000000..d450927eb
--- /dev/null
+++ b/Assets/arts/spines/characters/m20026/m20026_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 0f6eeca0814e84e4d98a67df175365a2
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20026/m20026_material.mat b/Assets/arts/spines/characters/m20026/m20026_material.mat
new file mode 100644
index 000000000..aa8a65b06
--- /dev/null
+++ b/Assets/arts/spines/characters/m20026/m20026_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m20026_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 83bf9c0c36804f045bd57d0ced1a32da, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m20026/m20026_material.mat.meta b/Assets/arts/spines/characters/m20026/m20026_material.mat.meta
new file mode 100644
index 000000000..b7f7a2229
--- /dev/null
+++ b/Assets/arts/spines/characters/m20026/m20026_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 6bfd0885df392f646ba695afa76bbd0f
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20026/m20026_skeletondata.asset b/Assets/arts/spines/characters/m20026/m20026_skeletondata.asset
new file mode 100644
index 000000000..c7e91df91
--- /dev/null
+++ b/Assets/arts/spines/characters/m20026/m20026_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m20026_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: 0f6eeca0814e84e4d98a67df175365a2, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 8ddbdb89836fc2b4ab53ca2ff03fbb71, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m20026/m20026_skeletondata.asset.meta b/Assets/arts/spines/characters/m20026/m20026_skeletondata.asset.meta
new file mode 100644
index 000000000..e214f08c9
--- /dev/null
+++ b/Assets/arts/spines/characters/m20026/m20026_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: f25dab5fabd3ed0459f67bf4517c3ed5
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20027.meta b/Assets/arts/spines/characters/m20027.meta
new file mode 100644
index 000000000..ac272ac6d
--- /dev/null
+++ b/Assets/arts/spines/characters/m20027.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: c9ff805ecf08e00478726a2322e8fd0f
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20027/m20027.atlas.txt b/Assets/arts/spines/characters/m20027/m20027.atlas.txt
new file mode 100644
index 000000000..e86074f90
--- /dev/null
+++ b/Assets/arts/spines/characters/m20027/m20027.atlas.txt
@@ -0,0 +1,38 @@
+m20027.png
+size:512,512
+filter:Linear,Linear
+eye_L
+bounds:66,35,26,26
+eye_L_1
+bounds:96,125,34,26
+eye_R
+bounds:96,94,30,29
+eye_R_2
+bounds:66,63,36,28
+rotate:90
+eye_xuanyun
+bounds:151,248,22,22
+hand
+bounds:1,101,93,132
+hand1
+bounds:334,376,87,134
+head
+bounds:194,373,138,137
+hit_yan1
+bounds:1,1,16,18
+hit_yan2
+bounds:132,131,20,20
+leg L 1
+bounds:1,21,63,78
+leg R 1
+bounds:96,153,60,80
+mouth
+bounds:423,385,125,84
+rotate:90
+spine
+bounds:1,235,148,130
+spine_2
+bounds:1,367,191,143
+yingzi
+bounds:151,272,93,22
+rotate:90
diff --git a/Assets/arts/spines/characters/m20027/m20027.atlas.txt.meta b/Assets/arts/spines/characters/m20027/m20027.atlas.txt.meta
new file mode 100644
index 000000000..2582e32e0
--- /dev/null
+++ b/Assets/arts/spines/characters/m20027/m20027.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 187c037d507f03a4aa180d907ceff265
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20027/m20027.png b/Assets/arts/spines/characters/m20027/m20027.png
new file mode 100644
index 000000000..963e10e66
Binary files /dev/null and b/Assets/arts/spines/characters/m20027/m20027.png differ
diff --git a/Assets/arts/spines/characters/m20027/m20027.png.meta b/Assets/arts/spines/characters/m20027/m20027.png.meta
new file mode 100644
index 000000000..fe66fdb78
--- /dev/null
+++ b/Assets/arts/spines/characters/m20027/m20027.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 6a5c9ac8792b61443a934cd0aae908ad
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20027/m20027.skel.bytes b/Assets/arts/spines/characters/m20027/m20027.skel.bytes
new file mode 100644
index 000000000..9c1e28ef1
Binary files /dev/null and b/Assets/arts/spines/characters/m20027/m20027.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m20027/m20027.skel.bytes.meta b/Assets/arts/spines/characters/m20027/m20027.skel.bytes.meta
new file mode 100644
index 000000000..029d99c7d
--- /dev/null
+++ b/Assets/arts/spines/characters/m20027/m20027.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 2884afa9917cea349ae168b9b6a2fa67
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20027/m20027_atlas.asset b/Assets/arts/spines/characters/m20027/m20027_atlas.asset
new file mode 100644
index 000000000..a44a4c077
--- /dev/null
+++ b/Assets/arts/spines/characters/m20027/m20027_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m20027_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: 187c037d507f03a4aa180d907ceff265, type: 3}
+ materials:
+ - {fileID: 2100000, guid: db3efd4f5d56e6341b89e8fad3f8ef7f, type: 2}
diff --git a/Assets/arts/spines/characters/m20027/m20027_atlas.asset.meta b/Assets/arts/spines/characters/m20027/m20027_atlas.asset.meta
new file mode 100644
index 000000000..4368d5369
--- /dev/null
+++ b/Assets/arts/spines/characters/m20027/m20027_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: df536ef912adb1042a7556a8c3c15ae2
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20027/m20027_material.mat b/Assets/arts/spines/characters/m20027/m20027_material.mat
new file mode 100644
index 000000000..0f4672a9b
--- /dev/null
+++ b/Assets/arts/spines/characters/m20027/m20027_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m20027_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 6a5c9ac8792b61443a934cd0aae908ad, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m20027/m20027_material.mat.meta b/Assets/arts/spines/characters/m20027/m20027_material.mat.meta
new file mode 100644
index 000000000..223e1e568
--- /dev/null
+++ b/Assets/arts/spines/characters/m20027/m20027_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: db3efd4f5d56e6341b89e8fad3f8ef7f
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20027/m20027_skeletondata.asset b/Assets/arts/spines/characters/m20027/m20027_skeletondata.asset
new file mode 100644
index 000000000..678384012
--- /dev/null
+++ b/Assets/arts/spines/characters/m20027/m20027_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m20027_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: df536ef912adb1042a7556a8c3c15ae2, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 2884afa9917cea349ae168b9b6a2fa67, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m20027/m20027_skeletondata.asset.meta b/Assets/arts/spines/characters/m20027/m20027_skeletondata.asset.meta
new file mode 100644
index 000000000..791bb644d
--- /dev/null
+++ b/Assets/arts/spines/characters/m20027/m20027_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 53567f84e1c344f42abee3ad302a5ad1
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20028.meta b/Assets/arts/spines/characters/m20028.meta
new file mode 100644
index 000000000..8049506c5
--- /dev/null
+++ b/Assets/arts/spines/characters/m20028.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 9ba802527b3019b4a8d1b0d675b4a8cc
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20028/m20028.atlas.txt b/Assets/arts/spines/characters/m20028/m20028.atlas.txt
new file mode 100644
index 000000000..ec7757e86
--- /dev/null
+++ b/Assets/arts/spines/characters/m20028/m20028.atlas.txt
@@ -0,0 +1,53 @@
+m20028.png
+size:512,512
+filter:Linear,Linear
+eye_L
+bounds:473,482,24,18
+offsets:1,1,26,20
+eye_R
+bounds:334,411,25,17
+offsets:1,1,27,19
+eye_xuanyun
+bounds:2,2,22,22
+hand_L
+bounds:2,135,88,116
+offsets:1,1,90,118
+hand_R
+bounds:2,253,100,118
+offsets:1,1,102,120
+head
+bounds:241,430,134,70
+offsets:1,1,136,72
+hit_yan1
+bounds:92,138,16,18
+hit_yan2
+bounds:300,341,20,20
+leg_L
+bounds:229,303,58,69
+rotate:90
+leg_R
+bounds:163,309,64,75
+pelvis
+bounds:104,293,78,57
+offsets:1,1,80,59
+rotate:90
+spine
+bounds:2,373,140,127
+offsets:1,1,142,129
+upperarm_L_1
+bounds:2,26,80,107
+offsets:1,1,82,109
+upperarm_L_2
+bounds:377,436,64,94
+offsets:1,1,66,96
+rotate:90
+upperarm_R_1
+bounds:144,386,95,114
+offsets:1,1,97,116
+upperarm_R_2
+bounds:241,363,65,91
+offsets:1,1,67,93
+rotate:90
+yingzi
+bounds:92,158,93,22
+rotate:90
diff --git a/Assets/arts/spines/characters/m20028/m20028.atlas.txt.meta b/Assets/arts/spines/characters/m20028/m20028.atlas.txt.meta
new file mode 100644
index 000000000..d945b2e8b
--- /dev/null
+++ b/Assets/arts/spines/characters/m20028/m20028.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 1793612da2f81744d817499df60cf274
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20028/m20028.png b/Assets/arts/spines/characters/m20028/m20028.png
new file mode 100644
index 000000000..ef60ceb02
Binary files /dev/null and b/Assets/arts/spines/characters/m20028/m20028.png differ
diff --git a/Assets/arts/spines/characters/m20028/m20028.png.meta b/Assets/arts/spines/characters/m20028/m20028.png.meta
new file mode 100644
index 000000000..b3bb40248
--- /dev/null
+++ b/Assets/arts/spines/characters/m20028/m20028.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 885124ee624d3ae4c9dc8ff80c71ce0b
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20028/m20028.skel.bytes b/Assets/arts/spines/characters/m20028/m20028.skel.bytes
new file mode 100644
index 000000000..a14ee1100
Binary files /dev/null and b/Assets/arts/spines/characters/m20028/m20028.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m20028/m20028.skel.bytes.meta b/Assets/arts/spines/characters/m20028/m20028.skel.bytes.meta
new file mode 100644
index 000000000..248f6d126
--- /dev/null
+++ b/Assets/arts/spines/characters/m20028/m20028.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: cdd189b39ee9a584184b5f9395978c2f
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20028/m20028_atlas.asset b/Assets/arts/spines/characters/m20028/m20028_atlas.asset
new file mode 100644
index 000000000..6b1a7093b
--- /dev/null
+++ b/Assets/arts/spines/characters/m20028/m20028_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m20028_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: 1793612da2f81744d817499df60cf274, type: 3}
+ materials:
+ - {fileID: 2100000, guid: b9139618210f0cf4589862493e7be777, type: 2}
diff --git a/Assets/arts/spines/characters/m20028/m20028_atlas.asset.meta b/Assets/arts/spines/characters/m20028/m20028_atlas.asset.meta
new file mode 100644
index 000000000..25a735225
--- /dev/null
+++ b/Assets/arts/spines/characters/m20028/m20028_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 0abb6efbbffbfb9419973ff550f5c988
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20028/m20028_material.mat b/Assets/arts/spines/characters/m20028/m20028_material.mat
new file mode 100644
index 000000000..d037a1f88
--- /dev/null
+++ b/Assets/arts/spines/characters/m20028/m20028_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m20028_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 885124ee624d3ae4c9dc8ff80c71ce0b, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m20028/m20028_material.mat.meta b/Assets/arts/spines/characters/m20028/m20028_material.mat.meta
new file mode 100644
index 000000000..cdd37535a
--- /dev/null
+++ b/Assets/arts/spines/characters/m20028/m20028_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: b9139618210f0cf4589862493e7be777
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20028/m20028_skeletondata.asset b/Assets/arts/spines/characters/m20028/m20028_skeletondata.asset
new file mode 100644
index 000000000..e0e0be3f5
--- /dev/null
+++ b/Assets/arts/spines/characters/m20028/m20028_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m20028_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: 0abb6efbbffbfb9419973ff550f5c988, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: cdd189b39ee9a584184b5f9395978c2f, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m20028/m20028_skeletondata.asset.meta b/Assets/arts/spines/characters/m20028/m20028_skeletondata.asset.meta
new file mode 100644
index 000000000..deb0005cb
--- /dev/null
+++ b/Assets/arts/spines/characters/m20028/m20028_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 8d4ee07a608b94f47b4159ad60847669
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20029.meta b/Assets/arts/spines/characters/m20029.meta
new file mode 100644
index 000000000..d811ee92c
--- /dev/null
+++ b/Assets/arts/spines/characters/m20029.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: f6c470e3b981f4b469ed9c2194918708
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20029/m20029.atlas.txt b/Assets/arts/spines/characters/m20029/m20029.atlas.txt
new file mode 100644
index 000000000..008151634
--- /dev/null
+++ b/Assets/arts/spines/characters/m20029/m20029.atlas.txt
@@ -0,0 +1,30 @@
+m20029.png
+size:512,512
+filter:Linear,Linear
+eye_xuanyun
+bounds:291,377,22,22
+hand
+bounds:291,401,86,70
+hand 1
+bounds:1,23,81,66
+rotate:90
+head
+bounds:1,216,111,122
+hit_yan1
+bounds:114,247,16,18
+hit_yan2
+bounds:1,1,20,20
+leg L 2
+bounds:114,267,53,71
+leg R 2
+bounds:379,418,53,71
+rotate:90
+spine
+bounds:1,340,177,131
+upperarm
+bounds:180,357,109,114
+upperarm1
+bounds:1,106,67,108
+yinying
+bounds:70,121,93,22
+rotate:90
diff --git a/Assets/arts/spines/characters/m20029/m20029.atlas.txt.meta b/Assets/arts/spines/characters/m20029/m20029.atlas.txt.meta
new file mode 100644
index 000000000..cea61793a
--- /dev/null
+++ b/Assets/arts/spines/characters/m20029/m20029.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 4cff5af8d3fb1004eb62a2b32d766eb1
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20029/m20029.png b/Assets/arts/spines/characters/m20029/m20029.png
new file mode 100644
index 000000000..8edc6c280
Binary files /dev/null and b/Assets/arts/spines/characters/m20029/m20029.png differ
diff --git a/Assets/arts/spines/characters/m20029/m20029.png.meta b/Assets/arts/spines/characters/m20029/m20029.png.meta
new file mode 100644
index 000000000..1d458ba09
--- /dev/null
+++ b/Assets/arts/spines/characters/m20029/m20029.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 27ec8732f3658b0429e6ce14fed5e3a9
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20029/m20029.skel.bytes b/Assets/arts/spines/characters/m20029/m20029.skel.bytes
new file mode 100644
index 000000000..5008dfe57
Binary files /dev/null and b/Assets/arts/spines/characters/m20029/m20029.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m20029/m20029.skel.bytes.meta b/Assets/arts/spines/characters/m20029/m20029.skel.bytes.meta
new file mode 100644
index 000000000..42a68b58e
--- /dev/null
+++ b/Assets/arts/spines/characters/m20029/m20029.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 9d728b3534bebf94e90c83f8ce0319f8
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20029/m20029_atlas.asset b/Assets/arts/spines/characters/m20029/m20029_atlas.asset
new file mode 100644
index 000000000..1ac3a8d34
--- /dev/null
+++ b/Assets/arts/spines/characters/m20029/m20029_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m20029_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: 4cff5af8d3fb1004eb62a2b32d766eb1, type: 3}
+ materials:
+ - {fileID: 2100000, guid: aa65c7df764ecb240a9155cfdaee7091, type: 2}
diff --git a/Assets/arts/spines/characters/m20029/m20029_atlas.asset.meta b/Assets/arts/spines/characters/m20029/m20029_atlas.asset.meta
new file mode 100644
index 000000000..fccddf314
--- /dev/null
+++ b/Assets/arts/spines/characters/m20029/m20029_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: e2f56b52e465fb441961b1c18d10e9f0
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20029/m20029_material.mat b/Assets/arts/spines/characters/m20029/m20029_material.mat
new file mode 100644
index 000000000..d554201b7
--- /dev/null
+++ b/Assets/arts/spines/characters/m20029/m20029_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m20029_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 27ec8732f3658b0429e6ce14fed5e3a9, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m20029/m20029_material.mat.meta b/Assets/arts/spines/characters/m20029/m20029_material.mat.meta
new file mode 100644
index 000000000..13b899564
--- /dev/null
+++ b/Assets/arts/spines/characters/m20029/m20029_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: aa65c7df764ecb240a9155cfdaee7091
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20029/m20029_skeletondata.asset b/Assets/arts/spines/characters/m20029/m20029_skeletondata.asset
new file mode 100644
index 000000000..f5be2c234
--- /dev/null
+++ b/Assets/arts/spines/characters/m20029/m20029_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m20029_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: e2f56b52e465fb441961b1c18d10e9f0, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 9d728b3534bebf94e90c83f8ce0319f8, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m20029/m20029_skeletondata.asset.meta b/Assets/arts/spines/characters/m20029/m20029_skeletondata.asset.meta
new file mode 100644
index 000000000..06b85de4b
--- /dev/null
+++ b/Assets/arts/spines/characters/m20029/m20029_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: fad259b0129c2a44d88b8f259306ce9b
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20030.meta b/Assets/arts/spines/characters/m20030.meta
new file mode 100644
index 000000000..6c5490668
--- /dev/null
+++ b/Assets/arts/spines/characters/m20030.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 1fa73b8ac9cacb742983c3cd021813c9
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20030/m20030.atlas.txt b/Assets/arts/spines/characters/m20030/m20030.atlas.txt
new file mode 100644
index 000000000..213087d6f
--- /dev/null
+++ b/Assets/arts/spines/characters/m20030/m20030.atlas.txt
@@ -0,0 +1,39 @@
+m20030.png
+size:512,512
+filter:Linear,Linear
+eye
+bounds:227,348,44,27
+offsets:1,1,46,29
+rotate:90
+eye_xuanyun
+bounds:265,455,22,22
+hand_L
+bounds:2,73,92,96
+offsets:1,1,94,98
+hand_R
+bounds:157,394,106,107
+offsets:1,1,108,109
+head
+bounds:2,171,95,152
+offsets:1,1,97,154
+hit_yan1
+bounds:157,325,16,18
+hit_yan2
+bounds:360,481,20,20
+spine_1
+bounds:2,325,153,176
+spine_2
+bounds:99,179,29,75
+offsets:1,1,31,77
+spine_3
+bounds:2,2,39,69
+offsets:1,1,41,71
+upperarm_L_1
+bounds:99,256,48,67
+offsets:1,1,50,69
+upperarm_R_1
+bounds:157,345,47,68
+offsets:1,1,49,70
+rotate:90
+yingzi
+bounds:265,479,93,22
diff --git a/Assets/arts/spines/characters/m20030/m20030.atlas.txt.meta b/Assets/arts/spines/characters/m20030/m20030.atlas.txt.meta
new file mode 100644
index 000000000..54871d9bf
--- /dev/null
+++ b/Assets/arts/spines/characters/m20030/m20030.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: f2cd0b9c1d38175468d0dfa0ccdaa116
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20030/m20030.png b/Assets/arts/spines/characters/m20030/m20030.png
new file mode 100644
index 000000000..57fab9e1e
Binary files /dev/null and b/Assets/arts/spines/characters/m20030/m20030.png differ
diff --git a/Assets/arts/spines/characters/m20030/m20030.png.meta b/Assets/arts/spines/characters/m20030/m20030.png.meta
new file mode 100644
index 000000000..c3f79f5d8
--- /dev/null
+++ b/Assets/arts/spines/characters/m20030/m20030.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 1c411602ce4f637419e260977bb68d02
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20030/m20030.skel.bytes b/Assets/arts/spines/characters/m20030/m20030.skel.bytes
new file mode 100644
index 000000000..ca18db670
Binary files /dev/null and b/Assets/arts/spines/characters/m20030/m20030.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m20030/m20030.skel.bytes.meta b/Assets/arts/spines/characters/m20030/m20030.skel.bytes.meta
new file mode 100644
index 000000000..dd6ebf0ea
--- /dev/null
+++ b/Assets/arts/spines/characters/m20030/m20030.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: fb90ccf85b142914da59d025be68a277
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20030/m20030_atlas.asset b/Assets/arts/spines/characters/m20030/m20030_atlas.asset
new file mode 100644
index 000000000..6073f317b
--- /dev/null
+++ b/Assets/arts/spines/characters/m20030/m20030_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m20030_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: f2cd0b9c1d38175468d0dfa0ccdaa116, type: 3}
+ materials:
+ - {fileID: 2100000, guid: c290f0768d25e564984c443636965f35, type: 2}
diff --git a/Assets/arts/spines/characters/m20030/m20030_atlas.asset.meta b/Assets/arts/spines/characters/m20030/m20030_atlas.asset.meta
new file mode 100644
index 000000000..160873166
--- /dev/null
+++ b/Assets/arts/spines/characters/m20030/m20030_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: cb75924525a373042a3991270dff493d
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20030/m20030_material.mat b/Assets/arts/spines/characters/m20030/m20030_material.mat
new file mode 100644
index 000000000..b56e57c5e
--- /dev/null
+++ b/Assets/arts/spines/characters/m20030/m20030_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m20030_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 1c411602ce4f637419e260977bb68d02, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m20030/m20030_material.mat.meta b/Assets/arts/spines/characters/m20030/m20030_material.mat.meta
new file mode 100644
index 000000000..2bf8dc6d3
--- /dev/null
+++ b/Assets/arts/spines/characters/m20030/m20030_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: c290f0768d25e564984c443636965f35
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20030/m20030_skeletondata.asset b/Assets/arts/spines/characters/m20030/m20030_skeletondata.asset
new file mode 100644
index 000000000..fd68b3b79
--- /dev/null
+++ b/Assets/arts/spines/characters/m20030/m20030_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m20030_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: cb75924525a373042a3991270dff493d, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: fb90ccf85b142914da59d025be68a277, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m20030/m20030_skeletondata.asset.meta b/Assets/arts/spines/characters/m20030/m20030_skeletondata.asset.meta
new file mode 100644
index 000000000..312fdbb69
--- /dev/null
+++ b/Assets/arts/spines/characters/m20030/m20030_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: b1cbcf7548fb9c74cbab4764fbf496b2
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20031.meta b/Assets/arts/spines/characters/m20031.meta
new file mode 100644
index 000000000..b2d52c915
--- /dev/null
+++ b/Assets/arts/spines/characters/m20031.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 79322e3fca0deeb49aeb1583821cd4b3
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20031/m20031.atlas.txt b/Assets/arts/spines/characters/m20031/m20031.atlas.txt
new file mode 100644
index 000000000..0890cb714
--- /dev/null
+++ b/Assets/arts/spines/characters/m20031/m20031.atlas.txt
@@ -0,0 +1,96 @@
+m20031.png
+size:512,512
+filter:Linear,Linear
+eye
+bounds:186,9,32,20
+offsets:1,1,34,22
+rotate:90
+eye_xuanyun
+bounds:374,146,22,22
+hand_R_1
+bounds:186,91,28,46
+offsets:1,1,30,48
+hand_R_2
+bounds:186,43,28,46
+offsets:1,1,30,48
+hand_R_3
+bounds:399,160,28,46
+offsets:1,1,30,48
+rotate:90
+head
+bounds:327,450,166,60
+offsets:1,1,168,62
+hit_yan1
+bounds:208,3,16,18
+rotate:90
+hit_yan2
+bounds:208,21,20,20
+huo
+bounds:230,4,157,142
+rotate:90
+leg_L
+bounds:417,381,67,84
+offsets:1,1,69,86
+rotate:90
+leg_R
+bounds:327,380,68,88
+offsets:1,1,70,90
+rotate:90
+pelvis
+bounds:189,323,143,49
+offsets:1,1,145,51
+spine_1
+bounds:450,331,48,56
+offsets:1,1,50,58
+rotate:90
+spine_2
+bounds:399,190,48,56
+offsets:1,1,50,58
+rotate:90
+spine_3
+bounds:2,125,188,131
+offsets:1,1,190,133
+rotate:90
+spine_4
+bounds:2,8,182,115
+offsets:1,1,184,117
+upperarm_L_1
+bounds:374,81,69,63
+offsets:1,1,71,65
+upperarm_L_2
+bounds:287,170,52,110
+offsets:1,1,54,112
+rotate:90
+upperarm_L_3
+bounds:461,257,49,72
+offsets:1,1,51,74
+upperarm_L_4
+bounds:374,4,75,78
+offsets:1,1,77,80
+rotate:90
+upperarm_L_5
+bounds:380,240,84,79
+offsets:1,1,86,81
+rotate:90
+upperarm_R_1
+bounds:447,112,73,63
+offsets:1,1,75,65
+rotate:90
+upperarm_R_2
+bounds:334,326,52,114
+offsets:1,1,54,116
+rotate:90
+upperarm_R_3
+bounds:461,187,43,68
+offsets:1,1,45,70
+upperarm_R_4
+bounds:287,224,91,97
+offsets:1,1,93,99
+yan1
+bounds:2,315,185,195
+yan2
+bounds:189,374,136,136
+yan3
+bounds:135,163,150,150
+yingzi
+bounds:135,139,93,22
diff --git a/Assets/arts/spines/characters/m20031/m20031.atlas.txt.meta b/Assets/arts/spines/characters/m20031/m20031.atlas.txt.meta
new file mode 100644
index 000000000..89fc433bb
--- /dev/null
+++ b/Assets/arts/spines/characters/m20031/m20031.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: d89b0c82be32019408b26817eccb496c
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20031/m20031.png b/Assets/arts/spines/characters/m20031/m20031.png
new file mode 100644
index 000000000..5d8720df9
Binary files /dev/null and b/Assets/arts/spines/characters/m20031/m20031.png differ
diff --git a/Assets/arts/spines/characters/m20031/m20031.png.meta b/Assets/arts/spines/characters/m20031/m20031.png.meta
new file mode 100644
index 000000000..c930c78d7
--- /dev/null
+++ b/Assets/arts/spines/characters/m20031/m20031.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 663053a70df4a214fa0a1f449560d30a
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20031/m20031.skel.bytes b/Assets/arts/spines/characters/m20031/m20031.skel.bytes
new file mode 100644
index 000000000..0c56cd906
Binary files /dev/null and b/Assets/arts/spines/characters/m20031/m20031.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m20031/m20031.skel.bytes.meta b/Assets/arts/spines/characters/m20031/m20031.skel.bytes.meta
new file mode 100644
index 000000000..534b57a29
--- /dev/null
+++ b/Assets/arts/spines/characters/m20031/m20031.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: e4150b74c7df83944b8c108477af4d31
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20031/m20031_atlas.asset b/Assets/arts/spines/characters/m20031/m20031_atlas.asset
new file mode 100644
index 000000000..7f1fbcf4b
--- /dev/null
+++ b/Assets/arts/spines/characters/m20031/m20031_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m20031_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: d89b0c82be32019408b26817eccb496c, type: 3}
+ materials:
+ - {fileID: 2100000, guid: bc9a5ba4081d6a1479d2f00fe80e7128, type: 2}
diff --git a/Assets/arts/spines/characters/m20031/m20031_atlas.asset.meta b/Assets/arts/spines/characters/m20031/m20031_atlas.asset.meta
new file mode 100644
index 000000000..aa488dddf
--- /dev/null
+++ b/Assets/arts/spines/characters/m20031/m20031_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: f4164cc2fdbb7064f8a9889b413613fa
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20031/m20031_material.mat b/Assets/arts/spines/characters/m20031/m20031_material.mat
new file mode 100644
index 000000000..af02938a4
--- /dev/null
+++ b/Assets/arts/spines/characters/m20031/m20031_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m20031_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 663053a70df4a214fa0a1f449560d30a, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m20031/m20031_material.mat.meta b/Assets/arts/spines/characters/m20031/m20031_material.mat.meta
new file mode 100644
index 000000000..08129a704
--- /dev/null
+++ b/Assets/arts/spines/characters/m20031/m20031_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: bc9a5ba4081d6a1479d2f00fe80e7128
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20031/m20031_skeletondata.asset b/Assets/arts/spines/characters/m20031/m20031_skeletondata.asset
new file mode 100644
index 000000000..cac6649f4
--- /dev/null
+++ b/Assets/arts/spines/characters/m20031/m20031_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m20031_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: f4164cc2fdbb7064f8a9889b413613fa, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: e4150b74c7df83944b8c108477af4d31, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m20031/m20031_skeletondata.asset.meta b/Assets/arts/spines/characters/m20031/m20031_skeletondata.asset.meta
new file mode 100644
index 000000000..718c1124a
--- /dev/null
+++ b/Assets/arts/spines/characters/m20031/m20031_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 4b2d53514689f8141b18fa8f153601ab
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20032.meta b/Assets/arts/spines/characters/m20032.meta
new file mode 100644
index 000000000..5eeda525d
--- /dev/null
+++ b/Assets/arts/spines/characters/m20032.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 9df3221d0c9b4dc44bc9d1f82d6247dc
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20032/m20032.atlas.txt b/Assets/arts/spines/characters/m20032/m20032.atlas.txt
new file mode 100644
index 000000000..c7265a532
--- /dev/null
+++ b/Assets/arts/spines/characters/m20032/m20032.atlas.txt
@@ -0,0 +1,67 @@
+m20032.png
+size:512,512
+filter:Linear,Linear
+eye
+bounds:135,227,34,24
+offsets:1,1,36,26
+rotate:90
+eye_xuanyun
+bounds:67,68,20,20
+gutou
+bounds:126,263,26,25
+rotate:90
+hand_3
+bounds:266,409,66,78
+offsets:1,1,68,80
+hand_L
+bounds:96,343,54,50
+offsets:1,1,56,52
+hand_R
+bounds:96,291,54,50
+offsets:1,1,56,52
+head
+bounds:154,400,87,110
+offsets:1,1,89,112
+rotate:90
+hit_yan3
+bounds:96,261,28,28
+kulou
+bounds:103,211,30,48
+leg
+bounds:2,261,92,132
+offsets:1,1,94,134
+pelvis_1
+bounds:2,14,58,62
+pelvis_2
+bounds:103,169,40,40
+offsets:1,1,42,42
+spine
+bounds:2,395,150,92
+offsets:1,1,152,94
+upperarm_L_1
+bounds:438,412,72,98
+offsets:1,1,74,100
+upperarm_L_2
+bounds:67,90,32,60
+offsets:1,1,34,62
+upperarm_L_3
+bounds:2,78,63,72
+offsets:1,1,65,74
+upperarm_R_1
+bounds:2,152,78,107
+offsets:1,1,80,109
+upperarm_R_2
+bounds:399,427,33,60
+offsets:1,1,35,62
+upperarm_R_3
+bounds:334,416,63,71
+offsets:1,1,65,73
+xian1
+bounds:2,489,224,21
+offsets:3,1,230,24
+xian2
+bounds:228,489,208,21
+offsets:5,2,218,25
+yingzi
+bounds:82,176,83,19
+rotate:90
diff --git a/Assets/arts/spines/characters/m20032/m20032.atlas.txt.meta b/Assets/arts/spines/characters/m20032/m20032.atlas.txt.meta
new file mode 100644
index 000000000..3a325d68e
--- /dev/null
+++ b/Assets/arts/spines/characters/m20032/m20032.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: cc13b434b9214344fb08798049d6d21d
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20032/m20032.png b/Assets/arts/spines/characters/m20032/m20032.png
new file mode 100644
index 000000000..624193002
Binary files /dev/null and b/Assets/arts/spines/characters/m20032/m20032.png differ
diff --git a/Assets/arts/spines/characters/m20032/m20032.png.meta b/Assets/arts/spines/characters/m20032/m20032.png.meta
new file mode 100644
index 000000000..edc32faa8
--- /dev/null
+++ b/Assets/arts/spines/characters/m20032/m20032.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 14be02bc1c2757741943d3c138f574be
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20032/m20032.skel.bytes b/Assets/arts/spines/characters/m20032/m20032.skel.bytes
new file mode 100644
index 000000000..117796d64
Binary files /dev/null and b/Assets/arts/spines/characters/m20032/m20032.skel.bytes differ
diff --git a/Assets/arts/spines/characters/m20032/m20032.skel.bytes.meta b/Assets/arts/spines/characters/m20032/m20032.skel.bytes.meta
new file mode 100644
index 000000000..f865ed105
--- /dev/null
+++ b/Assets/arts/spines/characters/m20032/m20032.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: b5f68488c6e85ab4a8c98888e1388c9f
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20032/m20032_atlas.asset b/Assets/arts/spines/characters/m20032/m20032_atlas.asset
new file mode 100644
index 000000000..1cd1f9acd
--- /dev/null
+++ b/Assets/arts/spines/characters/m20032/m20032_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: m20032_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: cc13b434b9214344fb08798049d6d21d, type: 3}
+ materials:
+ - {fileID: 2100000, guid: ed95f0f011a375c4abcafbbff6376ccb, type: 2}
diff --git a/Assets/arts/spines/characters/m20032/m20032_atlas.asset.meta b/Assets/arts/spines/characters/m20032/m20032_atlas.asset.meta
new file mode 100644
index 000000000..85113bba5
--- /dev/null
+++ b/Assets/arts/spines/characters/m20032/m20032_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: bddc15c908009654787ad6b1015d0d02
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20032/m20032_material.mat b/Assets/arts/spines/characters/m20032/m20032_material.mat
new file mode 100644
index 000000000..8ace18324
--- /dev/null
+++ b/Assets/arts/spines/characters/m20032/m20032_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: m20032_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 14be02bc1c2757741943d3c138f574be, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/m20032/m20032_material.mat.meta b/Assets/arts/spines/characters/m20032/m20032_material.mat.meta
new file mode 100644
index 000000000..d99011c8a
--- /dev/null
+++ b/Assets/arts/spines/characters/m20032/m20032_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: ed95f0f011a375c4abcafbbff6376ccb
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/m20032/m20032_skeletondata.asset b/Assets/arts/spines/characters/m20032/m20032_skeletondata.asset
new file mode 100644
index 000000000..2d78efdf0
--- /dev/null
+++ b/Assets/arts/spines/characters/m20032/m20032_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: m20032_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: bddc15c908009654787ad6b1015d0d02, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: b5f68488c6e85ab4a8c98888e1388c9f, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/m20032/m20032_skeletondata.asset.meta b/Assets/arts/spines/characters/m20032/m20032_skeletondata.asset.meta
new file mode 100644
index 000000000..aa8b12a96
--- /dev/null
+++ b/Assets/arts/spines/characters/m20032/m20032_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 020491ce967ac094c9d1866a809a1597
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0001/p0001.atlas.txt b/Assets/arts/spines/characters/p0001/p0001.atlas.txt
index 6fbb05242..f76f4d4d5 100644
--- a/Assets/arts/spines/characters/p0001/p0001.atlas.txt
+++ b/Assets/arts/spines/characters/p0001/p0001.atlas.txt
@@ -2,42 +2,35 @@ p0001.png
size:512,512
filter:Linear,Linear
canying
-bounds:2,350,180,146
-offsets:5,0,190,149
-dun
-bounds:184,370,90,126
-gutou
-bounds:2,109,70,53
-rotate:90
+bounds:311,401,98,93
+offsets:0,0,99,93
+eye
+bounds:87,386,125,108
+eye_xuanyun
+bounds:457,433,22,22
+hand_L
+bounds:2,121,28,29
+hand_R
+bounds:121,305,25,26
hit_yan1
-bounds:184,350,16,18
-hit_yan2
-bounds:144,221,20,20
-lian
-bounds:384,458,68,38
-shenti
-bounds:276,421,106,75
-toukui
-bounds:71,243,96,105
-wuqi
-bounds:2,181,67,167
-xiabai
-bounds:349,385,30,34
-youbi
-bounds:2,55,41,52
-youshou
-bounds:384,429,30,27
-youtui
-bounds:71,198,43,71
-rotate:90
-youyan
-bounds:57,157,7,22
-zuobi
-bounds:2,2,41,51
-zuoshou
-bounds:454,469,29,27
-zuotui
-bounds:276,376,43,71
-rotate:90
-zuoyan
-bounds:169,326,8,22
+bounds:66,280,16,18
+leg_L
+bounds:411,433,44,61
+leg_R
+bounds:2,152,43,61
+spine_1
+bounds:87,333,78,51
+spine_2
+bounds:214,395,95,99
+upperarm_L_1
+bounds:87,304,32,27
+upperarm_L_2
+bounds:167,347,37,37
+upperarm_R_1
+bounds:411,404,32,27
+upperarm_R_2
+bounds:457,457,37,37
+weapon_1
+bounds:2,300,83,194
+weapon_2
+bounds:2,215,62,83
diff --git a/Assets/arts/spines/characters/p0001/p0001.png b/Assets/arts/spines/characters/p0001/p0001.png
index 932898b1e..7610fbbce 100644
Binary files a/Assets/arts/spines/characters/p0001/p0001.png and b/Assets/arts/spines/characters/p0001/p0001.png differ
diff --git a/Assets/arts/spines/characters/p0001/p0001.skel.bytes b/Assets/arts/spines/characters/p0001/p0001.skel.bytes
index 9eb60995b..44ea4b11f 100644
Binary files a/Assets/arts/spines/characters/p0001/p0001.skel.bytes and b/Assets/arts/spines/characters/p0001/p0001.skel.bytes differ
diff --git a/Assets/arts/spines/characters/p0002/p0002.atlas.txt b/Assets/arts/spines/characters/p0002/p0002.atlas.txt
index 18c049a4f..e3c9b061e 100644
--- a/Assets/arts/spines/characters/p0002/p0002.atlas.txt
+++ b/Assets/arts/spines/characters/p0002/p0002.atlas.txt
@@ -2,52 +2,53 @@ p0002.png
size:512,512
filter:Linear,Linear
canying
-bounds:2,29,88,57
-offsets:3,2,93,63
+bounds:147,380,92,124
+offsets:1,4,94,133
+canying1
+bounds:2,230,144,91
+offsets:6,0,156,91
+rotate:90
+eye_l
+bounds:2,2,13,25
+rotate:90
+eye_r
+bounds:128,349,13,25
+eye_xuanyun
+bounds:118,198,22,22
+hair_1
+bounds:2,376,143,128
+hair_2
+bounds:477,438,21,66
+hand
+bounds:241,422,96,82
+hand _l_01
+bounds:89,189,27,31
+hand _r_01
+bounds:383,380,41,24
rotate:90
-canying2
-bounds:2,399,160,111
-offsets:2,1,163,113
-dao1
-bounds:2,303,143,94
-dao2
-bounds:164,375,129,29
hit_yan1
-bounds:88,137,16,18
-hit_yan2
-bounds:61,97,20,20
-pifeng1
-bounds:377,411,63,99
-pifeng2
-bounds:292,406,83,104
-pifeng3
-bounds:164,406,126,104
-shenti
-bounds:147,307,79,66
-tou
-bounds:2,119,84,82
-toufa1
-bounds:2,203,117,98
-yaodai
-bounds:121,226,75,21
+bounds:89,135,16,18
+leg_l_01
+bounds:241,368,63,52
+leg_r_01
+bounds:95,222,63,51
rotate:90
-youbi
-bounds:88,157,27,44
-youerhuan
-bounds:2,2,25,26
+pifeng_l
+bounds:2,17,84,80
+pifeng_r
+bounds:422,428,53,76
+spine
+bounds:339,423,81,81
+upperarm_l_01
+bounds:306,373,47,36
rotate:90
-youshou
-bounds:295,378,41,26
-youtui
-bounds:442,450,68,60
-youyan
-bounds:121,204,16,20
-zuobi
-bounds:228,311,39,62
-zuoerhuan
-bounds:30,2,25,26
+upperarm_r_01
+bounds:344,376,37,45
+weapon_1
+bounds:2,99,129,85
rotate:90
-zuotui
-bounds:442,388,68,60
-zuoyan
-bounds:269,353,17,20
+weapon_2
+bounds:95,287,87,31
+rotate:90
+zui
+bounds:89,155,24,32
diff --git a/Assets/arts/spines/characters/p0002/p0002.png b/Assets/arts/spines/characters/p0002/p0002.png
index 8c700cf43..5bcef4243 100644
Binary files a/Assets/arts/spines/characters/p0002/p0002.png and b/Assets/arts/spines/characters/p0002/p0002.png differ
diff --git a/Assets/arts/spines/characters/p0002/p0002.skel.bytes b/Assets/arts/spines/characters/p0002/p0002.skel.bytes
index 8339eca00..08b328886 100644
Binary files a/Assets/arts/spines/characters/p0002/p0002.skel.bytes and b/Assets/arts/spines/characters/p0002/p0002.skel.bytes differ
diff --git a/Assets/arts/spines/characters/p0003/p0003.atlas.txt b/Assets/arts/spines/characters/p0003/p0003.atlas.txt
index dd5c2f9bc..8a296be14 100644
--- a/Assets/arts/spines/characters/p0003/p0003.atlas.txt
+++ b/Assets/arts/spines/characters/p0003/p0003.atlas.txt
@@ -1,33 +1,42 @@
p0003.png
-size:256,256
+size:512,512
filter:Linear,Linear
-hair
-bounds:2,116,111,138
-hand _r_01
-bounds:123,15,23,24
-hand_l_01
-bounds:2,5,45,34
-head
-bounds:171,56,91,83
-rotate:90
+eye_L
+bounds:68,296,12,23
+eye_R
+bounds:216,403,12,22
+eye_xuanyun
+bounds:40,258,22,22
+hand_L_1
+bounds:472,434,33,27
+hand_L_2
+bounds:68,321,29,29
+offsets:0,1,29,30
+hand_L_3
+bounds:2,208,24,24
+hand_R
+bounds:472,463,38,47
+hand_R_1
+bounds:106,374,25,24
+head_1
+bounds:68,400,112,110
+head_2
+bounds:291,431,91,79
hit_yan1
-bounds:148,21,16,18
-leg_l
-bounds:171,7,47,58
-rotate:90
-leg_r
-bounds:204,196,47,58
-spine
-bounds:115,149,105,87
-rotate:90
-upperarm_l_01
-bounds:204,151,43,42
-rotate:90
-upperarm_r_01
-bounds:49,9,30,46
+bounds:106,354,16,18
+leg_L
+bounds:68,352,36,46
+leg_R
+bounds:2,234,36,46
+spine_1
+bounds:384,426,84,86
rotate:90
+spine_2
+bounds:182,427,107,83
+spine_3
+bounds:2,282,64,41
weapon_1
-bounds:2,41,73,167
-rotate:90
+bounds:2,325,64,185
zui
-bounds:97,7,24,32
+bounds:182,401,24,32
+rotate:90
diff --git a/Assets/arts/spines/characters/p0003/p0003.png b/Assets/arts/spines/characters/p0003/p0003.png
index df6f0437e..36b7456bf 100644
Binary files a/Assets/arts/spines/characters/p0003/p0003.png and b/Assets/arts/spines/characters/p0003/p0003.png differ
diff --git a/Assets/arts/spines/characters/p0003/p0003.skel.bytes b/Assets/arts/spines/characters/p0003/p0003.skel.bytes
index cca511a20..1f5dd1a1e 100644
Binary files a/Assets/arts/spines/characters/p0003/p0003.skel.bytes and b/Assets/arts/spines/characters/p0003/p0003.skel.bytes differ
diff --git a/Assets/arts/spines/characters/p0004/p0004.atlas.txt b/Assets/arts/spines/characters/p0004/p0004.atlas.txt
index f580827de..c627bfe53 100644
--- a/Assets/arts/spines/characters/p0004/p0004.atlas.txt
+++ b/Assets/arts/spines/characters/p0004/p0004.atlas.txt
@@ -1,39 +1,52 @@
p0004.png
size:512,512
filter:Linear,Linear
-1
-bounds:327,369,22,48
+eye_L
+bounds:2,2,9,18
rotate:90
-2
-bounds:154,259,21,48
-3
-bounds:295,318,21,48
-4
-bounds:104,107,27,48
-clothes
-bounds:429,404,68,100
-clothes1
-bounds:189,282,84,104
+eye_R
+bounds:502,491,8,19
+eye_xuanyun
+bounds:113,44,22,22
+hand_L
+bounds:327,381,30,45
rotate:90
-hand_l
-bounds:104,74,31,27
-rotate:90
-hand_r
-bounds:104,74,31,27
+hand_R
+bounds:374,381,30,45
rotate:90
head
-bounds:2,28,100,127
+bounds:2,50,109,111
hit_yan1
-bounds:80,8,16,18
-spine
-bounds:327,393,100,111
+bounds:154,206,16,18
+leg_L_1
+bounds:137,45,54,53
+leg_L_2
+bounds:154,226,26,42
+leg_R_1
+bounds:328,326,53,53
+leg_R_2
+bounds:154,270,27,43
+spine_1
+bounds:2,13,82,35
+spine_2
+bounds:189,305,74,67
+spine_3
+bounds:137,100,47,61
+spine_4
+bounds:265,310,61,62
+spine_5
+bounds:427,402,108,73
+rotate:90
weapon_1
-bounds:2,2,76,24
+bounds:383,342,37,37
+weapon_2
+bounds:327,413,98,97
yan01
-bounds:2,309,185,195
+bounds:2,315,185,195
yan02
-bounds:189,368,136,136
+bounds:189,374,136,136
yan03
-bounds:2,157,150,150
-zui
-bounds:104,40,24,32
+bounds:2,163,150,150
+yinying
+bounds:113,68,93,22
+rotate:90
diff --git a/Assets/arts/spines/characters/p0004/p0004.png b/Assets/arts/spines/characters/p0004/p0004.png
index 6f56e3741..0d0a1d52c 100644
Binary files a/Assets/arts/spines/characters/p0004/p0004.png and b/Assets/arts/spines/characters/p0004/p0004.png differ
diff --git a/Assets/arts/spines/characters/p0004/p0004.skel.bytes b/Assets/arts/spines/characters/p0004/p0004.skel.bytes
index 6f44194f4..46e74fdbe 100644
Binary files a/Assets/arts/spines/characters/p0004/p0004.skel.bytes and b/Assets/arts/spines/characters/p0004/p0004.skel.bytes differ
diff --git a/Assets/arts/spines/characters/p0005/p0005.atlas.txt b/Assets/arts/spines/characters/p0005/p0005.atlas.txt
index d3a0f0e1b..2026ba445 100644
--- a/Assets/arts/spines/characters/p0005/p0005.atlas.txt
+++ b/Assets/arts/spines/characters/p0005/p0005.atlas.txt
@@ -1,26 +1,49 @@
p0005.png
-size:512,512
+size:256,256
filter:Linear,Linear
-head
-bounds:2,159,98,117
-hit_yan1
-bounds:59,139,16,18
-leg_L
-bounds:134,251,43,51
-leg_R
-bounds:224,305,43,51
-pif
-bounds:2,278,130,144
-spine
-bounds:134,351,88,71
-spine_1
-bounds:134,304,88,45
-upperarm
-bounds:102,208,30,68
-upperarm_1
-bounds:224,358,50,64
-weapon_1
-bounds:2,69,55,88
-weapon_2
-bounds:2,2,65,31
+eye_L
+bounds:65,59,12,24
+eye_R
+bounds:228,78,12,25
+rotate:90
+eye_xuanyun
+bounds:79,61,22,22
+hand L
+bounds:110,50,44,30
+rotate:90
+hand R
+bounds:193,29,47,60
+rotate:90
+hand R_2
+bounds:65,3,45,62
+offsets:0,0,47,62
+rotate:90
+head_1
+bounds:149,159,97,95
+head_2
+bounds:2,122,145,132
+hit_yan1
+bounds:215,9,16,18
+hit_yan2
+bounds:193,7,20,20
+leg_ L_1
+bounds:56,85,35,52
+rotate:90
+leg_R_1
+bounds:2,84,36,52
+rotate:90
+spine1
+bounds:2,6,70,61
+rotate:90
+spine_2
+bounds:149,80,77,53
+upperarm_L_01
+bounds:228,92,26,41
+weapon_1
+bounds:142,11,65,49
+rotate:90
+yinying
+bounds:149,135,93,22
+zui
+bounds:110,96,24,32
rotate:90
diff --git a/Assets/arts/spines/characters/p0005/p0005.png b/Assets/arts/spines/characters/p0005/p0005.png
index ea322a169..64361d617 100644
Binary files a/Assets/arts/spines/characters/p0005/p0005.png and b/Assets/arts/spines/characters/p0005/p0005.png differ
diff --git a/Assets/arts/spines/characters/p0005/p0005.skel.bytes b/Assets/arts/spines/characters/p0005/p0005.skel.bytes
index 83a7111c6..dbdd7e021 100644
Binary files a/Assets/arts/spines/characters/p0005/p0005.skel.bytes and b/Assets/arts/spines/characters/p0005/p0005.skel.bytes differ
diff --git a/Assets/arts/spines/characters/p0006/p0006.atlas.txt b/Assets/arts/spines/characters/p0006/p0006.atlas.txt
index a55abfe36..579aaa8eb 100644
--- a/Assets/arts/spines/characters/p0006/p0006.atlas.txt
+++ b/Assets/arts/spines/characters/p0006/p0006.atlas.txt
@@ -1,55 +1,51 @@
p0006.png
-size:256,256
+size:512,512
filter:Linear,Linear
-er1
-bounds:107,3,22,28
+bird
+bounds:38,82,49,39
+offsets:1,1,51,41
+eye_L
+bounds:89,97,13,24
+offsets:1,1,15,26
+eye_R
+bounds:459,459,13,24
+offsets:1,1,15,26
+eye_xuanyun
+bounds:334,412,22,22
+flower
+bounds:422,446,35,37
+offsets:1,1,37,39
+hand_L
+bounds:361,444,59,39
+hand_R
+bounds:137,331,26,29
+offsets:1,1,28,31
+head_1
+bounds:2,203,117,89
+offsets:1,1,119,91
rotate:90
-hair_1
-bounds:182,73,35,32
-rotate:90
-hair_2
-bounds:177,110,34,28
-rotate:90
-hair_3
-bounds:216,66,25,25
-hair_4
-bounds:79,163,62,91
-hair_5
-bounds:107,27,44,81
-hand_r
-bounds:153,21,28,30
-head
-bounds:143,194,66,60
+head_2
+bounds:97,362,125,121
+head_3
+bounds:224,436,135,47
+offsets:1,1,137,49
hit_yan1
-bounds:182,53,16,18
-jiao
-bounds:143,146,46,62
-rotate:90
-jiao2
-bounds:79,110,51,55
-rotate:90
-maozi
-bounds:211,182,72,36
-rotate:90
-shuihu
-bounds:136,110,34,39
-offsets:1,0,35,39
-rotate:90
-spine
-bounds:2,2,103,106
-upperarm
-bounds:153,53,27,55
-upperarm2
-bounds:207,127,53,37
+bounds:2,2,16,18
+hit_yan2
+bounds:38,60,20,20
+spine_1
+bounds:38,123,78,73
rotate:90
+spine_2
+bounds:224,374,108,60
+upperarm_R
+bounds:97,325,38,35
+offsets:1,1,40,37
weapon_1
-bounds:2,110,75,144
-y1
-bounds:152,3,16,19
+bounds:2,322,93,161
+offsets:1,1,95,163
+yingzi
+bounds:2,56,145,34
rotate:90
-y2
-bounds:183,29,22,22
-y3
-bounds:137,3,13,22
zui
-bounds:216,93,24,32
+bounds:2,22,24,32
diff --git a/Assets/arts/spines/characters/p0006/p0006.png b/Assets/arts/spines/characters/p0006/p0006.png
index 11e1a1943..2f89669de 100644
Binary files a/Assets/arts/spines/characters/p0006/p0006.png and b/Assets/arts/spines/characters/p0006/p0006.png differ
diff --git a/Assets/arts/spines/characters/p0006/p0006.skel.bytes b/Assets/arts/spines/characters/p0006/p0006.skel.bytes
index aff25ddf5..3c5cde581 100644
Binary files a/Assets/arts/spines/characters/p0006/p0006.skel.bytes and b/Assets/arts/spines/characters/p0006/p0006.skel.bytes differ
diff --git a/Assets/arts/spines/characters/p0007/p0007.atlas.txt b/Assets/arts/spines/characters/p0007/p0007.atlas.txt
index 5f62ad3fa..f5958eead 100644
--- a/Assets/arts/spines/characters/p0007/p0007.atlas.txt
+++ b/Assets/arts/spines/characters/p0007/p0007.atlas.txt
@@ -1,33 +1,50 @@
p0007.png
size:512,512
filter:Linear,Linear
+eye_L
+bounds:94,241,9,22
+offsets:1,1,11,24
+eye_R
+bounds:213,412,9,22
+offsets:1,1,11,24
+rotate:90
+eye_xuanyun
+bounds:413,488,22,22
+guang
+bounds:2,6,28,61
+rotate:90
+hand_L
+bounds:108,274,39,65
+hand_R
+bounds:213,423,37,63
+rotate:90
head
-bounds:112,318,127,127
+bounds:108,404,103,106
+head_1
+bounds:2,124,139,90
+rotate:90
hit_yan1
-bounds:169,268,16,18
-legL
-bounds:112,257,55,59
-legR
-bounds:241,386,55,59
-spine
-bounds:2,97,96,78
-upperarm
-bounds:112,191,35,64
-upperarm 1
-bounds:2,31,35,64
-weapon_1_1
-bounds:39,71,16,24
-offsets:1,0,18,24
-weapon_1_2
-bounds:149,232,16,23
-offsets:0,0,17,23
-weapon_1_3
-bounds:241,356,47,28
-weapon_1_4
-bounds:2,177,108,268
-yan
-bounds:169,288,60,28
+bounds:192,384,16,18
+hit_yan2
+bounds:437,490,20,20
+hit_yan3
+bounds:345,458,28,28
+leg_L
+bounds:149,283,39,56
+leg_R
+bounds:287,447,39,56
+rotate:90
+spine_1
+bounds:2,36,79,86
+spine_2
+bounds:108,341,82,61
+spine_3
+bounds:213,462,72,48
+weapon_1
+bounds:2,265,104,245
+yingzi
+bounds:287,488,93,22
zui
-bounds:298,413,24,32
+bounds:65,2,24,32
zui1
-bounds:2,2,29,27
+bounds:382,483,29,27
diff --git a/Assets/arts/spines/characters/p0007/p0007.png b/Assets/arts/spines/characters/p0007/p0007.png
index 2a11281c7..20f339ddb 100644
Binary files a/Assets/arts/spines/characters/p0007/p0007.png and b/Assets/arts/spines/characters/p0007/p0007.png differ
diff --git a/Assets/arts/spines/characters/p0007/p0007.skel.bytes b/Assets/arts/spines/characters/p0007/p0007.skel.bytes
index b298b066b..492089250 100644
Binary files a/Assets/arts/spines/characters/p0007/p0007.skel.bytes and b/Assets/arts/spines/characters/p0007/p0007.skel.bytes differ
diff --git a/Assets/arts/spines/characters/p0008/p0008.atlas.txt b/Assets/arts/spines/characters/p0008/p0008.atlas.txt
index 4c60b8419..2ab27ff3e 100644
--- a/Assets/arts/spines/characters/p0008/p0008.atlas.txt
+++ b/Assets/arts/spines/characters/p0008/p0008.atlas.txt
@@ -1,33 +1,56 @@
p0008.png
size:512,512
filter:Linear,Linear
-1
-bounds:202,409,110,101
-offsets:0,1,111,103
-2
-bounds:135,257,52,140
-3
-bounds:314,441,69,133
+eye_L
+bounds:349,384,12,24
+offsets:1,1,14,26
+eye_R
+bounds:250,166,12,24
+offsets:1,1,14,26
rotate:90
-4
-bounds:2,125,82,121
-hand_l
-bounds:86,163,83,47
-rotate:90
-hand_r
-bounds:135,172,83,47
-rotate:90
-head
-bounds:2,248,131,149
+eye_xuanyun
+bounds:121,73,22,22
+hand_L
+bounds:370,411,58,53
+hand_R
+bounds:2,24,73,30
+head_1
+bounds:259,410,109,100
+offsets:1,1,111,102
+head_2
+bounds:2,133,179,128
hit_yan1
-bounds:2,2,16,18
-leg_l
-bounds:449,440,42,70
-leg_r
-bounds:449,440,42,70
-pifenmg
-bounds:2,399,198,111
-spine
-bounds:2,22,95,101
-zui
-bounds:86,129,24,32
+bounds:323,236,16,18
+hit_yan2
+bounds:2,2,20,20
+leg_L
+bounds:183,122,33,59
+rotate:90
+leg_R
+bounds:430,430,34,61
+rotate:90
+spine_1
+bounds:259,256,84,65
+offsets:1,1,86,67
+spine_2
+bounds:250,180,71,74
+weapon_1
+bounds:259,323,88,85
+offsets:1,1,90,87
+weapon_2
+bounds:2,56,39,117
+offsets:1,1,41,119
+rotate:90
+weapon_3
+bounds:370,466,44,119
+offsets:1,1,46,121
+rotate:90
+weapon_4
+bounds:183,157,65,104
+offsets:1,1,67,106
+xuying
+bounds:2,263,255,247
+yingzi
+bounds:2,97,145,34
+zui1
+bounds:77,27,29,27
diff --git a/Assets/arts/spines/characters/p0008/p0008.png b/Assets/arts/spines/characters/p0008/p0008.png
index 95d6ca68a..08bc8ee80 100644
Binary files a/Assets/arts/spines/characters/p0008/p0008.png and b/Assets/arts/spines/characters/p0008/p0008.png differ
diff --git a/Assets/arts/spines/characters/p0008/p0008.skel.bytes b/Assets/arts/spines/characters/p0008/p0008.skel.bytes
index ffe4cb580..d8ae92dbb 100644
Binary files a/Assets/arts/spines/characters/p0008/p0008.skel.bytes and b/Assets/arts/spines/characters/p0008/p0008.skel.bytes differ
diff --git a/Assets/arts/spines/characters/p0009.meta b/Assets/arts/spines/characters/p0009.meta
new file mode 100644
index 000000000..2d6c5f5d1
--- /dev/null
+++ b/Assets/arts/spines/characters/p0009.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 067676eb3479c5148907388966fb53b7
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0009/p0009.atlas.txt b/Assets/arts/spines/characters/p0009/p0009.atlas.txt
new file mode 100644
index 000000000..f358ea321
--- /dev/null
+++ b/Assets/arts/spines/characters/p0009/p0009.atlas.txt
@@ -0,0 +1,57 @@
+p0009.png
+size:512,512
+filter:Linear,Linear
+eye_L
+bounds:266,361,10,23
+offsets:1,1,12,25
+rotate:90
+eye_R
+bounds:308,416,10,23
+offsets:1,1,12,25
+eye_xuanyun
+bounds:158,328,22,22
+hand_L
+bounds:2,45,64,55
+rotate:90
+hand_R
+bounds:426,466,44,50
+offsets:1,1,46,52
+rotate:90
+head
+bounds:158,423,106,87
+offsets:1,1,108,89
+hit_yan1
+bounds:128,301,16,18
+hit_yan2
+bounds:2,23,20,20
+leg_L
+bounds:266,441,63,69
+leg_R
+bounds:158,352,64,69
+sipne_1
+bounds:2,219,100,100
+spine_2
+bounds:224,355,66,40
+rotate:90
+spine_3
+bounds:266,373,66,40
+rotate:90
+spine_4
+bounds:2,111,106,61
+rotate:90
+upperarm_L_1
+bounds:376,462,48,48
+offsets:1,1,50,50
+upperarm_R_1
+bounds:331,452,43,58
+offsets:1,1,45,60
+xuying
+bounds:2,321,154,189
+yinying
+bounds:104,226,93,22
+rotate:90
+zui
+bounds:478,486,24,32
+rotate:90
+zui1
+bounds:65,190,29,27
diff --git a/Assets/arts/spines/characters/p0009/p0009.atlas.txt.meta b/Assets/arts/spines/characters/p0009/p0009.atlas.txt.meta
new file mode 100644
index 000000000..224d90cd0
--- /dev/null
+++ b/Assets/arts/spines/characters/p0009/p0009.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: ea0cdaddc6ae5ef479c5157fd139b202
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName: arts/spines/characters/p0009.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0009/p0009.png b/Assets/arts/spines/characters/p0009/p0009.png
new file mode 100644
index 000000000..23f481cf2
Binary files /dev/null and b/Assets/arts/spines/characters/p0009/p0009.png differ
diff --git a/Assets/arts/spines/characters/p0009/p0009.png.meta b/Assets/arts/spines/characters/p0009/p0009.png.meta
new file mode 100644
index 000000000..f6ca270c0
--- /dev/null
+++ b/Assets/arts/spines/characters/p0009/p0009.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: af47195747ad2c64a92b31caeb925f32
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/spines/characters/p0009.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0009/p0009.skel.bytes b/Assets/arts/spines/characters/p0009/p0009.skel.bytes
new file mode 100644
index 000000000..e1c1270c9
Binary files /dev/null and b/Assets/arts/spines/characters/p0009/p0009.skel.bytes differ
diff --git a/Assets/arts/spines/characters/p0009/p0009.skel.bytes.meta b/Assets/arts/spines/characters/p0009/p0009.skel.bytes.meta
new file mode 100644
index 000000000..f2ebcc93b
--- /dev/null
+++ b/Assets/arts/spines/characters/p0009/p0009.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 2590bd58bc474ac4fb15ae7196647f9e
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName: arts/spines/characters/p0009.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0009/p0009_atlas.asset b/Assets/arts/spines/characters/p0009/p0009_atlas.asset
new file mode 100644
index 000000000..cdf821f30
--- /dev/null
+++ b/Assets/arts/spines/characters/p0009/p0009_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: p0009_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: ea0cdaddc6ae5ef479c5157fd139b202, type: 3}
+ materials:
+ - {fileID: 2100000, guid: afbed2de0020ca84eaadb6d0bacf9fb2, type: 2}
diff --git a/Assets/arts/spines/characters/p0009/p0009_atlas.asset.meta b/Assets/arts/spines/characters/p0009/p0009_atlas.asset.meta
new file mode 100644
index 000000000..8e6fb40c3
--- /dev/null
+++ b/Assets/arts/spines/characters/p0009/p0009_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: e8317d768d79f7345bc2d19532ffa5c0
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/p0009.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0009/p0009_material.mat b/Assets/arts/spines/characters/p0009/p0009_material.mat
new file mode 100644
index 000000000..3d509ae2c
--- /dev/null
+++ b/Assets/arts/spines/characters/p0009/p0009_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: p0009_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: af47195747ad2c64a92b31caeb925f32, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/p0009/p0009_material.mat.meta b/Assets/arts/spines/characters/p0009/p0009_material.mat.meta
new file mode 100644
index 000000000..c945f8169
--- /dev/null
+++ b/Assets/arts/spines/characters/p0009/p0009_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: afbed2de0020ca84eaadb6d0bacf9fb2
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName: arts/spines/characters/p0009.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0009/p0009_skeletondata.asset b/Assets/arts/spines/characters/p0009/p0009_skeletondata.asset
new file mode 100644
index 000000000..9968008f4
--- /dev/null
+++ b/Assets/arts/spines/characters/p0009/p0009_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: p0009_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: e8317d768d79f7345bc2d19532ffa5c0, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 2590bd58bc474ac4fb15ae7196647f9e, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/p0009/p0009_skeletondata.asset.meta b/Assets/arts/spines/characters/p0009/p0009_skeletondata.asset.meta
new file mode 100644
index 000000000..ac1714614
--- /dev/null
+++ b/Assets/arts/spines/characters/p0009/p0009_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 45482a9caabe1c64d8ce05d82482ed4d
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/p0009.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0010.meta b/Assets/arts/spines/characters/p0010.meta
new file mode 100644
index 000000000..9cc2689ff
--- /dev/null
+++ b/Assets/arts/spines/characters/p0010.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: ab7a068a405cb054c8f0f53c18ffc74d
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0010/p0010.atlas.txt b/Assets/arts/spines/characters/p0010/p0010.atlas.txt
new file mode 100644
index 000000000..6f2b1ab8b
--- /dev/null
+++ b/Assets/arts/spines/characters/p0010/p0010.atlas.txt
@@ -0,0 +1,73 @@
+p0010.png
+size:512,512
+filter:Linear,Linear
+eye_L
+bounds:484,457,23,19
+offsets:1,1,25,21
+eye_R
+bounds:120,8,19,14
+offsets:1,1,21,16
+eye_xuanyun
+bounds:389,302,22,22
+hand
+bounds:318,298,44,69
+rotate:90
+hand_L
+bounds:141,2,35,39
+offsets:1,1,37,41
+head_1
+bounds:318,421,94,89
+offsets:1,1,96,91
+head_2
+bounds:314,238,43,58
+head_3
+bounds:98,24,41,60
+head_4
+bounds:2,3,94,81
+offsets:1,1,96,83
+head_5
+bounds:141,94,70,48
+head_6
+bounds:414,459,68,51
+offsets:1,1,70,53
+hit_yan1
+bounds:213,95,16,18
+rotate:90
+hit_yan2
+bounds:98,2,20,20
+hit_yan3
+bounds:178,13,28,28
+leg_L
+bounds:243,222,69,75
+leg_R
+bounds:318,344,69,75
+pelvis
+bounds:141,144,97,64
+spine_1
+bounds:141,210,100,87
+upperarm_L_1
+bounds:414,424,33,53
+offsets:1,1,35,55
+rotate:90
+upperarm_R_1
+bounds:141,43,53,49
+offsets:1,1,55,51
+upperarm_R_2
+bounds:359,248,36,48
+offsets:1,1,38,50
+weapon_1
+bounds:213,299,103,211
+offsets:1,1,105,213
+weapon_2
+bounds:2,86,137,211
+offsets:37,1,213,213
+xuanzhuan
+bounds:2,299,209,211
+yingzi
+bounds:389,326,93,22
+rotate:90
+zui
+bounds:484,478,24,32
+zui1
+bounds:213,113,29,27
+rotate:90
diff --git a/Assets/arts/spines/characters/p0010/p0010.atlas.txt.meta b/Assets/arts/spines/characters/p0010/p0010.atlas.txt.meta
new file mode 100644
index 000000000..7af3fde2c
--- /dev/null
+++ b/Assets/arts/spines/characters/p0010/p0010.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 365afd9eefed3394b9014760c96f416c
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName: arts/spines/characters/p0010.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0010/p0010.png b/Assets/arts/spines/characters/p0010/p0010.png
new file mode 100644
index 000000000..7fa025705
Binary files /dev/null and b/Assets/arts/spines/characters/p0010/p0010.png differ
diff --git a/Assets/arts/spines/characters/p0010/p0010.png.meta b/Assets/arts/spines/characters/p0010/p0010.png.meta
new file mode 100644
index 000000000..4182e3d7c
--- /dev/null
+++ b/Assets/arts/spines/characters/p0010/p0010.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 0f5fb3e9d75b0cf40b10c66e3531e4cc
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/spines/characters/p0010.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0010/p0010.skel.bytes b/Assets/arts/spines/characters/p0010/p0010.skel.bytes
new file mode 100644
index 000000000..2c973ad11
Binary files /dev/null and b/Assets/arts/spines/characters/p0010/p0010.skel.bytes differ
diff --git a/Assets/arts/spines/characters/p0010/p0010.skel.bytes.meta b/Assets/arts/spines/characters/p0010/p0010.skel.bytes.meta
new file mode 100644
index 000000000..08fe8bcf7
--- /dev/null
+++ b/Assets/arts/spines/characters/p0010/p0010.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 4f2cc36d6e75c614ba5aaaedc6a0b455
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName: arts/spines/characters/p0010.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0010/p0010_atlas.asset b/Assets/arts/spines/characters/p0010/p0010_atlas.asset
new file mode 100644
index 000000000..53f5dcf44
--- /dev/null
+++ b/Assets/arts/spines/characters/p0010/p0010_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: p0010_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: 365afd9eefed3394b9014760c96f416c, type: 3}
+ materials:
+ - {fileID: 2100000, guid: 068b1d926f323064f966bfce16c80aea, type: 2}
diff --git a/Assets/arts/spines/characters/p0010/p0010_atlas.asset.meta b/Assets/arts/spines/characters/p0010/p0010_atlas.asset.meta
new file mode 100644
index 000000000..b80a78fea
--- /dev/null
+++ b/Assets/arts/spines/characters/p0010/p0010_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: a99b3f94d5240264aa7d5a8503478d5e
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/p0010.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0010/p0010_material.mat b/Assets/arts/spines/characters/p0010/p0010_material.mat
new file mode 100644
index 000000000..357ef4f4e
--- /dev/null
+++ b/Assets/arts/spines/characters/p0010/p0010_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: p0010_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 0f5fb3e9d75b0cf40b10c66e3531e4cc, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/p0010/p0010_material.mat.meta b/Assets/arts/spines/characters/p0010/p0010_material.mat.meta
new file mode 100644
index 000000000..751db92aa
--- /dev/null
+++ b/Assets/arts/spines/characters/p0010/p0010_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 068b1d926f323064f966bfce16c80aea
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName: arts/spines/characters/p0010.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0010/p0010_skeletondata.asset b/Assets/arts/spines/characters/p0010/p0010_skeletondata.asset
new file mode 100644
index 000000000..47b5fd40f
--- /dev/null
+++ b/Assets/arts/spines/characters/p0010/p0010_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: p0010_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: a99b3f94d5240264aa7d5a8503478d5e, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 4f2cc36d6e75c614ba5aaaedc6a0b455, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/p0010/p0010_skeletondata.asset.meta b/Assets/arts/spines/characters/p0010/p0010_skeletondata.asset.meta
new file mode 100644
index 000000000..10cb92f9f
--- /dev/null
+++ b/Assets/arts/spines/characters/p0010/p0010_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: fa7bb7020f8fe2c4da03bb53a6818bea
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/p0010.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0011.meta b/Assets/arts/spines/characters/p0011.meta
new file mode 100644
index 000000000..f3ba57814
--- /dev/null
+++ b/Assets/arts/spines/characters/p0011.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 6c6519aaf657e4243af466d3727e13b4
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0011/p0011.atlas.txt b/Assets/arts/spines/characters/p0011/p0011.atlas.txt
new file mode 100644
index 000000000..7c291a5f1
--- /dev/null
+++ b/Assets/arts/spines/characters/p0011/p0011.atlas.txt
@@ -0,0 +1,75 @@
+p0011.png
+size:512,512
+filter:Linear,Linear
+eye_L
+bounds:432,254,10,21
+offsets:1,1,12,23
+rotate:90
+eye_R
+bounds:322,164,10,21
+offsets:1,1,12,23
+eye_xuanyun
+bounds:279,92,22,22
+head_1
+bounds:2,34,115,71
+offsets:1,1,117,73
+head_2
+bounds:279,145,41,40
+head_3
+bounds:440,360,74,65
+offsets:1,1,76,67
+rotate:90
+hit_yan1
+bounds:166,41,16,18
+rotate:90
+hit_yan2
+bounds:338,187,20,20
+leg_L
+bounds:440,436,70,74
+leg_R
+bounds:309,245,71,74
+rotate:90
+pelvis_1
+bounds:97,2,30,36
+offsets:1,1,32,38
+rotate:90
+pelvis_2
+bounds:338,209,40,34
+offsets:1,1,42,36
+pelvis_3
+bounds:430,324,64,34
+spine_1
+bounds:2,107,148,138
+spine_2
+bounds:309,318,119,62
+offsets:1,1,121,64
+upperarm_L_02
+bounds:385,251,45,65
+offsets:1,1,47,67
+upperarm_L_03
+bounds:166,59,55,60
+offsets:1,1,57,62
+upperarm_R_1
+bounds:432,266,57,56
+offsets:1,1,59,58
+upperarm_R_2
+bounds:119,40,45,65
+offsets:1,1,47,67
+upperarm_R_3
+bounds:223,59,54,60
+offsets:1,1,56,62
+upperarm_l_01
+bounds:279,187,57,56
+offsets:1,1,59,58
+weapon_1
+bounds:309,382,129,128
+offsets:1,1,131,130
+weapon_2
+bounds:152,121,125,124
+offsets:1,1,127,126
+xuying
+bounds:2,247,305,263
+yinying
+bounds:2,10,93,22
+zui1
+bounds:279,116,29,27
diff --git a/Assets/arts/spines/characters/p0011/p0011.atlas.txt.meta b/Assets/arts/spines/characters/p0011/p0011.atlas.txt.meta
new file mode 100644
index 000000000..e2746cd82
--- /dev/null
+++ b/Assets/arts/spines/characters/p0011/p0011.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: bcdf6c5568fd30d449cb6d7d01cbf8c7
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName: arts/spines/characters/p0011.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0011/p0011.png b/Assets/arts/spines/characters/p0011/p0011.png
new file mode 100644
index 000000000..56475ec5b
Binary files /dev/null and b/Assets/arts/spines/characters/p0011/p0011.png differ
diff --git a/Assets/arts/spines/characters/p0011/p0011.png.meta b/Assets/arts/spines/characters/p0011/p0011.png.meta
new file mode 100644
index 000000000..6557c0140
--- /dev/null
+++ b/Assets/arts/spines/characters/p0011/p0011.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 61c889d3e234a13438a515ad7f95d14e
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/spines/characters/p0011.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0011/p0011.skel.bytes b/Assets/arts/spines/characters/p0011/p0011.skel.bytes
new file mode 100644
index 000000000..a071c2ad1
Binary files /dev/null and b/Assets/arts/spines/characters/p0011/p0011.skel.bytes differ
diff --git a/Assets/arts/spines/characters/p0011/p0011.skel.bytes.meta b/Assets/arts/spines/characters/p0011/p0011.skel.bytes.meta
new file mode 100644
index 000000000..f9a94aceb
--- /dev/null
+++ b/Assets/arts/spines/characters/p0011/p0011.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 6cfbe6a0ba009f84bace1025d5357db7
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName: arts/spines/characters/p0011.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0011/p0011_atlas.asset b/Assets/arts/spines/characters/p0011/p0011_atlas.asset
new file mode 100644
index 000000000..07f380bb7
--- /dev/null
+++ b/Assets/arts/spines/characters/p0011/p0011_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: p0011_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: bcdf6c5568fd30d449cb6d7d01cbf8c7, type: 3}
+ materials:
+ - {fileID: 2100000, guid: df4482557575aef4d86958137431a718, type: 2}
diff --git a/Assets/arts/spines/characters/p0011/p0011_atlas.asset.meta b/Assets/arts/spines/characters/p0011/p0011_atlas.asset.meta
new file mode 100644
index 000000000..cfc3e5a50
--- /dev/null
+++ b/Assets/arts/spines/characters/p0011/p0011_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 2bd235ee1ce7f58459425cfdccbf04db
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/p0011.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0011/p0011_material.mat b/Assets/arts/spines/characters/p0011/p0011_material.mat
new file mode 100644
index 000000000..228a095ab
--- /dev/null
+++ b/Assets/arts/spines/characters/p0011/p0011_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: p0011_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 61c889d3e234a13438a515ad7f95d14e, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/p0011/p0011_material.mat.meta b/Assets/arts/spines/characters/p0011/p0011_material.mat.meta
new file mode 100644
index 000000000..d828e8d59
--- /dev/null
+++ b/Assets/arts/spines/characters/p0011/p0011_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: df4482557575aef4d86958137431a718
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName: arts/spines/characters/p0011.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0011/p0011_skeletondata.asset b/Assets/arts/spines/characters/p0011/p0011_skeletondata.asset
new file mode 100644
index 000000000..2ed534f51
--- /dev/null
+++ b/Assets/arts/spines/characters/p0011/p0011_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: p0011_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: 2bd235ee1ce7f58459425cfdccbf04db, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 6cfbe6a0ba009f84bace1025d5357db7, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/p0011/p0011_skeletondata.asset.meta b/Assets/arts/spines/characters/p0011/p0011_skeletondata.asset.meta
new file mode 100644
index 000000000..dfbd71fea
--- /dev/null
+++ b/Assets/arts/spines/characters/p0011/p0011_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: ce81b88e13ea9f94993eabc20f8f7154
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/p0011.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0012.meta b/Assets/arts/spines/characters/p0012.meta
new file mode 100644
index 000000000..5d0f5f618
--- /dev/null
+++ b/Assets/arts/spines/characters/p0012.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 9991f7bcc6aef9a42a6375644e4474e2
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0012/p0012.atlas.txt b/Assets/arts/spines/characters/p0012/p0012.atlas.txt
new file mode 100644
index 000000000..082fa893b
--- /dev/null
+++ b/Assets/arts/spines/characters/p0012/p0012.atlas.txt
@@ -0,0 +1,62 @@
+p0012.png
+size:512,512
+filter:Linear,Linear
+eye_L
+bounds:191,276,13,25
+offsets:1,1,15,27
+eye_R
+bounds:68,50,12,25
+offsets:1,1,14,27
+eye_xuanyun
+bounds:264,330,22,22
+hand_L
+bounds:393,402,35,36
+offsets:1,1,37,38
+hand_R
+bounds:356,361,36,33
+offsets:1,1,38,35
+rotate:90
+head_1
+bounds:2,5,64,70
+head_2
+bounds:206,429,135,73
+offsets:1,1,137,75
+head_3
+bounds:343,440,85,62
+offsets:1,1,87,64
+head_4
+bounds:2,77,94,81
+offsets:1,1,96,83
+rotate:90
+head_5
+bounds:89,201,100,100
+hit_yan1
+bounds:206,288,16,18
+hit_yan2
+bounds:264,308,20,20
+leg_L
+bounds:430,435,67,67
+leg_R
+bounds:287,360,67,67
+spine_1
+bounds:206,354,79,73
+upperarm_L_01
+bounds:356,399,35,39
+offsets:1,1,37,41
+upperarm_L_02
+bounds:430,406,27,41
+offsets:1,1,29,43
+rotate:90
+upperarm_R_01
+bounds:206,308,44,56
+offsets:1,1,46,58
+rotate:90
+weapon_1
+bounds:2,173,85,128
+offsets:1,1,87,130
+xuying
+bounds:2,303,202,199
+yinying
+bounds:89,177,93,22
+zui1
+bounds:473,406,29,27
diff --git a/Assets/arts/spines/characters/p0012/p0012.atlas.txt.meta b/Assets/arts/spines/characters/p0012/p0012.atlas.txt.meta
new file mode 100644
index 000000000..96e95f7f4
--- /dev/null
+++ b/Assets/arts/spines/characters/p0012/p0012.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 0a3b6ed0f0d29e746929b0dea4a71ff5
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName: arts/spines/characters/p0012.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0012/p0012.png b/Assets/arts/spines/characters/p0012/p0012.png
new file mode 100644
index 000000000..6085e1ab5
Binary files /dev/null and b/Assets/arts/spines/characters/p0012/p0012.png differ
diff --git a/Assets/arts/spines/characters/p0012/p0012.png.meta b/Assets/arts/spines/characters/p0012/p0012.png.meta
new file mode 100644
index 000000000..92be5cd8a
--- /dev/null
+++ b/Assets/arts/spines/characters/p0012/p0012.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 0c2ed07badde6eb45a0bf079ae6de9b2
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 0
+ wrapV: 0
+ wrapW: 0
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 1
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 1
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/spines/characters/p0012.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0012/p0012.skel.bytes b/Assets/arts/spines/characters/p0012/p0012.skel.bytes
new file mode 100644
index 000000000..987aa8b1f
Binary files /dev/null and b/Assets/arts/spines/characters/p0012/p0012.skel.bytes differ
diff --git a/Assets/arts/spines/characters/p0012/p0012.skel.bytes.meta b/Assets/arts/spines/characters/p0012/p0012.skel.bytes.meta
new file mode 100644
index 000000000..84a8d577a
--- /dev/null
+++ b/Assets/arts/spines/characters/p0012/p0012.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 14453c3cd2a8d9a46bbe17b5a3a4de67
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName: arts/spines/characters/p0012.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0012/p0012_atlas.asset b/Assets/arts/spines/characters/p0012/p0012_atlas.asset
new file mode 100644
index 000000000..9be161423
--- /dev/null
+++ b/Assets/arts/spines/characters/p0012/p0012_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: p0012_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: 0a3b6ed0f0d29e746929b0dea4a71ff5, type: 3}
+ materials:
+ - {fileID: 2100000, guid: c4f093e7b25e0c047b04ca58e856e6bc, type: 2}
diff --git a/Assets/arts/spines/characters/p0012/p0012_atlas.asset.meta b/Assets/arts/spines/characters/p0012/p0012_atlas.asset.meta
new file mode 100644
index 000000000..fca02e47f
--- /dev/null
+++ b/Assets/arts/spines/characters/p0012/p0012_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: b84fbf1964b3a6b44aa646fec8dc2a29
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/p0012.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0012/p0012_material.mat b/Assets/arts/spines/characters/p0012/p0012_material.mat
new file mode 100644
index 000000000..123bed032
--- /dev/null
+++ b/Assets/arts/spines/characters/p0012/p0012_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: p0012_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 0c2ed07badde6eb45a0bf079ae6de9b2, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/p0012/p0012_material.mat.meta b/Assets/arts/spines/characters/p0012/p0012_material.mat.meta
new file mode 100644
index 000000000..272ec2fa7
--- /dev/null
+++ b/Assets/arts/spines/characters/p0012/p0012_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: c4f093e7b25e0c047b04ca58e856e6bc
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName: arts/spines/characters/p0012.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0012/p0012_skeletondata.asset b/Assets/arts/spines/characters/p0012/p0012_skeletondata.asset
new file mode 100644
index 000000000..3aa2c3f00
--- /dev/null
+++ b/Assets/arts/spines/characters/p0012/p0012_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: p0012_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: b84fbf1964b3a6b44aa646fec8dc2a29, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 14453c3cd2a8d9a46bbe17b5a3a4de67, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/p0012/p0012_skeletondata.asset.meta b/Assets/arts/spines/characters/p0012/p0012_skeletondata.asset.meta
new file mode 100644
index 000000000..ee5957a0a
--- /dev/null
+++ b/Assets/arts/spines/characters/p0012/p0012_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 268cdb62869d51345b33182d93889f5a
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/p0012.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0014.meta b/Assets/arts/spines/characters/p0014.meta
new file mode 100644
index 000000000..360437732
--- /dev/null
+++ b/Assets/arts/spines/characters/p0014.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: f5f0da976a668a545ac485937105a5cb
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0014/p0014.atlas.txt b/Assets/arts/spines/characters/p0014/p0014.atlas.txt
new file mode 100644
index 000000000..c03b4b3fb
--- /dev/null
+++ b/Assets/arts/spines/characters/p0014/p0014.atlas.txt
@@ -0,0 +1,55 @@
+p0014.png
+size:512,512
+filter:Linear,Linear
+canying
+bounds:2,285,132,118
+offsets:0,1,133,119
+eye_L
+bounds:496,486,9,21
+eye_R
+bounds:2,2,9,21
+rotate:90
+eye_xuanyun
+bounds:135,136,22,22
+hand_L
+bounds:97,120,36,38
+head_1
+bounds:38,65,93,57
+rotate:90
+head_2
+bounds:249,424,118,83
+head_3
+bounds:136,321,94,82
+hit_yan1
+bounds:207,239,16,18
+hit_yan2
+bounds:249,402,20,20
+leg_L
+bounds:38,12,51,61
+rotate:90
+leg_R
+bounds:122,196,51,61
+spine_1
+bounds:2,160,118,123
+spine_2
+bounds:136,259,60,87
+rotate:90
+spine_3
+bounds:369,424,83,84
+rotate:90
+spine_4
+bounds:455,429,78,39
+rotate:90
+upperarm_L_01
+bounds:175,202,55,30
+rotate:90
+upperarm_L_02
+bounds:122,160,34,45
+rotate:90
+weapon_1
+bounds:2,405,245,102
+yingzi
+bounds:2,13,145,34
+rotate:90
+zui
+bounds:97,86,24,32
diff --git a/Assets/arts/spines/characters/p0014/p0014.atlas.txt.meta b/Assets/arts/spines/characters/p0014/p0014.atlas.txt.meta
new file mode 100644
index 000000000..8736f1da8
--- /dev/null
+++ b/Assets/arts/spines/characters/p0014/p0014.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: c6c24d6c3bb3b5846bcc2ec3d428f1f8
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName: arts/spines/characters/p0014.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0014/p0014.png b/Assets/arts/spines/characters/p0014/p0014.png
new file mode 100644
index 000000000..e9f366f84
Binary files /dev/null and b/Assets/arts/spines/characters/p0014/p0014.png differ
diff --git a/Assets/arts/spines/characters/p0014/p0014.png.meta b/Assets/arts/spines/characters/p0014/p0014.png.meta
new file mode 100644
index 000000000..87981260a
--- /dev/null
+++ b/Assets/arts/spines/characters/p0014/p0014.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: ec87b55daaae1134e9f4b5b53d4029f8
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/spines/characters/p0014.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0014/p0014.skel.bytes b/Assets/arts/spines/characters/p0014/p0014.skel.bytes
new file mode 100644
index 000000000..eca0898fc
Binary files /dev/null and b/Assets/arts/spines/characters/p0014/p0014.skel.bytes differ
diff --git a/Assets/arts/spines/characters/p0014/p0014.skel.bytes.meta b/Assets/arts/spines/characters/p0014/p0014.skel.bytes.meta
new file mode 100644
index 000000000..5f37b8765
--- /dev/null
+++ b/Assets/arts/spines/characters/p0014/p0014.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 96db85867217e5d4093c872d5d805855
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName: arts/spines/characters/p0014.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0014/p0014_atlas.asset b/Assets/arts/spines/characters/p0014/p0014_atlas.asset
new file mode 100644
index 000000000..f1e3d32c5
--- /dev/null
+++ b/Assets/arts/spines/characters/p0014/p0014_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: p0014_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: c6c24d6c3bb3b5846bcc2ec3d428f1f8, type: 3}
+ materials:
+ - {fileID: 2100000, guid: 43341564b1a11584a824f8271be90332, type: 2}
diff --git a/Assets/arts/spines/characters/p0014/p0014_atlas.asset.meta b/Assets/arts/spines/characters/p0014/p0014_atlas.asset.meta
new file mode 100644
index 000000000..788cbef65
--- /dev/null
+++ b/Assets/arts/spines/characters/p0014/p0014_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: ab56324d8f59d854689fad5314afb463
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/p0014.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0014/p0014_material.mat b/Assets/arts/spines/characters/p0014/p0014_material.mat
new file mode 100644
index 000000000..e64426fe9
--- /dev/null
+++ b/Assets/arts/spines/characters/p0014/p0014_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: p0014_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: ec87b55daaae1134e9f4b5b53d4029f8, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/p0014/p0014_material.mat.meta b/Assets/arts/spines/characters/p0014/p0014_material.mat.meta
new file mode 100644
index 000000000..236cfe5d5
--- /dev/null
+++ b/Assets/arts/spines/characters/p0014/p0014_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 43341564b1a11584a824f8271be90332
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName: arts/spines/characters/p0014.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0014/p0014_skeletondata.asset b/Assets/arts/spines/characters/p0014/p0014_skeletondata.asset
new file mode 100644
index 000000000..ee369d5d2
--- /dev/null
+++ b/Assets/arts/spines/characters/p0014/p0014_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: p0014_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: ab56324d8f59d854689fad5314afb463, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: 96db85867217e5d4093c872d5d805855, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/p0014/p0014_skeletondata.asset.meta b/Assets/arts/spines/characters/p0014/p0014_skeletondata.asset.meta
new file mode 100644
index 000000000..d57811136
--- /dev/null
+++ b/Assets/arts/spines/characters/p0014/p0014_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 660a6f5b1eca1c44ead611004d0cc798
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/p0014.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0015.meta b/Assets/arts/spines/characters/p0015.meta
new file mode 100644
index 000000000..217f289a1
--- /dev/null
+++ b/Assets/arts/spines/characters/p0015.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 5dcb409a09dfdca42bc9c8195d87e13f
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0015/p0015.atlas.txt b/Assets/arts/spines/characters/p0015/p0015.atlas.txt
new file mode 100644
index 000000000..d4d7213e2
--- /dev/null
+++ b/Assets/arts/spines/characters/p0015/p0015.atlas.txt
@@ -0,0 +1,59 @@
+p0015.png
+size:512,512
+filter:Linear,Linear
+eye_L
+bounds:373,451,12,23
+offsets:1,1,14,25
+eye_R
+bounds:348,379,12,23
+offsets:1,1,14,25
+rotate:90
+eye_xuanyun
+bounds:387,449,22,22
+hand_L
+bounds:348,393,27,25
+offsets:1,1,29,27
+rotate:90
+hand_R
+bounds:322,348,26,29
+offsets:1,1,28,31
+head_1
+bounds:81,323,149,90
+head_2
+bounds:240,413,93,61
+offsets:1,1,95,63
+head_3
+bounds:232,335,88,76
+offsets:1,1,90,78
+head_4
+bounds:387,473,101,37
+offsets:1,1,103,39
+head_5
+bounds:81,415,157,95
+hit_yan1
+bounds:411,453,16,18
+hit_yan2
+bounds:490,490,20,20
+leg_L
+bounds:335,422,36,52
+leg_R
+bounds:2,2,37,51
+spine_1
+bounds:2,55,130,35
+rotate:90
+spine_2
+bounds:39,120,65,65
+spine_3
+bounds:2,187,125,64
+rotate:90
+upperarm_L_01
+bounds:39,71,35,47
+upperarm_R_01
+bounds:76,75,43,36
+rotate:90
+weapon_1
+bounds:2,314,77,196
+yingzi
+bounds:240,476,145,34
+zui
+bounds:322,379,24,32
diff --git a/Assets/arts/spines/characters/p0015/p0015.atlas.txt.meta b/Assets/arts/spines/characters/p0015/p0015.atlas.txt.meta
new file mode 100644
index 000000000..2b96e790b
--- /dev/null
+++ b/Assets/arts/spines/characters/p0015/p0015.atlas.txt.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: c4df51f590939334ba549af28def14c1
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName: arts/spines/characters/p0015.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0015/p0015.png b/Assets/arts/spines/characters/p0015/p0015.png
new file mode 100644
index 000000000..5337c3425
Binary files /dev/null and b/Assets/arts/spines/characters/p0015/p0015.png differ
diff --git a/Assets/arts/spines/characters/p0015/p0015.png.meta b/Assets/arts/spines/characters/p0015/p0015.png.meta
new file mode 100644
index 000000000..5aa8f1f04
--- /dev/null
+++ b/Assets/arts/spines/characters/p0015/p0015.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 33e92ff85525d2548b0c63daa6e17e3d
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 0
+ wrapV: 0
+ wrapW: 0
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 1
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 1
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/spines/characters/p0015.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0015/p0015.skel.bytes b/Assets/arts/spines/characters/p0015/p0015.skel.bytes
new file mode 100644
index 000000000..3f9d653c7
Binary files /dev/null and b/Assets/arts/spines/characters/p0015/p0015.skel.bytes differ
diff --git a/Assets/arts/spines/characters/p0015/p0015.skel.bytes.meta b/Assets/arts/spines/characters/p0015/p0015.skel.bytes.meta
new file mode 100644
index 000000000..8ce0a9e34
--- /dev/null
+++ b/Assets/arts/spines/characters/p0015/p0015.skel.bytes.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: afe1525e4ab67ea4dab5bf095e60ea20
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName: arts/spines/characters/p0015.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0015/p0015_atlas.asset b/Assets/arts/spines/characters/p0015/p0015_atlas.asset
new file mode 100644
index 000000000..27f0b172c
--- /dev/null
+++ b/Assets/arts/spines/characters/p0015/p0015_atlas.asset
@@ -0,0 +1,17 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
+ m_Name: p0015_atlas
+ m_EditorClassIdentifier:
+ atlasFile: {fileID: 4900000, guid: c4df51f590939334ba549af28def14c1, type: 3}
+ materials:
+ - {fileID: 2100000, guid: f9d27ececeb151b45b3d5d45c421e918, type: 2}
diff --git a/Assets/arts/spines/characters/p0015/p0015_atlas.asset.meta b/Assets/arts/spines/characters/p0015/p0015_atlas.asset.meta
new file mode 100644
index 000000000..b73c37f7f
--- /dev/null
+++ b/Assets/arts/spines/characters/p0015/p0015_atlas.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: f0eace32ca1bb354f87cbe521c100ec6
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/p0015.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0015/p0015_material.mat b/Assets/arts/spines/characters/p0015/p0015_material.mat
new file mode 100644
index 000000000..40934b558
--- /dev/null
+++ b/Assets/arts/spines/characters/p0015/p0015_material.mat
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: p0015_material
+ m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
+ m_ShaderKeywords: _STRAIGHT_ALPHA_INPUT _USE8NEIGHBOURHOOD_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 33e92ff85525d2548b0c63daa6e17e3d, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _Cutoff: 0.1
+ - _OutlineMipLevel: 0
+ - _OutlineOpaqueAlpha: 1
+ - _OutlineReferenceTexWidth: 1024
+ - _OutlineSmoothness: 1
+ - _OutlineWidth: 3
+ - _StencilComp: 8
+ - _StencilRef: 1
+ - _StraightAlphaInput: 1
+ - _ThresholdEnd: 0.25
+ - _Use8Neighbourhood: 1
+ m_Colors:
+ - _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
+ m_BuildTextureStacks: []
diff --git a/Assets/arts/spines/characters/p0015/p0015_material.mat.meta b/Assets/arts/spines/characters/p0015/p0015_material.mat.meta
new file mode 100644
index 000000000..77c67b9b2
--- /dev/null
+++ b/Assets/arts/spines/characters/p0015/p0015_material.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: f9d27ececeb151b45b3d5d45c421e918
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName: arts/spines/characters/p0015.ab
+ assetBundleVariant:
diff --git a/Assets/arts/spines/characters/p0015/p0015_skeletondata.asset b/Assets/arts/spines/characters/p0015/p0015_skeletondata.asset
new file mode 100644
index 000000000..59ea105e0
--- /dev/null
+++ b/Assets/arts/spines/characters/p0015/p0015_skeletondata.asset
@@ -0,0 +1,31 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
+ m_Name: p0015_skeletondata
+ m_EditorClassIdentifier:
+ atlasAssets:
+ - {fileID: 11400000, guid: f0eace32ca1bb354f87cbe521c100ec6, type: 2}
+ scale: 0.01
+ skeletonJSON: {fileID: 4900000, guid: afe1525e4ab67ea4dab5bf095e60ea20, type: 3}
+ isUpgradingBlendModeMaterials: 0
+ blendModeMaterials:
+ requiresBlendModeMaterials: 0
+ applyAdditiveMaterial: 0
+ additiveMaterials: []
+ multiplyMaterials: []
+ screenMaterials: []
+ skeletonDataModifiers: []
+ fromAnimation: []
+ toAnimation: []
+ duration: []
+ defaultMix: 0.2
+ controller: {fileID: 0}
diff --git a/Assets/arts/spines/characters/p0015/p0015_skeletondata.asset.meta b/Assets/arts/spines/characters/p0015/p0015_skeletondata.asset.meta
new file mode 100644
index 000000000..2f8c46a7a
--- /dev/null
+++ b/Assets/arts/spines/characters/p0015/p0015_skeletondata.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 5917d2319781f414e90692a3578a530b
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName: arts/spines/characters/p0015.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/background/battle/battle_dec_3.png b/Assets/arts/textures/background/battle/battle_dec_3.png
new file mode 100644
index 000000000..5c62572d1
Binary files /dev/null and b/Assets/arts/textures/background/battle/battle_dec_3.png differ
diff --git a/Assets/arts/textures/background/battle/battle_dec_3.png.meta b/Assets/arts/textures/background/battle/battle_dec_3.png.meta
new file mode 100644
index 000000000..04b813f3c
--- /dev/null
+++ b/Assets/arts/textures/background/battle/battle_dec_3.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 1f2d1b54ca1794340be1a05a3fdde6ef
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 0
+ wrapV: 0
+ wrapW: 0
+ nPOTScale: 1
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 0
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/background/battle/battle_dec_3.png.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/background/battle/battle_dec_4.png b/Assets/arts/textures/background/battle/battle_dec_4.png
new file mode 100644
index 000000000..6fc4547b8
Binary files /dev/null and b/Assets/arts/textures/background/battle/battle_dec_4.png differ
diff --git a/Assets/arts/textures/background/battle/battle_dec_4.png.meta b/Assets/arts/textures/background/battle/battle_dec_4.png.meta
new file mode 100644
index 000000000..16284c08a
--- /dev/null
+++ b/Assets/arts/textures/background/battle/battle_dec_4.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: ea6955597bae6754dbe27f667856b051
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 0
+ wrapV: 0
+ wrapW: 0
+ nPOTScale: 1
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 0
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/background/battle/battle_dec_4.png.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/background/battle/battle_dec_5.png b/Assets/arts/textures/background/battle/battle_dec_5.png
new file mode 100644
index 000000000..b1fde11fa
Binary files /dev/null and b/Assets/arts/textures/background/battle/battle_dec_5.png differ
diff --git a/Assets/arts/textures/background/battle/battle_dec_5.png.meta b/Assets/arts/textures/background/battle/battle_dec_5.png.meta
new file mode 100644
index 000000000..df94e131d
--- /dev/null
+++ b/Assets/arts/textures/background/battle/battle_dec_5.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 2f8a901db11932d489e8e30cfde8727c
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 0
+ wrapV: 0
+ wrapW: 0
+ nPOTScale: 1
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 0
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/background/battle/battle_dec_5.png.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/background/battle/bg_1.png b/Assets/arts/textures/background/battle/bg_1.png
index e7aff3c4a..f8fadd4c7 100644
Binary files a/Assets/arts/textures/background/battle/bg_1.png and b/Assets/arts/textures/background/battle/bg_1.png differ
diff --git a/Assets/arts/textures/background/battle/bg_1.png.meta b/Assets/arts/textures/background/battle/bg_1.png.meta
index bbd34604e..fbeca0b35 100644
--- a/Assets/arts/textures/background/battle/bg_1.png.meta
+++ b/Assets/arts/textures/background/battle/bg_1.png.meta
@@ -79,7 +79,7 @@ TextureImporter:
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
- textureFormat: 45
+ textureFormat: 47
textureCompression: 0
compressionQuality: 50
crunchedCompression: 0
diff --git a/Assets/arts/textures/background/battle/bg_10.png b/Assets/arts/textures/background/battle/bg_10.png
new file mode 100644
index 000000000..da9495d3b
Binary files /dev/null and b/Assets/arts/textures/background/battle/bg_10.png differ
diff --git a/Assets/arts/textures/background/battle/bg_10.png.meta b/Assets/arts/textures/background/battle/bg_10.png.meta
new file mode 100644
index 000000000..d9e23980b
--- /dev/null
+++ b/Assets/arts/textures/background/battle/bg_10.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 52aec32c7c48bd24f877c3b1a8e34b33
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 0
+ wrapV: 0
+ wrapW: 0
+ nPOTScale: 1
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 0
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 45
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/background/battle/bg_11.png b/Assets/arts/textures/background/battle/bg_11.png
new file mode 100644
index 000000000..192dbc958
Binary files /dev/null and b/Assets/arts/textures/background/battle/bg_11.png differ
diff --git a/Assets/arts/textures/background/battle/bg_11.png.meta b/Assets/arts/textures/background/battle/bg_11.png.meta
new file mode 100644
index 000000000..19d96d477
--- /dev/null
+++ b/Assets/arts/textures/background/battle/bg_11.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 139cc1536383f8a4ca202e15504be365
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 0
+ wrapV: 0
+ wrapW: 0
+ nPOTScale: 1
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 0
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 45
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/background/battle/bg_12.png b/Assets/arts/textures/background/battle/bg_12.png
new file mode 100644
index 000000000..337b514cb
Binary files /dev/null and b/Assets/arts/textures/background/battle/bg_12.png differ
diff --git a/Assets/arts/textures/background/battle/bg_12.png.meta b/Assets/arts/textures/background/battle/bg_12.png.meta
new file mode 100644
index 000000000..7a1ed2c45
--- /dev/null
+++ b/Assets/arts/textures/background/battle/bg_12.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 5c90a6f71ad14994a9c0efd32540450f
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 0
+ wrapV: 0
+ wrapW: 0
+ nPOTScale: 1
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 0
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 45
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/background/battle/bg_13.png b/Assets/arts/textures/background/battle/bg_13.png
new file mode 100644
index 000000000..320d60b30
Binary files /dev/null and b/Assets/arts/textures/background/battle/bg_13.png differ
diff --git a/Assets/arts/textures/background/battle/bg_13.png.meta b/Assets/arts/textures/background/battle/bg_13.png.meta
new file mode 100644
index 000000000..f40f28371
--- /dev/null
+++ b/Assets/arts/textures/background/battle/bg_13.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 14315c8adfed04e41bd88f9fd4d28baa
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 0
+ wrapV: 0
+ wrapW: 0
+ nPOTScale: 1
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 0
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 45
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/background/battle/bg_14.png b/Assets/arts/textures/background/battle/bg_14.png
new file mode 100644
index 000000000..43155cd73
Binary files /dev/null and b/Assets/arts/textures/background/battle/bg_14.png differ
diff --git a/Assets/arts/textures/background/battle/bg_14.png.meta b/Assets/arts/textures/background/battle/bg_14.png.meta
new file mode 100644
index 000000000..35b863a3a
--- /dev/null
+++ b/Assets/arts/textures/background/battle/bg_14.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 237dbc20d08b4af4c802954cc4504cd5
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 0
+ wrapV: 0
+ wrapW: 0
+ nPOTScale: 1
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 0
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 45
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/background/battle/bg_15.png b/Assets/arts/textures/background/battle/bg_15.png
new file mode 100644
index 000000000..c4da50593
Binary files /dev/null and b/Assets/arts/textures/background/battle/bg_15.png differ
diff --git a/Assets/arts/textures/background/battle/bg_15.png.meta b/Assets/arts/textures/background/battle/bg_15.png.meta
new file mode 100644
index 000000000..e7bc101fa
--- /dev/null
+++ b/Assets/arts/textures/background/battle/bg_15.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 9423d7ba8229c8746a8ac5d6081047bf
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 0
+ wrapV: 0
+ wrapW: 0
+ nPOTScale: 1
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 0
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 45
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/background/battle/bg_16.png b/Assets/arts/textures/background/battle/bg_16.png
new file mode 100644
index 000000000..f9c181beb
Binary files /dev/null and b/Assets/arts/textures/background/battle/bg_16.png differ
diff --git a/Assets/arts/textures/background/battle/bg_16.png.meta b/Assets/arts/textures/background/battle/bg_16.png.meta
new file mode 100644
index 000000000..5595c6c5e
--- /dev/null
+++ b/Assets/arts/textures/background/battle/bg_16.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 30a0724cf752fe34d936af7998aa2bce
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 0
+ wrapV: 0
+ wrapW: 0
+ nPOTScale: 1
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 0
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/background/battle/bg_17.png b/Assets/arts/textures/background/battle/bg_17.png
new file mode 100644
index 000000000..3110cd089
Binary files /dev/null and b/Assets/arts/textures/background/battle/bg_17.png differ
diff --git a/Assets/arts/textures/background/battle/bg_17.png.meta b/Assets/arts/textures/background/battle/bg_17.png.meta
new file mode 100644
index 000000000..0c879cc29
--- /dev/null
+++ b/Assets/arts/textures/background/battle/bg_17.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: edeca31c3315e4944bd5a8c17fe1f4fa
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 0
+ wrapV: 0
+ wrapW: 0
+ nPOTScale: 1
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 0
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/background/battle/bg_18.png b/Assets/arts/textures/background/battle/bg_18.png
new file mode 100644
index 000000000..84fdc382a
Binary files /dev/null and b/Assets/arts/textures/background/battle/bg_18.png differ
diff --git a/Assets/arts/textures/background/battle/bg_18.png.meta b/Assets/arts/textures/background/battle/bg_18.png.meta
new file mode 100644
index 000000000..f80673e2c
--- /dev/null
+++ b/Assets/arts/textures/background/battle/bg_18.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: e62b5938bfbbb0d4281cbdbc538632dc
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 0
+ wrapV: 0
+ wrapW: 0
+ nPOTScale: 1
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 0
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/background/battle/bg_19.png b/Assets/arts/textures/background/battle/bg_19.png
new file mode 100644
index 000000000..dcf5c6237
Binary files /dev/null and b/Assets/arts/textures/background/battle/bg_19.png differ
diff --git a/Assets/arts/textures/background/battle/bg_19.png.meta b/Assets/arts/textures/background/battle/bg_19.png.meta
new file mode 100644
index 000000000..150413928
--- /dev/null
+++ b/Assets/arts/textures/background/battle/bg_19.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 379fa67f2ae20264ba3d2feb2dbf91ab
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 0
+ wrapV: 0
+ wrapW: 0
+ nPOTScale: 1
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 0
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/background/battle/bg_2.png b/Assets/arts/textures/background/battle/bg_2.png
index b0496bc28..b0501ae9f 100644
Binary files a/Assets/arts/textures/background/battle/bg_2.png and b/Assets/arts/textures/background/battle/bg_2.png differ
diff --git a/Assets/arts/textures/background/battle/bg_20.png b/Assets/arts/textures/background/battle/bg_20.png
new file mode 100644
index 000000000..3ecd4db7a
Binary files /dev/null and b/Assets/arts/textures/background/battle/bg_20.png differ
diff --git a/Assets/arts/textures/background/battle/bg_20.png.meta b/Assets/arts/textures/background/battle/bg_20.png.meta
new file mode 100644
index 000000000..236a720be
--- /dev/null
+++ b/Assets/arts/textures/background/battle/bg_20.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: dfbc054bdd774ed46a33dd1f090c5fd7
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 0
+ wrapV: 0
+ wrapW: 0
+ nPOTScale: 1
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 0
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/background/battle/bg_3.png b/Assets/arts/textures/background/battle/bg_3.png
index e2b842255..4b6c55513 100644
Binary files a/Assets/arts/textures/background/battle/bg_3.png and b/Assets/arts/textures/background/battle/bg_3.png differ
diff --git a/Assets/arts/textures/background/battle/bg_3.png.meta b/Assets/arts/textures/background/battle/bg_3.png.meta
index 03b3e927e..f319a35d3 100644
--- a/Assets/arts/textures/background/battle/bg_3.png.meta
+++ b/Assets/arts/textures/background/battle/bg_3.png.meta
@@ -79,7 +79,7 @@ TextureImporter:
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
- textureFormat: 45
+ textureFormat: 47
textureCompression: 0
compressionQuality: 50
crunchedCompression: 0
diff --git a/Assets/arts/textures/background/battle/bg_4.png b/Assets/arts/textures/background/battle/bg_4.png
index 463c1949b..49f9abb35 100644
Binary files a/Assets/arts/textures/background/battle/bg_4.png and b/Assets/arts/textures/background/battle/bg_4.png differ
diff --git a/Assets/arts/textures/background/battle/bg_5.png b/Assets/arts/textures/background/battle/bg_5.png
index ad26ee387..3cefd806b 100644
Binary files a/Assets/arts/textures/background/battle/bg_5.png and b/Assets/arts/textures/background/battle/bg_5.png differ
diff --git a/Assets/arts/textures/background/battle/bg_6.png b/Assets/arts/textures/background/battle/bg_6.png
index 1c4706160..9530350f0 100644
Binary files a/Assets/arts/textures/background/battle/bg_6.png and b/Assets/arts/textures/background/battle/bg_6.png differ
diff --git a/Assets/arts/textures/background/battle/bg_6.png.meta b/Assets/arts/textures/background/battle/bg_6.png.meta
index 3a97488d4..1525d94eb 100644
--- a/Assets/arts/textures/background/battle/bg_6.png.meta
+++ b/Assets/arts/textures/background/battle/bg_6.png.meta
@@ -79,7 +79,7 @@ TextureImporter:
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
- textureFormat: 45
+ textureFormat: 47
textureCompression: 0
compressionQuality: 50
crunchedCompression: 0
diff --git a/Assets/arts/textures/background/battle/bg_7.png b/Assets/arts/textures/background/battle/bg_7.png
index 821e1b523..320140a2b 100644
Binary files a/Assets/arts/textures/background/battle/bg_7.png and b/Assets/arts/textures/background/battle/bg_7.png differ
diff --git a/Assets/arts/textures/background/battle/bg_7.png.meta b/Assets/arts/textures/background/battle/bg_7.png.meta
index c13c79503..a0795287e 100644
--- a/Assets/arts/textures/background/battle/bg_7.png.meta
+++ b/Assets/arts/textures/background/battle/bg_7.png.meta
@@ -79,7 +79,7 @@ TextureImporter:
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
- textureFormat: 45
+ textureFormat: 47
textureCompression: 0
compressionQuality: 50
crunchedCompression: 0
diff --git a/Assets/arts/textures/background/battle/bg_8.png b/Assets/arts/textures/background/battle/bg_8.png
new file mode 100644
index 000000000..c29b08627
Binary files /dev/null and b/Assets/arts/textures/background/battle/bg_8.png differ
diff --git a/Assets/arts/textures/background/battle/bg_8.png.meta b/Assets/arts/textures/background/battle/bg_8.png.meta
new file mode 100644
index 000000000..97dfb984f
--- /dev/null
+++ b/Assets/arts/textures/background/battle/bg_8.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 467e0988ecd80994dbc7bbc13befd4af
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 0
+ wrapV: 0
+ wrapW: 0
+ nPOTScale: 1
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 0
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/background/battle/bg_9.png b/Assets/arts/textures/background/battle/bg_9.png
new file mode 100644
index 000000000..3dcedd4a7
Binary files /dev/null and b/Assets/arts/textures/background/battle/bg_9.png differ
diff --git a/Assets/arts/textures/background/battle/bg_9.png.meta b/Assets/arts/textures/background/battle/bg_9.png.meta
new file mode 100644
index 000000000..566740df1
--- /dev/null
+++ b/Assets/arts/textures/background/battle/bg_9.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 47f4c7cccb9f9d84185ae09d8c84a1df
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 0
+ wrapV: 0
+ wrapW: 0
+ nPOTScale: 1
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 0
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/background/bounty.meta b/Assets/arts/textures/background/bounty.meta
new file mode 100644
index 000000000..b4c5a6fa7
--- /dev/null
+++ b/Assets/arts/textures/background/bounty.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 29e887f8caaf27c4796d0ddb3092cb0c
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/background/bounty/bounty_banner_1.png b/Assets/arts/textures/background/bounty/bounty_banner_1.png
new file mode 100644
index 000000000..8aa5b4b65
Binary files /dev/null and b/Assets/arts/textures/background/bounty/bounty_banner_1.png differ
diff --git a/Assets/arts/textures/background/bounty/bounty_banner_1.png.meta b/Assets/arts/textures/background/bounty/bounty_banner_1.png.meta
new file mode 100644
index 000000000..4d88ac8c5
--- /dev/null
+++ b/Assets/arts/textures/background/bounty/bounty_banner_1.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 86e4d3bfc313bba4b9468f0362377a0d
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 1
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 0
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 45
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/background/bounty/bounty_banner_1.png.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/background/bounty/bounty_bg_1.png b/Assets/arts/textures/background/bounty/bounty_bg_1.png
new file mode 100644
index 000000000..6f48399f7
Binary files /dev/null and b/Assets/arts/textures/background/bounty/bounty_bg_1.png differ
diff --git a/Assets/arts/textures/background/bounty/bounty_bg_1.png.meta b/Assets/arts/textures/background/bounty/bounty_bg_1.png.meta
new file mode 100644
index 000000000..2f99188b7
--- /dev/null
+++ b/Assets/arts/textures/background/bounty/bounty_bg_1.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: b4ff16df14f3dbe4b9a0840cb9c65a8f
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 1
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 0
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 45
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/background/bounty/bounty_bg_1.png.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/background/bounty/bounty_bg_2.png b/Assets/arts/textures/background/bounty/bounty_bg_2.png
new file mode 100644
index 000000000..f92da4b48
Binary files /dev/null and b/Assets/arts/textures/background/bounty/bounty_bg_2.png differ
diff --git a/Assets/arts/textures/background/bounty/bounty_bg_2.png.meta b/Assets/arts/textures/background/bounty/bounty_bg_2.png.meta
new file mode 100644
index 000000000..c31585823
--- /dev/null
+++ b/Assets/arts/textures/background/bounty/bounty_bg_2.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 2e50bd497c382504ca365bf92e6e9432
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 1
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 0
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/background/bounty/bounty_bg_2.png.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/background/bounty/bounty_bg_3.png b/Assets/arts/textures/background/bounty/bounty_bg_3.png
new file mode 100644
index 000000000..7b06c6776
Binary files /dev/null and b/Assets/arts/textures/background/bounty/bounty_bg_3.png differ
diff --git a/Assets/arts/textures/background/bounty/bounty_bg_3.png.meta b/Assets/arts/textures/background/bounty/bounty_bg_3.png.meta
new file mode 100644
index 000000000..7000f5b15
--- /dev/null
+++ b/Assets/arts/textures/background/bounty/bounty_bg_3.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: a4dce1fd5438e974ba9b2aa3db7106fc
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 1
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 0
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 45
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/background/bounty/bounty_bg_3.png.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/background/bounty/bounty_bg_4.png b/Assets/arts/textures/background/bounty/bounty_bg_4.png
new file mode 100644
index 000000000..66970fc2f
Binary files /dev/null and b/Assets/arts/textures/background/bounty/bounty_bg_4.png differ
diff --git a/Assets/arts/textures/ui/bounty/bounty_bg_4.png.meta b/Assets/arts/textures/background/bounty/bounty_bg_4.png.meta
similarity index 83%
rename from Assets/arts/textures/ui/bounty/bounty_bg_4.png.meta
rename to Assets/arts/textures/background/bounty/bounty_bg_4.png.meta
index ef2052c7a..b0b7b622f 100644
--- a/Assets/arts/textures/ui/bounty/bounty_bg_4.png.meta
+++ b/Assets/arts/textures/background/bounty/bounty_bg_4.png.meta
@@ -1,5 +1,5 @@
fileFormatVersion: 2
-guid: 629d2799050b92948993cd0c8e54d7a3
+guid: 08f86ce447e23f44ea24aa43e7b1ad26
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
@@ -38,10 +38,10 @@ TextureImporter:
wrapU: 1
wrapV: 1
wrapW: 1
- nPOTScale: 0
+ nPOTScale: 1
lightmap: 0
compressionQuality: 50
- spriteMode: 1
+ spriteMode: 0
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
@@ -50,9 +50,9 @@ TextureImporter:
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
- alphaIsTransparency: 1
+ alphaIsTransparency: 0
spriteTessellationDetail: -1
- textureType: 8
+ textureType: 0
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
@@ -99,25 +99,13 @@ TextureImporter:
overridden: 1
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
- spriteID: 5e97eb03825dee720800000000000000
+ spriteID:
internalID: 0
vertices: []
indices:
@@ -128,5 +116,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName: arts/textures/ui/bounty.ab
+ assetBundleName: arts/textures/background/bounty/bounty_bg_4.png.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/background/bounty/bounty_bg_5.png b/Assets/arts/textures/background/bounty/bounty_bg_5.png
new file mode 100644
index 000000000..8d0eabcba
Binary files /dev/null and b/Assets/arts/textures/background/bounty/bounty_bg_5.png differ
diff --git a/Assets/arts/textures/background/bounty/bounty_bg_5.png.meta b/Assets/arts/textures/background/bounty/bounty_bg_5.png.meta
new file mode 100644
index 000000000..a450380d1
--- /dev/null
+++ b/Assets/arts/textures/background/bounty/bounty_bg_5.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 4061ff4a867afdf48bf8e6abf36bfda6
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 1
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 0
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/background/bounty/bounty_bg_5.png.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/background/fund.meta b/Assets/arts/textures/background/fund.meta
new file mode 100644
index 000000000..15ed5fbbf
--- /dev/null
+++ b/Assets/arts/textures/background/fund.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 27d5a4153893fce4ca49f9a0170996d3
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/background/fund/fund_bg_1.png b/Assets/arts/textures/background/fund/fund_bg_1.png
new file mode 100644
index 000000000..afa6fd360
Binary files /dev/null and b/Assets/arts/textures/background/fund/fund_bg_1.png differ
diff --git a/Assets/arts/textures/background/fund/fund_bg_1.png.meta b/Assets/arts/textures/background/fund/fund_bg_1.png.meta
new file mode 100644
index 000000000..75017dd54
--- /dev/null
+++ b/Assets/arts/textures/background/fund/fund_bg_1.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: 8a708ed93f684cf42b80bf2cc957c18f
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 1
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 0
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 45
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/background/fund/fund_bg_2.png b/Assets/arts/textures/background/fund/fund_bg_2.png
new file mode 100644
index 000000000..afa6fd360
Binary files /dev/null and b/Assets/arts/textures/background/fund/fund_bg_2.png differ
diff --git a/Assets/arts/textures/background/fund/fund_bg_2.png.meta b/Assets/arts/textures/background/fund/fund_bg_2.png.meta
new file mode 100644
index 000000000..16996dd98
--- /dev/null
+++ b/Assets/arts/textures/background/fund/fund_bg_2.png.meta
@@ -0,0 +1,120 @@
+fileFormatVersion: 2
+guid: ea31433802ba97c488b2e319fb6480d0
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 1
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 0
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 45
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/background/fund/fund_bg_3.png b/Assets/arts/textures/background/fund/fund_bg_3.png
new file mode 100644
index 000000000..7629e88bf
Binary files /dev/null and b/Assets/arts/textures/background/fund/fund_bg_3.png differ
diff --git a/Assets/arts/textures/background/fund/fund_bg_3.png.meta b/Assets/arts/textures/background/fund/fund_bg_3.png.meta
new file mode 100644
index 000000000..7064e83b6
--- /dev/null
+++ b/Assets/arts/textures/background/fund/fund_bg_3.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 28bf04b5c7acf0a46986272ce55515d9
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 1
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 45
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/background/idle.meta b/Assets/arts/textures/background/idle.meta
new file mode 100644
index 000000000..eaab75a1f
--- /dev/null
+++ b/Assets/arts/textures/background/idle.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: e4f370b2449c05f4f8ce2d720b4f82cb
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/background/idle/idle_bg_1.png b/Assets/arts/textures/background/idle/idle_bg_1.png
new file mode 100644
index 000000000..7c5c1bdea
Binary files /dev/null and b/Assets/arts/textures/background/idle/idle_bg_1.png differ
diff --git a/Assets/arts/textures/background/idle/idle_bg_1.png.meta b/Assets/arts/textures/background/idle/idle_bg_1.png.meta
new file mode 100644
index 000000000..c4c3037d4
--- /dev/null
+++ b/Assets/arts/textures/background/idle/idle_bg_1.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 2b070194b62cd044c8a5fa3352254800
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 1
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/background/idle/idle_bg_1.png.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/background/shop/shop_bg_1.png.meta b/Assets/arts/textures/background/shop/shop_bg_1.png.meta
index 228766e0e..9d16efa08 100644
--- a/Assets/arts/textures/background/shop/shop_bg_1.png.meta
+++ b/Assets/arts/textures/background/shop/shop_bg_1.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/background/shop/shop_bg_1.png.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/background/shop/shop_bg_2.png.meta b/Assets/arts/textures/background/shop/shop_bg_2.png.meta
index 78e9a240f..6af15339f 100644
--- a/Assets/arts/textures/background/shop/shop_bg_2.png.meta
+++ b/Assets/arts/textures/background/shop/shop_bg_2.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/background/shop/shop_bg_2.png.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/background/shop/shop_bg_3.png.meta b/Assets/arts/textures/background/shop/shop_bg_3.png.meta
index 8196bc2da..f30d8afaa 100644
--- a/Assets/arts/textures/background/shop/shop_bg_3.png.meta
+++ b/Assets/arts/textures/background/shop/shop_bg_3.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/background/shop/shop_bg_3.png.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/background/shop/shop_bg_4.png.meta b/Assets/arts/textures/background/shop/shop_bg_4.png.meta
index e47ced7bd..6577bc2c9 100644
--- a/Assets/arts/textures/background/shop/shop_bg_4.png.meta
+++ b/Assets/arts/textures/background/shop/shop_bg_4.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/background/shop/shop_bg_4.png.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/background/shop/shop_bg_5.png.meta b/Assets/arts/textures/background/shop/shop_bg_5.png.meta
index eabf53fc5..a7a12fbe3 100644
--- a/Assets/arts/textures/background/shop/shop_bg_5.png.meta
+++ b/Assets/arts/textures/background/shop/shop_bg_5.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/background/shop/shop_bg_5.png.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/background/shop/shop_bg_6.png.meta b/Assets/arts/textures/background/shop/shop_bg_6.png.meta
index 78f4e5ff5..13dcfd932 100644
--- a/Assets/arts/textures/background/shop/shop_bg_6.png.meta
+++ b/Assets/arts/textures/background/shop/shop_bg_6.png.meta
@@ -116,5 +116,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/background/shop/shop_bg_6.png.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/background/shop/shop_bg_7.png.meta b/Assets/arts/textures/background/shop/shop_bg_7.png.meta
index 5d794a269..c38706438 100644
--- a/Assets/arts/textures/background/shop/shop_bg_7.png.meta
+++ b/Assets/arts/textures/background/shop/shop_bg_7.png.meta
@@ -116,5 +116,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/background/shop/shop_bg_7.png.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/background/shop/shop_bg_8.png.meta b/Assets/arts/textures/background/shop/shop_bg_8.png.meta
index 049228396..97595145a 100644
--- a/Assets/arts/textures/background/shop/shop_bg_8.png.meta
+++ b/Assets/arts/textures/background/shop/shop_bg_8.png.meta
@@ -116,5 +116,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/background/shop/shop_bg_8.png.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/background/shop/shop_bg_pig.png b/Assets/arts/textures/background/shop/shop_bg_pig.png
new file mode 100644
index 000000000..c003778e3
Binary files /dev/null and b/Assets/arts/textures/background/shop/shop_bg_pig.png differ
diff --git a/Assets/arts/textures/background/shop/shop_bg_pig.png.meta b/Assets/arts/textures/background/shop/shop_bg_pig.png.meta
new file mode 100644
index 000000000..2ddeca2af
--- /dev/null
+++ b/Assets/arts/textures/background/shop/shop_bg_pig.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 74997a58ff9b7fc498a69ebe23bb6e08
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 1
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/background/shop/shop_gift_banner_1.png.meta b/Assets/arts/textures/background/shop/shop_gift_banner_1.png.meta
index 716370ef1..379d95d90 100644
--- a/Assets/arts/textures/background/shop/shop_gift_banner_1.png.meta
+++ b/Assets/arts/textures/background/shop/shop_gift_banner_1.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/background/shop/shop_gift_banner_1.png.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/background/shop/shop_gift_banner_1_1.png.meta b/Assets/arts/textures/background/shop/shop_gift_banner_1_1.png.meta
index c1c518401..b749b4da7 100644
--- a/Assets/arts/textures/background/shop/shop_gift_banner_1_1.png.meta
+++ b/Assets/arts/textures/background/shop/shop_gift_banner_1_1.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/background/shop/shop_gift_banner_1_1.png.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/background/shop/shop_gift_banner_2.png.meta b/Assets/arts/textures/background/shop/shop_gift_banner_2.png.meta
index ce4020395..0ee59c717 100644
--- a/Assets/arts/textures/background/shop/shop_gift_banner_2.png.meta
+++ b/Assets/arts/textures/background/shop/shop_gift_banner_2.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/background/shop/shop_gift_banner_2.png.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/background/shop/shop_gift_banner_2_1.png.meta b/Assets/arts/textures/background/shop/shop_gift_banner_2_1.png.meta
index 607305d45..c4e253cdf 100644
--- a/Assets/arts/textures/background/shop/shop_gift_banner_2_1.png.meta
+++ b/Assets/arts/textures/background/shop/shop_gift_banner_2_1.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/background/shop/shop_gift_banner_2_1.png.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/background/shop/shop_gift_banner_3.png.meta b/Assets/arts/textures/background/shop/shop_gift_banner_3.png.meta
index b7eeecf54..400a9ab7f 100644
--- a/Assets/arts/textures/background/shop/shop_gift_banner_3.png.meta
+++ b/Assets/arts/textures/background/shop/shop_gift_banner_3.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/background/shop/shop_gift_banner_3.png.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/background/shop/shop_gift_banner_3_1.png.meta b/Assets/arts/textures/background/shop/shop_gift_banner_3_1.png.meta
index 1ace49d99..92a43d8b6 100644
--- a/Assets/arts/textures/background/shop/shop_gift_banner_3_1.png.meta
+++ b/Assets/arts/textures/background/shop/shop_gift_banner_3_1.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/background/shop/shop_gift_banner_3_1.png.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/background/shop/shop_gift_banner_4.png.meta b/Assets/arts/textures/background/shop/shop_gift_banner_4.png.meta
index ecfa6dad9..81d509f04 100644
--- a/Assets/arts/textures/background/shop/shop_gift_banner_4.png.meta
+++ b/Assets/arts/textures/background/shop/shop_gift_banner_4.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/background/shop/shop_gift_banner_4.png.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/background/shop/shop_gift_banner_4_1.png.meta b/Assets/arts/textures/background/shop/shop_gift_banner_4_1.png.meta
index 8cd6903f4..de9ad1922 100644
--- a/Assets/arts/textures/background/shop/shop_gift_banner_4_1.png.meta
+++ b/Assets/arts/textures/background/shop/shop_gift_banner_4_1.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/background/shop/shop_gift_banner_4_1.png.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/background/shop/shop_gift_banner_5.png.meta b/Assets/arts/textures/background/shop/shop_gift_banner_5.png.meta
index ecb6d2be0..5ffbed3f5 100644
--- a/Assets/arts/textures/background/shop/shop_gift_banner_5.png.meta
+++ b/Assets/arts/textures/background/shop/shop_gift_banner_5.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/background/shop/shop_gift_banner_5.png.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/background/shop/shop_gift_banner_5_1.png.meta b/Assets/arts/textures/background/shop/shop_gift_banner_5_1.png.meta
index c1a9ccaef..d8644d4f9 100644
--- a/Assets/arts/textures/background/shop/shop_gift_banner_5_1.png.meta
+++ b/Assets/arts/textures/background/shop/shop_gift_banner_5_1.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/background/shop/shop_gift_banner_5_1.png.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/background/shop/shop_gift_banner_6.png.meta b/Assets/arts/textures/background/shop/shop_gift_banner_6.png.meta
index 5829469b6..4f9bbfacf 100644
--- a/Assets/arts/textures/background/shop/shop_gift_banner_6.png.meta
+++ b/Assets/arts/textures/background/shop/shop_gift_banner_6.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/background/shop/shop_gift_banner_6.png.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/background/shop/shop_gift_banner_6_1.png.meta b/Assets/arts/textures/background/shop/shop_gift_banner_6_1.png.meta
index 36fd5dbf7..8661a69be 100644
--- a/Assets/arts/textures/background/shop/shop_gift_banner_6_1.png.meta
+++ b/Assets/arts/textures/background/shop/shop_gift_banner_6_1.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/background/shop/shop_gift_banner_6_1.png.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/background/shop/shop_gift_bg_1.png.meta b/Assets/arts/textures/background/shop/shop_gift_bg_1.png.meta
index 7994a7578..e66a8a83a 100644
--- a/Assets/arts/textures/background/shop/shop_gift_bg_1.png.meta
+++ b/Assets/arts/textures/background/shop/shop_gift_bg_1.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/background/shop/shop_gift_bg_1.png.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/icon/item/12.png b/Assets/arts/textures/icon/item/12.png
new file mode 100644
index 000000000..6a3546790
Binary files /dev/null and b/Assets/arts/textures/icon/item/12.png differ
diff --git a/Assets/arts/textures/icon/item/12.png.meta b/Assets/arts/textures/icon/item/12.png.meta
new file mode 100644
index 000000000..fc52eee0e
--- /dev/null
+++ b/Assets/arts/textures/icon/item/12.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: c4cb736ccf6b8be4d9846836cade4735
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/icon/item.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/icon/item/2.png.meta b/Assets/arts/textures/icon/item/2.png.meta
index f4bcc132b..58ee5e670 100644
--- a/Assets/arts/textures/icon/item/2.png.meta
+++ b/Assets/arts/textures/icon/item/2.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/icon/item.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/icon/item/6.png.meta b/Assets/arts/textures/icon/item/6.png.meta
index 2604137d9..91418b16d 100644
--- a/Assets/arts/textures/icon/item/6.png.meta
+++ b/Assets/arts/textures/icon/item/6.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/icon/item.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/icon/item/7.png.meta b/Assets/arts/textures/icon/item/7.png.meta
index 9fcefe67c..a782752d7 100644
--- a/Assets/arts/textures/icon/item/7.png.meta
+++ b/Assets/arts/textures/icon/item/7.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/icon/item.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/icon/task/1.png.meta b/Assets/arts/textures/icon/task/1.png.meta
index 277c8652b..1e7371c37 100644
--- a/Assets/arts/textures/icon/task/1.png.meta
+++ b/Assets/arts/textures/icon/task/1.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/icon/task.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/icon/task/10.png.meta b/Assets/arts/textures/icon/task/10.png.meta
index 1a0a406bd..792dbd519 100644
--- a/Assets/arts/textures/icon/task/10.png.meta
+++ b/Assets/arts/textures/icon/task/10.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/icon/task.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/icon/task/2.png.meta b/Assets/arts/textures/icon/task/2.png.meta
index bfedc8db2..ccde92686 100644
--- a/Assets/arts/textures/icon/task/2.png.meta
+++ b/Assets/arts/textures/icon/task/2.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/icon/task.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/icon/task/3.png.meta b/Assets/arts/textures/icon/task/3.png.meta
index 8d08c8fbc..b6efe98f6 100644
--- a/Assets/arts/textures/icon/task/3.png.meta
+++ b/Assets/arts/textures/icon/task/3.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/icon/task.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/icon/task/4.png.meta b/Assets/arts/textures/icon/task/4.png.meta
index 7be2edcb3..5c90fa5c4 100644
--- a/Assets/arts/textures/icon/task/4.png.meta
+++ b/Assets/arts/textures/icon/task/4.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/icon/task.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/icon/task/5.png.meta b/Assets/arts/textures/icon/task/5.png.meta
index c6cc0c1e6..f383b2b69 100644
--- a/Assets/arts/textures/icon/task/5.png.meta
+++ b/Assets/arts/textures/icon/task/5.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/icon/task.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/icon/task/6.png.meta b/Assets/arts/textures/icon/task/6.png.meta
index 4d55f302a..8215faa8e 100644
--- a/Assets/arts/textures/icon/task/6.png.meta
+++ b/Assets/arts/textures/icon/task/6.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/icon/task.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/icon/task/7.png.meta b/Assets/arts/textures/icon/task/7.png.meta
index 3d8bfb12d..f8b4153f9 100644
--- a/Assets/arts/textures/icon/task/7.png.meta
+++ b/Assets/arts/textures/icon/task/7.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/icon/task.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/icon/task/8.png.meta b/Assets/arts/textures/icon/task/8.png.meta
index 1ed2a21cd..9b2c1e784 100644
--- a/Assets/arts/textures/icon/task/8.png.meta
+++ b/Assets/arts/textures/icon/task/8.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/icon/task.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/icon/task/9.png.meta b/Assets/arts/textures/icon/task/9.png.meta
index 6bd5257a2..dd4c71b4b 100644
--- a/Assets/arts/textures/icon/task/9.png.meta
+++ b/Assets/arts/textures/icon/task/9.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/icon/task.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/battle/battle_bg_3.png b/Assets/arts/textures/ui/battle/battle_bg_3.png
new file mode 100644
index 000000000..3c1707ba5
Binary files /dev/null and b/Assets/arts/textures/ui/battle/battle_bg_3.png differ
diff --git a/Assets/arts/textures/ui/battle/battle_bg_3.png.meta b/Assets/arts/textures/ui/battle/battle_bg_3.png.meta
new file mode 100644
index 000000000..c815c80dd
--- /dev/null
+++ b/Assets/arts/textures/ui/battle/battle_bg_3.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 36e2163b4404615408f9bb0bead26217
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/battle/battle_chest_1.png b/Assets/arts/textures/ui/battle/battle_chest_1.png
new file mode 100644
index 000000000..143217c08
Binary files /dev/null and b/Assets/arts/textures/ui/battle/battle_chest_1.png differ
diff --git a/Assets/arts/textures/ui/battle/battle_chest_1.png.meta b/Assets/arts/textures/ui/battle/battle_chest_1.png.meta
new file mode 100644
index 000000000..8a8dee8b2
--- /dev/null
+++ b/Assets/arts/textures/ui/battle/battle_chest_1.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 5aee1f758e4facd4591114d2156b6bfa
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/battle.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/battle/battle_chest_2.png b/Assets/arts/textures/ui/battle/battle_chest_2.png
new file mode 100644
index 000000000..a78b7ffb6
Binary files /dev/null and b/Assets/arts/textures/ui/battle/battle_chest_2.png differ
diff --git a/Assets/arts/textures/ui/battle/battle_chest_2.png.meta b/Assets/arts/textures/ui/battle/battle_chest_2.png.meta
new file mode 100644
index 000000000..092b0c583
--- /dev/null
+++ b/Assets/arts/textures/ui/battle/battle_chest_2.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 3b491c50f91f0bd41862458a5c3a878f
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/battle.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/battle/battle_chest_3.png b/Assets/arts/textures/ui/battle/battle_chest_3.png
new file mode 100644
index 000000000..62de75c54
Binary files /dev/null and b/Assets/arts/textures/ui/battle/battle_chest_3.png differ
diff --git a/Assets/arts/textures/ui/battle/battle_chest_3.png.meta b/Assets/arts/textures/ui/battle/battle_chest_3.png.meta
new file mode 100644
index 000000000..ea5efb489
--- /dev/null
+++ b/Assets/arts/textures/ui/battle/battle_chest_3.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 79ab89b577d0b34439a5694e8b4d66c8
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/battle.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/battle/battle_chest_4.png b/Assets/arts/textures/ui/battle/battle_chest_4.png
new file mode 100644
index 000000000..faa8b9ad4
Binary files /dev/null and b/Assets/arts/textures/ui/battle/battle_chest_4.png differ
diff --git a/Assets/arts/textures/ui/battle/battle_chest_4.png.meta b/Assets/arts/textures/ui/battle/battle_chest_4.png.meta
new file mode 100644
index 000000000..f76adabca
--- /dev/null
+++ b/Assets/arts/textures/ui/battle/battle_chest_4.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 319d224bc95ce3a4e81c11c0f0f6266c
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/battle.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/battle/battle_dec_5.png b/Assets/arts/textures/ui/battle/battle_dec_5.png
new file mode 100644
index 000000000..9612d2d9b
Binary files /dev/null and b/Assets/arts/textures/ui/battle/battle_dec_5.png differ
diff --git a/Assets/arts/textures/ui/battle/battle_dec_5.png.meta b/Assets/arts/textures/ui/battle/battle_dec_5.png.meta
new file mode 100644
index 000000000..86d768a17
--- /dev/null
+++ b/Assets/arts/textures/ui/battle/battle_dec_5.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 7b1941eab1a2f1e4d898491b572be0d8
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/battle.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/battle/battle_dec_6.png b/Assets/arts/textures/ui/battle/battle_dec_6.png
new file mode 100644
index 000000000..0284de4ee
Binary files /dev/null and b/Assets/arts/textures/ui/battle/battle_dec_6.png differ
diff --git a/Assets/arts/textures/ui/battle/battle_dec_6.png.meta b/Assets/arts/textures/ui/battle/battle_dec_6.png.meta
new file mode 100644
index 000000000..d0346b4e2
--- /dev/null
+++ b/Assets/arts/textures/ui/battle/battle_dec_6.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 6c78b12198b78934fb18b95ef0ed9d73
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/battle.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/battle/battle_lamp.png b/Assets/arts/textures/ui/battle/battle_lamp.png
new file mode 100644
index 000000000..b12c4ee55
Binary files /dev/null and b/Assets/arts/textures/ui/battle/battle_lamp.png differ
diff --git a/Assets/arts/textures/ui/battle/battle_lamp.png.meta b/Assets/arts/textures/ui/battle/battle_lamp.png.meta
new file mode 100644
index 000000000..e44a63989
--- /dev/null
+++ b/Assets/arts/textures/ui/battle/battle_lamp.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: f125f1d792bebc84082b65fcf8bf7286
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/battle.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/battle/battle_pig.png b/Assets/arts/textures/ui/battle/battle_pig.png
new file mode 100644
index 000000000..fdcf45b8b
Binary files /dev/null and b/Assets/arts/textures/ui/battle/battle_pig.png differ
diff --git a/Assets/arts/textures/ui/battle/battle_pig.png.meta b/Assets/arts/textures/ui/battle/battle_pig.png.meta
new file mode 100644
index 000000000..f671d6e9a
--- /dev/null
+++ b/Assets/arts/textures/ui/battle/battle_pig.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: afcf9e53b76eef44dba33da9caa87fc3
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/battle.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/battle/jelly.png b/Assets/arts/textures/ui/battle/jelly.png
new file mode 100644
index 000000000..a31d51085
Binary files /dev/null and b/Assets/arts/textures/ui/battle/jelly.png differ
diff --git a/Assets/arts/textures/ui/battle/jelly.png.meta b/Assets/arts/textures/ui/battle/jelly.png.meta
new file mode 100644
index 000000000..2287415a0
--- /dev/null
+++ b/Assets/arts/textures/ui/battle/jelly.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 42dfc3a8f5eda504abbaad83525865f1
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/battle.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/battle/leaf.png b/Assets/arts/textures/ui/battle/leaf.png
new file mode 100644
index 000000000..d5a5bc0e9
Binary files /dev/null and b/Assets/arts/textures/ui/battle/leaf.png differ
diff --git a/Assets/arts/textures/ui/battle/leaf.png.meta b/Assets/arts/textures/ui/battle/leaf.png.meta
new file mode 100644
index 000000000..7c756445b
--- /dev/null
+++ b/Assets/arts/textures/ui/battle/leaf.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 6dbdc0ebfecc85b4fa92d9ba6daeff71
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/battle.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/battle/lock.png b/Assets/arts/textures/ui/battle/lock.png
new file mode 100644
index 000000000..71c17f2b5
Binary files /dev/null and b/Assets/arts/textures/ui/battle/lock.png differ
diff --git a/Assets/arts/textures/ui/battle/lock.png.meta b/Assets/arts/textures/ui/battle/lock.png.meta
new file mode 100644
index 000000000..e2b78a64b
--- /dev/null
+++ b/Assets/arts/textures/ui/battle/lock.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: b2f310782ddb4844b8cce60785415fa5
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/battle.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/battle/rocket_down.png b/Assets/arts/textures/ui/battle/rocket_down.png
new file mode 100644
index 000000000..9282083b8
Binary files /dev/null and b/Assets/arts/textures/ui/battle/rocket_down.png differ
diff --git a/Assets/arts/textures/ui/battle/rocket_down.png.meta b/Assets/arts/textures/ui/battle/rocket_down.png.meta
new file mode 100644
index 000000000..054adb785
--- /dev/null
+++ b/Assets/arts/textures/ui/battle/rocket_down.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 97b4e14627583bc4999dcbe5eec17a9e
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/battle.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/battle/rocket_left.png b/Assets/arts/textures/ui/battle/rocket_left.png
new file mode 100644
index 000000000..9ef6cc9e3
Binary files /dev/null and b/Assets/arts/textures/ui/battle/rocket_left.png differ
diff --git a/Assets/arts/textures/ui/battle/rocket_left.png.meta b/Assets/arts/textures/ui/battle/rocket_left.png.meta
new file mode 100644
index 000000000..4d22d1968
--- /dev/null
+++ b/Assets/arts/textures/ui/battle/rocket_left.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 87057dffa9a1a5845a920a694008eb48
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/battle.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/battle/rocket_right.png b/Assets/arts/textures/ui/battle/rocket_right.png
new file mode 100644
index 000000000..39e8399f7
Binary files /dev/null and b/Assets/arts/textures/ui/battle/rocket_right.png differ
diff --git a/Assets/arts/textures/ui/battle/rocket_right.png.meta b/Assets/arts/textures/ui/battle/rocket_right.png.meta
new file mode 100644
index 000000000..11e908bab
--- /dev/null
+++ b/Assets/arts/textures/ui/battle/rocket_right.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 9b9c2c350f044674099b0adef495d39d
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/battle.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/battle/rocket_up.png b/Assets/arts/textures/ui/battle/rocket_up.png
new file mode 100644
index 000000000..cd3ce3b35
Binary files /dev/null and b/Assets/arts/textures/ui/battle/rocket_up.png differ
diff --git a/Assets/arts/textures/ui/battle/rocket_up.png.meta b/Assets/arts/textures/ui/battle/rocket_up.png.meta
new file mode 100644
index 000000000..ee76f91c3
--- /dev/null
+++ b/Assets/arts/textures/ui/battle/rocket_up.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 8d4b8d154edf8074baae6ca59f21d3ff
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/battle.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/battle/stick_1.png b/Assets/arts/textures/ui/battle/stick_1.png
new file mode 100644
index 000000000..029af7f2b
Binary files /dev/null and b/Assets/arts/textures/ui/battle/stick_1.png differ
diff --git a/Assets/arts/textures/ui/battle/stick_1.png.meta b/Assets/arts/textures/ui/battle/stick_1.png.meta
new file mode 100644
index 000000000..9949b3cff
--- /dev/null
+++ b/Assets/arts/textures/ui/battle/stick_1.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 68ed38ec5bbdf4d41a1bb3ce8e0788b6
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/battle.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/battle/stick_2.png b/Assets/arts/textures/ui/battle/stick_2.png
new file mode 100644
index 000000000..c1f19a001
Binary files /dev/null and b/Assets/arts/textures/ui/battle/stick_2.png differ
diff --git a/Assets/arts/textures/ui/battle/stick_2.png.meta b/Assets/arts/textures/ui/battle/stick_2.png.meta
new file mode 100644
index 000000000..2d0df0ae7
--- /dev/null
+++ b/Assets/arts/textures/ui/battle/stick_2.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 2911e099b97c96e4cae408c5afcba617
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/battle.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/battle/stick_3.png b/Assets/arts/textures/ui/battle/stick_3.png
new file mode 100644
index 000000000..26acf457b
Binary files /dev/null and b/Assets/arts/textures/ui/battle/stick_3.png differ
diff --git a/Assets/arts/textures/ui/battle/stick_3.png.meta b/Assets/arts/textures/ui/battle/stick_3.png.meta
new file mode 100644
index 000000000..e07124e64
--- /dev/null
+++ b/Assets/arts/textures/ui/battle/stick_3.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 65b3e4d9836417646882f2b62892e2a7
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/battle.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/battle/stone_3.png b/Assets/arts/textures/ui/battle/stone_3.png
new file mode 100644
index 000000000..d85c706a5
Binary files /dev/null and b/Assets/arts/textures/ui/battle/stone_3.png differ
diff --git a/Assets/arts/textures/ui/battle/stone_3.png.meta b/Assets/arts/textures/ui/battle/stone_3.png.meta
new file mode 100644
index 000000000..1de215234
--- /dev/null
+++ b/Assets/arts/textures/ui/battle/stone_3.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: b3bd50f185f228e4dbaadba439fc9fd7
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/battle.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/bounty/bounty_bg_1.png b/Assets/arts/textures/ui/bounty/bounty_bg_1.png
new file mode 100644
index 000000000..cc4ec2229
Binary files /dev/null and b/Assets/arts/textures/ui/bounty/bounty_bg_1.png differ
diff --git a/Assets/arts/textures/ui/bounty/bounty_board_10.png.meta b/Assets/arts/textures/ui/bounty/bounty_bg_1.png.meta
similarity index 97%
rename from Assets/arts/textures/ui/bounty/bounty_board_10.png.meta
rename to Assets/arts/textures/ui/bounty/bounty_bg_1.png.meta
index 9e8b74f6b..ba6586948 100644
--- a/Assets/arts/textures/ui/bounty/bounty_board_10.png.meta
+++ b/Assets/arts/textures/ui/bounty/bounty_bg_1.png.meta
@@ -1,5 +1,5 @@
fileFormatVersion: 2
-guid: 36b420b3d94d1b8458db06272b49eab7
+guid: 38e2716343d274e4e936c8f1cd4f04cd
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
@@ -47,7 +47,7 @@ TextureImporter:
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
- spriteBorder: {x: 12, y: 12, z: 12, w: 12}
+ spriteBorder: {x: 24, y: 16, z: 24, w: 22}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
diff --git a/Assets/arts/textures/ui/bounty/bounty_bg_2.png b/Assets/arts/textures/ui/bounty/bounty_bg_2.png
new file mode 100644
index 000000000..7884dce3e
Binary files /dev/null and b/Assets/arts/textures/ui/bounty/bounty_bg_2.png differ
diff --git a/Assets/arts/textures/ui/bounty/bounty_bg_2.png.meta b/Assets/arts/textures/ui/bounty/bounty_bg_2.png.meta
new file mode 100644
index 000000000..a9938b86a
--- /dev/null
+++ b/Assets/arts/textures/ui/bounty/bounty_bg_2.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: cd61c99d1fb3ae740b3f5a7399d51969
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 212, y: 0, z: 28, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/bounty.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/bounty/bounty_bg_4.png b/Assets/arts/textures/ui/bounty/bounty_bg_4.png
deleted file mode 100644
index 0c0d582f7..000000000
Binary files a/Assets/arts/textures/ui/bounty/bounty_bg_4.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/bounty/bounty_bg_9.png b/Assets/arts/textures/ui/bounty/bounty_bg_9.png
deleted file mode 100644
index 2756e37b3..000000000
Binary files a/Assets/arts/textures/ui/bounty/bounty_bg_9.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/bounty/bounty_board_1.png b/Assets/arts/textures/ui/bounty/bounty_board_1.png
index aeb5f168f..3e8dfaa8e 100644
Binary files a/Assets/arts/textures/ui/bounty/bounty_board_1.png and b/Assets/arts/textures/ui/bounty/bounty_board_1.png differ
diff --git a/Assets/arts/textures/ui/bounty/bounty_board_1.png.meta b/Assets/arts/textures/ui/bounty/bounty_board_1.png.meta
index 2410f6e13..91735f435 100644
--- a/Assets/arts/textures/ui/bounty/bounty_board_1.png.meta
+++ b/Assets/arts/textures/ui/bounty/bounty_board_1.png.meta
@@ -47,7 +47,7 @@ TextureImporter:
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteBorder: {x: 31, y: 36, z: 31, w: 30}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
diff --git a/Assets/arts/textures/ui/bounty/bounty_board_10.png b/Assets/arts/textures/ui/bounty/bounty_board_10.png
deleted file mode 100644
index 243e7a7ab..000000000
Binary files a/Assets/arts/textures/ui/bounty/bounty_board_10.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/bounty/bounty_board_11.png b/Assets/arts/textures/ui/bounty/bounty_board_11.png
deleted file mode 100644
index c24647b01..000000000
Binary files a/Assets/arts/textures/ui/bounty/bounty_board_11.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/bounty/bounty_board_12.png b/Assets/arts/textures/ui/bounty/bounty_board_12.png
deleted file mode 100644
index 559221663..000000000
Binary files a/Assets/arts/textures/ui/bounty/bounty_board_12.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/bounty/bounty_board_2.png b/Assets/arts/textures/ui/bounty/bounty_board_2.png
index fbb0bc502..485430046 100644
Binary files a/Assets/arts/textures/ui/bounty/bounty_board_2.png and b/Assets/arts/textures/ui/bounty/bounty_board_2.png differ
diff --git a/Assets/arts/textures/ui/bounty/bounty_board_2.png.meta b/Assets/arts/textures/ui/bounty/bounty_board_2.png.meta
index aa4f191e0..afdeb22cb 100644
--- a/Assets/arts/textures/ui/bounty/bounty_board_2.png.meta
+++ b/Assets/arts/textures/ui/bounty/bounty_board_2.png.meta
@@ -47,7 +47,7 @@ TextureImporter:
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteBorder: {x: 31, y: 36, z: 31, w: 30}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
diff --git a/Assets/arts/textures/ui/bounty/bounty_board_20.png b/Assets/arts/textures/ui/bounty/bounty_board_20.png
deleted file mode 100644
index 0945ad0c0..000000000
Binary files a/Assets/arts/textures/ui/bounty/bounty_board_20.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/bounty/bounty_board_23.png b/Assets/arts/textures/ui/bounty/bounty_board_23.png
deleted file mode 100644
index 6eb452a9f..000000000
Binary files a/Assets/arts/textures/ui/bounty/bounty_board_23.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/bounty/bounty_board_23.png.meta b/Assets/arts/textures/ui/bounty/bounty_board_23.png.meta
deleted file mode 100644
index fde8f0265..000000000
--- a/Assets/arts/textures/ui/bounty/bounty_board_23.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: 9d2eb30dfced47944a6134ec966d8cda
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/bounty.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/bounty/bounty_board_27.png b/Assets/arts/textures/ui/bounty/bounty_board_27.png
deleted file mode 100644
index 6e1ee5115..000000000
Binary files a/Assets/arts/textures/ui/bounty/bounty_board_27.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/bounty/bounty_board_27.png.meta b/Assets/arts/textures/ui/bounty/bounty_board_27.png.meta
deleted file mode 100644
index 5628f1e2c..000000000
--- a/Assets/arts/textures/ui/bounty/bounty_board_27.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: 94aeed8ec01133f48a7940f2edc98137
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/bounty.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/bounty/bounty_board_3.png b/Assets/arts/textures/ui/bounty/bounty_board_3.png
new file mode 100644
index 000000000..a9f0ce4fd
Binary files /dev/null and b/Assets/arts/textures/ui/bounty/bounty_board_3.png differ
diff --git a/Assets/arts/textures/ui/bounty/bounty_bg_9.png.meta b/Assets/arts/textures/ui/bounty/bounty_board_3.png.meta
similarity index 98%
rename from Assets/arts/textures/ui/bounty/bounty_bg_9.png.meta
rename to Assets/arts/textures/ui/bounty/bounty_board_3.png.meta
index 204b9e9b5..bcebf2ee2 100644
--- a/Assets/arts/textures/ui/bounty/bounty_bg_9.png.meta
+++ b/Assets/arts/textures/ui/bounty/bounty_board_3.png.meta
@@ -1,5 +1,5 @@
fileFormatVersion: 2
-guid: 1734d5dedf39b3f43bd39412edb2615a
+guid: 2af436c80c32cb046bb90c11245ea4ed
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
diff --git a/Assets/arts/textures/ui/bounty/bounty_board_5.png b/Assets/arts/textures/ui/bounty/bounty_board_5.png
deleted file mode 100644
index 553f3d5e6..000000000
Binary files a/Assets/arts/textures/ui/bounty/bounty_board_5.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/bounty/bounty_board_5.png.meta b/Assets/arts/textures/ui/bounty/bounty_board_5.png.meta
deleted file mode 100644
index 020ef4bee..000000000
--- a/Assets/arts/textures/ui/bounty/bounty_board_5.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: 6f8bbf7bd3381fa4b89421b2bbf5f18e
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/bounty.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/bounty/bounty_board_7.png b/Assets/arts/textures/ui/bounty/bounty_board_7.png
deleted file mode 100644
index c791e61bc..000000000
Binary files a/Assets/arts/textures/ui/bounty/bounty_board_7.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/bounty/bounty_board_7.png.meta b/Assets/arts/textures/ui/bounty/bounty_board_7.png.meta
deleted file mode 100644
index faa2bdbca..000000000
--- a/Assets/arts/textures/ui/bounty/bounty_board_7.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: 4e9c888273b8cde458767467108f3244
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/bounty.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/bounty/bounty_board_8.png b/Assets/arts/textures/ui/bounty/bounty_board_8.png
deleted file mode 100644
index 48a53e558..000000000
Binary files a/Assets/arts/textures/ui/bounty/bounty_board_8.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/bounty/bounty_board_8.png.meta b/Assets/arts/textures/ui/bounty/bounty_board_8.png.meta
deleted file mode 100644
index d0e124480..000000000
--- a/Assets/arts/textures/ui/bounty/bounty_board_8.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: 851ac675a07e7474ca0c23da99a35626
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/bounty.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/bounty/bounty_board_9.png b/Assets/arts/textures/ui/bounty/bounty_board_9.png
deleted file mode 100644
index 583a40a0f..000000000
Binary files a/Assets/arts/textures/ui/bounty/bounty_board_9.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/bounty/bounty_board_9.png.meta b/Assets/arts/textures/ui/bounty/bounty_board_9.png.meta
deleted file mode 100644
index dfc93c395..000000000
--- a/Assets/arts/textures/ui/bounty/bounty_board_9.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: fc37c948a73d0414a9adf5772765fd1a
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/bounty.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/bounty/bounty_btn_1.png b/Assets/arts/textures/ui/bounty/bounty_btn_1.png
deleted file mode 100644
index 46fa3cf3f..000000000
Binary files a/Assets/arts/textures/ui/bounty/bounty_btn_1.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/bounty/bounty_btn_1.png.meta b/Assets/arts/textures/ui/bounty/bounty_btn_1.png.meta
deleted file mode 100644
index fe2d76157..000000000
--- a/Assets/arts/textures/ui/bounty/bounty_btn_1.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: 7f9fc7f0b97dea94883ecab2f67f3689
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/bounty.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/bounty/bounty_btn_2.png b/Assets/arts/textures/ui/bounty/bounty_btn_2.png
deleted file mode 100644
index f74580384..000000000
Binary files a/Assets/arts/textures/ui/bounty/bounty_btn_2.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/bounty/bounty_btn_2.png.meta b/Assets/arts/textures/ui/bounty/bounty_btn_2.png.meta
deleted file mode 100644
index 1ec7afae0..000000000
--- a/Assets/arts/textures/ui/bounty/bounty_btn_2.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: 8189c5f6129e5d7468ccd20331ebda66
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/bounty.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/bounty/bounty_btn_3.png b/Assets/arts/textures/ui/bounty/bounty_btn_3.png
deleted file mode 100644
index 86f351205..000000000
Binary files a/Assets/arts/textures/ui/bounty/bounty_btn_3.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/bounty/bounty_btn_3.png.meta b/Assets/arts/textures/ui/bounty/bounty_btn_3.png.meta
deleted file mode 100644
index dfbac60be..000000000
--- a/Assets/arts/textures/ui/bounty/bounty_btn_3.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: 288857298dfb0974585196ea0dc9cbed
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/bounty.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/bounty/bounty_btn_4.png b/Assets/arts/textures/ui/bounty/bounty_btn_4.png
deleted file mode 100644
index b2ab88aa1..000000000
Binary files a/Assets/arts/textures/ui/bounty/bounty_btn_4.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/bounty/bounty_btn_4.png.meta b/Assets/arts/textures/ui/bounty/bounty_btn_4.png.meta
deleted file mode 100644
index b90d1b161..000000000
--- a/Assets/arts/textures/ui/bounty/bounty_btn_4.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: db008d54389c1864fa3a49f568a91a50
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/bounty.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/bounty/bounty_btn_main_0.png b/Assets/arts/textures/ui/bounty/bounty_btn_main_0.png
new file mode 100644
index 000000000..4fd8fe531
Binary files /dev/null and b/Assets/arts/textures/ui/bounty/bounty_btn_main_0.png differ
diff --git a/Assets/arts/textures/ui/bounty/bounty_board_20.png.meta b/Assets/arts/textures/ui/bounty/bounty_btn_main_0.png.meta
similarity index 98%
rename from Assets/arts/textures/ui/bounty/bounty_board_20.png.meta
rename to Assets/arts/textures/ui/bounty/bounty_btn_main_0.png.meta
index 06dbebc0b..9191ad18c 100644
--- a/Assets/arts/textures/ui/bounty/bounty_board_20.png.meta
+++ b/Assets/arts/textures/ui/bounty/bounty_btn_main_0.png.meta
@@ -1,5 +1,5 @@
fileFormatVersion: 2
-guid: 6fb5d12de7aca034d8f183f776d9f8d5
+guid: d3aa1d33a76ef724092054945d8d0dae
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
diff --git a/Assets/arts/textures/ui/bounty/bounty_btn_main_1.png b/Assets/arts/textures/ui/bounty/bounty_btn_main_1.png
index ec3ecba43..4b3ec0c0c 100644
Binary files a/Assets/arts/textures/ui/bounty/bounty_btn_main_1.png and b/Assets/arts/textures/ui/bounty/bounty_btn_main_1.png differ
diff --git a/Assets/arts/textures/ui/bounty/bounty_dec_1.png b/Assets/arts/textures/ui/bounty/bounty_dec_1.png
index c38a7306d..7884f4a34 100644
Binary files a/Assets/arts/textures/ui/bounty/bounty_dec_1.png and b/Assets/arts/textures/ui/bounty/bounty_dec_1.png differ
diff --git a/Assets/arts/textures/ui/bounty/bounty_dec_2.png b/Assets/arts/textures/ui/bounty/bounty_dec_2.png
new file mode 100644
index 000000000..4fb6570aa
Binary files /dev/null and b/Assets/arts/textures/ui/bounty/bounty_dec_2.png differ
diff --git a/Assets/arts/textures/ui/bounty/bounty_board_12.png.meta b/Assets/arts/textures/ui/bounty/bounty_dec_2.png.meta
similarity index 98%
rename from Assets/arts/textures/ui/bounty/bounty_board_12.png.meta
rename to Assets/arts/textures/ui/bounty/bounty_dec_2.png.meta
index 1da41f7ca..d375f1b28 100644
--- a/Assets/arts/textures/ui/bounty/bounty_board_12.png.meta
+++ b/Assets/arts/textures/ui/bounty/bounty_dec_2.png.meta
@@ -1,5 +1,5 @@
fileFormatVersion: 2
-guid: 8366f22f59c8a6840be1c646c5f37e11
+guid: 175b37d7c69fd6949a2e4a0a4341637f
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
diff --git a/Assets/arts/textures/ui/bounty/bounty_dec_3.png b/Assets/arts/textures/ui/bounty/bounty_dec_3.png
index 0dd9fea84..f9b9b4d3b 100644
Binary files a/Assets/arts/textures/ui/bounty/bounty_dec_3.png and b/Assets/arts/textures/ui/bounty/bounty_dec_3.png differ
diff --git a/Assets/arts/textures/ui/bounty/bounty_dec_4.png b/Assets/arts/textures/ui/bounty/bounty_dec_4.png
new file mode 100644
index 000000000..99117b63b
Binary files /dev/null and b/Assets/arts/textures/ui/bounty/bounty_dec_4.png differ
diff --git a/Assets/arts/textures/ui/bounty/bounty_board_11.png.meta b/Assets/arts/textures/ui/bounty/bounty_dec_4.png.meta
similarity index 98%
rename from Assets/arts/textures/ui/bounty/bounty_board_11.png.meta
rename to Assets/arts/textures/ui/bounty/bounty_dec_4.png.meta
index 866ff6f81..76814c9a1 100644
--- a/Assets/arts/textures/ui/bounty/bounty_board_11.png.meta
+++ b/Assets/arts/textures/ui/bounty/bounty_dec_4.png.meta
@@ -1,5 +1,5 @@
fileFormatVersion: 2
-guid: 7d0893dc7f7172a44b8713375c7a32a9
+guid: cd95e95c8e43f3448ae79f4d57256d3a
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
diff --git a/Assets/arts/textures/ui/bounty/bounty_dec_5.png b/Assets/arts/textures/ui/bounty/bounty_dec_5.png
index 7b556f69e..e2743b8db 100644
Binary files a/Assets/arts/textures/ui/bounty/bounty_dec_5.png and b/Assets/arts/textures/ui/bounty/bounty_dec_5.png differ
diff --git a/Assets/arts/textures/ui/bounty/bounty_dec_6.png b/Assets/arts/textures/ui/bounty/bounty_dec_6.png
new file mode 100644
index 000000000..687cb79e2
Binary files /dev/null and b/Assets/arts/textures/ui/bounty/bounty_dec_6.png differ
diff --git a/Assets/arts/textures/ui/bounty/bounty_dec_6.png.meta b/Assets/arts/textures/ui/bounty/bounty_dec_6.png.meta
new file mode 100644
index 000000000..dd6789433
--- /dev/null
+++ b/Assets/arts/textures/ui/bounty/bounty_dec_6.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: ec349a60916cc3f4cb81184993574d26
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/bounty.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/bounty/bounty_dec_7.png b/Assets/arts/textures/ui/bounty/bounty_dec_7.png
deleted file mode 100644
index a85ae47c2..000000000
Binary files a/Assets/arts/textures/ui/bounty/bounty_dec_7.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/bounty/bounty_dec_7.png.meta b/Assets/arts/textures/ui/bounty/bounty_dec_7.png.meta
deleted file mode 100644
index 21ad538ef..000000000
--- a/Assets/arts/textures/ui/bounty/bounty_dec_7.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: 9cd5fb289c1067942a7a2760b65125e0
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/bounty.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/bounty/bounty_dec_8.png b/Assets/arts/textures/ui/bounty/bounty_dec_8.png
deleted file mode 100644
index 8492142b1..000000000
Binary files a/Assets/arts/textures/ui/bounty/bounty_dec_8.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/bounty/bounty_dec_8.png.meta b/Assets/arts/textures/ui/bounty/bounty_dec_8.png.meta
deleted file mode 100644
index 3862ab587..000000000
--- a/Assets/arts/textures/ui/bounty/bounty_dec_8.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: c9929c5bd047beb47a2e2a57e2ed42ee
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/bounty.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/bounty/bounty_dec_9.png b/Assets/arts/textures/ui/bounty/bounty_dec_9.png
deleted file mode 100644
index d055a0b30..000000000
Binary files a/Assets/arts/textures/ui/bounty/bounty_dec_9.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/bounty/bounty_dec_9.png.meta b/Assets/arts/textures/ui/bounty/bounty_dec_9.png.meta
deleted file mode 100644
index e0a56266d..000000000
--- a/Assets/arts/textures/ui/bounty/bounty_dec_9.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: b05e32974fe7d244aacdd77423c5ec8b
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/bounty.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/bounty/bounty_line.png b/Assets/arts/textures/ui/bounty/bounty_line.png
deleted file mode 100644
index 9f474c232..000000000
Binary files a/Assets/arts/textures/ui/bounty/bounty_line.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/bounty/bounty_line.png.meta b/Assets/arts/textures/ui/bounty/bounty_line.png.meta
deleted file mode 100644
index 2f4883880..000000000
--- a/Assets/arts/textures/ui/bounty/bounty_line.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: ed63cf25ab96cf2439715383facdbce5
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/bounty.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/bounty/bounty_line_1.png b/Assets/arts/textures/ui/bounty/bounty_line_1.png
new file mode 100644
index 000000000..13dc667e6
Binary files /dev/null and b/Assets/arts/textures/ui/bounty/bounty_line_1.png differ
diff --git a/Assets/arts/textures/ui/bounty/bounty_line_1.png.meta b/Assets/arts/textures/ui/bounty/bounty_line_1.png.meta
new file mode 100644
index 000000000..fea46f944
--- /dev/null
+++ b/Assets/arts/textures/ui/bounty/bounty_line_1.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 53718e7d402adb34c9303187c20ee358
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/bounty.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/bounty/bounty_line_2.png b/Assets/arts/textures/ui/bounty/bounty_line_2.png
new file mode 100644
index 000000000..357ab9d09
Binary files /dev/null and b/Assets/arts/textures/ui/bounty/bounty_line_2.png differ
diff --git a/Assets/arts/textures/ui/bounty/bounty_line_2.png.meta b/Assets/arts/textures/ui/bounty/bounty_line_2.png.meta
new file mode 100644
index 000000000..280f4f5c8
--- /dev/null
+++ b/Assets/arts/textures/ui/bounty/bounty_line_2.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 3f41bb7e064d25847928226fa42467f5
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/bounty.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/bounty/bounty_line_3.png b/Assets/arts/textures/ui/bounty/bounty_line_3.png
index 032d2e0a7..97443cacb 100644
Binary files a/Assets/arts/textures/ui/bounty/bounty_line_3.png and b/Assets/arts/textures/ui/bounty/bounty_line_3.png differ
diff --git a/Assets/arts/textures/ui/bounty/bounty_progress_1.png b/Assets/arts/textures/ui/bounty/bounty_progress_1.png
new file mode 100644
index 000000000..6bb70c715
Binary files /dev/null and b/Assets/arts/textures/ui/bounty/bounty_progress_1.png differ
diff --git a/Assets/arts/textures/ui/bounty/bounty_progress_1.png.meta b/Assets/arts/textures/ui/bounty/bounty_progress_1.png.meta
new file mode 100644
index 000000000..be334d9c6
--- /dev/null
+++ b/Assets/arts/textures/ui/bounty/bounty_progress_1.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: ada861ca87f0269478847b6c463e77ec
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/bounty.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/bounty/bounty_select.png b/Assets/arts/textures/ui/bounty/bounty_select.png
new file mode 100644
index 000000000..f22e0612c
Binary files /dev/null and b/Assets/arts/textures/ui/bounty/bounty_select.png differ
diff --git a/Assets/arts/textures/ui/bounty/bounty_select.png.meta b/Assets/arts/textures/ui/bounty/bounty_select.png.meta
new file mode 100644
index 000000000..8f1b21498
--- /dev/null
+++ b/Assets/arts/textures/ui/bounty/bounty_select.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 6767eb4bb7d152447bb08b909b34c239
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/bounty.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/bounty/bounty_title_1.png b/Assets/arts/textures/ui/bounty/bounty_title_1.png
deleted file mode 100644
index e252d16e0..000000000
Binary files a/Assets/arts/textures/ui/bounty/bounty_title_1.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/bounty/bounty_title_1.png.meta b/Assets/arts/textures/ui/bounty/bounty_title_1.png.meta
deleted file mode 100644
index 179ea9ae5..000000000
--- a/Assets/arts/textures/ui/bounty/bounty_title_1.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: 8a4e6e8c30f7d2247bf203d0f5ac0be4
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/bounty.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common/common_ad_3.png.meta b/Assets/arts/textures/ui/common/common_ad_3.png.meta
index fb23cdd95..ffb42edc2 100644
--- a/Assets/arts/textures/ui/common/common_ad_3.png.meta
+++ b/Assets/arts/textures/ui/common/common_ad_3.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/common.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common/common_ad_4.png.meta b/Assets/arts/textures/ui/common/common_ad_4.png.meta
index d8495cd71..da379eb09 100644
--- a/Assets/arts/textures/ui/common/common_ad_4.png.meta
+++ b/Assets/arts/textures/ui/common/common_ad_4.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/common.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common/common_arrow_3.png.meta b/Assets/arts/textures/ui/common/common_arrow_3.png.meta
index ee0192159..d95647b3f 100644
--- a/Assets/arts/textures/ui/common/common_arrow_3.png.meta
+++ b/Assets/arts/textures/ui/common/common_arrow_3.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/common.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common/common_arrow_4.png.meta b/Assets/arts/textures/ui/common/common_arrow_4.png.meta
index 5cc82be81..5105517d7 100644
--- a/Assets/arts/textures/ui/common/common_arrow_4.png.meta
+++ b/Assets/arts/textures/ui/common/common_arrow_4.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/common.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common/common_bg_3.png.meta b/Assets/arts/textures/ui/common/common_bg_3.png.meta
index 3bfdaf0b6..401b57047 100644
--- a/Assets/arts/textures/ui/common/common_bg_3.png.meta
+++ b/Assets/arts/textures/ui/common/common_bg_3.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/common.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common/common_board_11.png.meta b/Assets/arts/textures/ui/common/common_board_11.png.meta
index a82db7a78..3b4d1c784 100644
--- a/Assets/arts/textures/ui/common/common_board_11.png.meta
+++ b/Assets/arts/textures/ui/common/common_board_11.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/common.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common/common_board_12.png.meta b/Assets/arts/textures/ui/common/common_board_12.png.meta
index 8c308decc..b0cf989b3 100644
--- a/Assets/arts/textures/ui/common/common_board_12.png.meta
+++ b/Assets/arts/textures/ui/common/common_board_12.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/common.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common/common_board_13.png.meta b/Assets/arts/textures/ui/common/common_board_13.png.meta
index 99edc7929..6676f3ba4 100644
--- a/Assets/arts/textures/ui/common/common_board_13.png.meta
+++ b/Assets/arts/textures/ui/common/common_board_13.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/common.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common/common_board_14.png.meta b/Assets/arts/textures/ui/common/common_board_14.png.meta
index 39bae0ecc..0ee21d89a 100644
--- a/Assets/arts/textures/ui/common/common_board_14.png.meta
+++ b/Assets/arts/textures/ui/common/common_board_14.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/common.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common/common_board_15.png.meta b/Assets/arts/textures/ui/common/common_board_15.png.meta
index ab456a597..1a7d1a918 100644
--- a/Assets/arts/textures/ui/common/common_board_15.png.meta
+++ b/Assets/arts/textures/ui/common/common_board_15.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/common.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common/common_board_16.png b/Assets/arts/textures/ui/common/common_board_16.png
new file mode 100644
index 000000000..39570fc35
Binary files /dev/null and b/Assets/arts/textures/ui/common/common_board_16.png differ
diff --git a/Assets/arts/textures/ui/common_temp/common_ad.png.meta b/Assets/arts/textures/ui/common/common_board_16.png.meta
similarity index 98%
rename from Assets/arts/textures/ui/common_temp/common_ad.png.meta
rename to Assets/arts/textures/ui/common/common_board_16.png.meta
index 8a00d44f9..4e7fbf22b 100644
--- a/Assets/arts/textures/ui/common_temp/common_ad.png.meta
+++ b/Assets/arts/textures/ui/common/common_board_16.png.meta
@@ -1,5 +1,5 @@
fileFormatVersion: 2
-guid: d408c20e43b03af4fa60e31fdfdf40af
+guid: 15b627938e203f545ac49661789d7351
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
diff --git a/Assets/arts/textures/ui/common/common_board_17.png b/Assets/arts/textures/ui/common/common_board_17.png
new file mode 100644
index 000000000..4cb3633ad
Binary files /dev/null and b/Assets/arts/textures/ui/common/common_board_17.png differ
diff --git a/Assets/arts/textures/ui/common_temp/common_board_37.png.meta b/Assets/arts/textures/ui/common/common_board_17.png.meta
similarity index 97%
rename from Assets/arts/textures/ui/common_temp/common_board_37.png.meta
rename to Assets/arts/textures/ui/common/common_board_17.png.meta
index 55e395284..56446c5fa 100644
--- a/Assets/arts/textures/ui/common_temp/common_board_37.png.meta
+++ b/Assets/arts/textures/ui/common/common_board_17.png.meta
@@ -1,5 +1,5 @@
fileFormatVersion: 2
-guid: bc4f02aae5564f0478733a11fd1b7491
+guid: b5366e3fbfd5bde4c85d58b28af1a050
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
@@ -47,7 +47,7 @@ TextureImporter:
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
- spriteBorder: {x: 23, y: 23, z: 23, w: 23}
+ spriteBorder: {x: 44, y: 44, z: 44, w: 44}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
diff --git a/Assets/arts/textures/ui/common/common_board_18.png b/Assets/arts/textures/ui/common/common_board_18.png
new file mode 100644
index 000000000..04ae09a42
Binary files /dev/null and b/Assets/arts/textures/ui/common/common_board_18.png differ
diff --git a/Assets/arts/textures/ui/common/common_board_18.png.meta b/Assets/arts/textures/ui/common/common_board_18.png.meta
new file mode 100644
index 000000000..518eb7fae
--- /dev/null
+++ b/Assets/arts/textures/ui/common/common_board_18.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 27bcccd51cdee104bad42c0e2d59d35e
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 25, y: 25, z: 25, w: 25}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/common.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common/common_board_19.png b/Assets/arts/textures/ui/common/common_board_19.png
new file mode 100644
index 000000000..a10cf6f19
Binary files /dev/null and b/Assets/arts/textures/ui/common/common_board_19.png differ
diff --git a/Assets/arts/textures/ui/common/common_board_19.png.meta b/Assets/arts/textures/ui/common/common_board_19.png.meta
new file mode 100644
index 000000000..0c27b100b
--- /dev/null
+++ b/Assets/arts/textures/ui/common/common_board_19.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: a5649cd0bacb4934bbe6a22dca87cf40
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 25, y: 25, z: 25, w: 25}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/common.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common/common_board_20.png b/Assets/arts/textures/ui/common/common_board_20.png
new file mode 100644
index 000000000..f871fe9a3
Binary files /dev/null and b/Assets/arts/textures/ui/common/common_board_20.png differ
diff --git a/Assets/arts/textures/ui/common/common_board_20.png.meta b/Assets/arts/textures/ui/common/common_board_20.png.meta
new file mode 100644
index 000000000..f3f918026
--- /dev/null
+++ b/Assets/arts/textures/ui/common/common_board_20.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 3867c71afb1f02049b1fee7399381aaa
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 18, y: 18, z: 18, w: 18}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/common.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common/common_board_21.png b/Assets/arts/textures/ui/common/common_board_21.png
new file mode 100644
index 000000000..d1c7797c2
Binary files /dev/null and b/Assets/arts/textures/ui/common/common_board_21.png differ
diff --git a/Assets/arts/textures/ui/common/common_board_21.png.meta b/Assets/arts/textures/ui/common/common_board_21.png.meta
new file mode 100644
index 000000000..127a642a3
--- /dev/null
+++ b/Assets/arts/textures/ui/common/common_board_21.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 79b105ace3ad8d747a6cdd5d9e08c890
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 1, y: 2, z: 1, w: 7}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common_temp/common_board_15.png b/Assets/arts/textures/ui/common/common_board_22.png
similarity index 62%
rename from Assets/arts/textures/ui/common_temp/common_board_15.png
rename to Assets/arts/textures/ui/common/common_board_22.png
index db46a799b..207a9692e 100644
Binary files a/Assets/arts/textures/ui/common_temp/common_board_15.png and b/Assets/arts/textures/ui/common/common_board_22.png differ
diff --git a/Assets/arts/textures/ui/common/common_board_22.png.meta b/Assets/arts/textures/ui/common/common_board_22.png.meta
new file mode 100644
index 000000000..01f6284fa
--- /dev/null
+++ b/Assets/arts/textures/ui/common/common_board_22.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 3f4e012cd25229546b5f5859ebecdf66
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common/common_btn_back.png b/Assets/arts/textures/ui/common/common_btn_back.png
new file mode 100644
index 000000000..530a44da4
Binary files /dev/null and b/Assets/arts/textures/ui/common/common_btn_back.png differ
diff --git a/Assets/arts/textures/ui/common/common_btn_back.png.meta b/Assets/arts/textures/ui/common/common_btn_back.png.meta
new file mode 100644
index 000000000..10de14036
--- /dev/null
+++ b/Assets/arts/textures/ui/common/common_btn_back.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 1e55a4a32dd1ec240af52ddccebc7c46
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common/common_btn_blue_1.png b/Assets/arts/textures/ui/common/common_btn_blue_1.png
new file mode 100644
index 000000000..80dff8590
Binary files /dev/null and b/Assets/arts/textures/ui/common/common_btn_blue_1.png differ
diff --git a/Assets/arts/textures/ui/common/common_btn_blue_1.png.meta b/Assets/arts/textures/ui/common/common_btn_blue_1.png.meta
new file mode 100644
index 000000000..39a545bc4
--- /dev/null
+++ b/Assets/arts/textures/ui/common/common_btn_blue_1.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: c692df1f4d1dfed42a66007b4e4cb315
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 32, y: 46, z: 32, w: 34}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/common.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common/common_btn_blue_2.png b/Assets/arts/textures/ui/common/common_btn_blue_2.png
new file mode 100644
index 000000000..5aa41884a
Binary files /dev/null and b/Assets/arts/textures/ui/common/common_btn_blue_2.png differ
diff --git a/Assets/arts/textures/ui/common/common_btn_blue_2.png.meta b/Assets/arts/textures/ui/common/common_btn_blue_2.png.meta
new file mode 100644
index 000000000..95dca0ff5
--- /dev/null
+++ b/Assets/arts/textures/ui/common/common_btn_blue_2.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 7f07ec09931338d42bf26e2d0eb26677
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 24, y: 32, z: 24, w: 22}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/common.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common/common_btn_grey_3.png.meta b/Assets/arts/textures/ui/common/common_btn_grey_3.png.meta
index b39101c47..e7f0d360e 100644
--- a/Assets/arts/textures/ui/common/common_btn_grey_3.png.meta
+++ b/Assets/arts/textures/ui/common/common_btn_grey_3.png.meta
@@ -47,7 +47,7 @@ TextureImporter:
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteBorder: {x: 18, y: 22, z: 18, w: 14}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
diff --git a/Assets/arts/textures/ui/common/common_btn_red_1.png b/Assets/arts/textures/ui/common/common_btn_red_1.png
index 58d9058bf..74612825f 100644
Binary files a/Assets/arts/textures/ui/common/common_btn_red_1.png and b/Assets/arts/textures/ui/common/common_btn_red_1.png differ
diff --git a/Assets/arts/textures/ui/common/common_btn_red_2.png b/Assets/arts/textures/ui/common/common_btn_red_2.png
index 75ed3755d..4efcf89ed 100644
Binary files a/Assets/arts/textures/ui/common/common_btn_red_2.png and b/Assets/arts/textures/ui/common/common_btn_red_2.png differ
diff --git a/Assets/arts/textures/ui/common/common_btn_red_3.png b/Assets/arts/textures/ui/common/common_btn_red_3.png
index d96b400a3..2603cb8ea 100644
Binary files a/Assets/arts/textures/ui/common/common_btn_red_3.png and b/Assets/arts/textures/ui/common/common_btn_red_3.png differ
diff --git a/Assets/arts/textures/ui/common/common_check.png b/Assets/arts/textures/ui/common/common_check.png
index 148b9d8d0..9b090e146 100644
Binary files a/Assets/arts/textures/ui/common/common_check.png and b/Assets/arts/textures/ui/common/common_check.png differ
diff --git a/Assets/arts/textures/ui/common/common_chest_2.png b/Assets/arts/textures/ui/common/common_chest_2.png
new file mode 100644
index 000000000..faa8b9ad4
Binary files /dev/null and b/Assets/arts/textures/ui/common/common_chest_2.png differ
diff --git a/Assets/arts/textures/ui/common_temp/common_btn_close_1.png.meta b/Assets/arts/textures/ui/common/common_chest_2.png.meta
similarity index 98%
rename from Assets/arts/textures/ui/common_temp/common_btn_close_1.png.meta
rename to Assets/arts/textures/ui/common/common_chest_2.png.meta
index 7b5f69796..a61b523c6 100644
--- a/Assets/arts/textures/ui/common_temp/common_btn_close_1.png.meta
+++ b/Assets/arts/textures/ui/common/common_chest_2.png.meta
@@ -1,5 +1,5 @@
fileFormatVersion: 2
-guid: a86176f4d98080e4697042c30913c6c4
+guid: 33eb4a26b60c789498ae5382b6b6251b
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
diff --git a/Assets/arts/textures/ui/common/common_dec_10.png.meta b/Assets/arts/textures/ui/common/common_dec_10.png.meta
index 3594bf4a1..7bc7842ef 100644
--- a/Assets/arts/textures/ui/common/common_dec_10.png.meta
+++ b/Assets/arts/textures/ui/common/common_dec_10.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/common.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common/common_dec_11.png b/Assets/arts/textures/ui/common/common_dec_11.png
new file mode 100644
index 000000000..67524b11a
Binary files /dev/null and b/Assets/arts/textures/ui/common/common_dec_11.png differ
diff --git a/Assets/arts/textures/ui/common/common_dec_11.png.meta b/Assets/arts/textures/ui/common/common_dec_11.png.meta
new file mode 100644
index 000000000..62122c952
--- /dev/null
+++ b/Assets/arts/textures/ui/common/common_dec_11.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 15a10479bd4a42c459af0778f0f3c004
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 86, y: 30, z: 16, w: 30}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/common.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common/common_info.png.meta b/Assets/arts/textures/ui/common/common_info.png.meta
index 0a0ae6fdf..2409f1c76 100644
--- a/Assets/arts/textures/ui/common/common_info.png.meta
+++ b/Assets/arts/textures/ui/common/common_info.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/common.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common/common_line_1.png.meta b/Assets/arts/textures/ui/common/common_line_1.png.meta
index 42321b768..790936bc5 100644
--- a/Assets/arts/textures/ui/common/common_line_1.png.meta
+++ b/Assets/arts/textures/ui/common/common_line_1.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/common.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common/common_line_2.png.meta b/Assets/arts/textures/ui/common/common_line_2.png.meta
index f19115399..1d8915939 100644
--- a/Assets/arts/textures/ui/common/common_line_2.png.meta
+++ b/Assets/arts/textures/ui/common/common_line_2.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/common.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common/common_line_3.png b/Assets/arts/textures/ui/common/common_line_3.png
new file mode 100644
index 000000000..3265e055f
Binary files /dev/null and b/Assets/arts/textures/ui/common/common_line_3.png differ
diff --git a/Assets/arts/textures/ui/common_temp/common_check_1.png.meta b/Assets/arts/textures/ui/common/common_line_3.png.meta
similarity index 98%
rename from Assets/arts/textures/ui/common_temp/common_check_1.png.meta
rename to Assets/arts/textures/ui/common/common_line_3.png.meta
index 6ba62fd4b..5a225387d 100644
--- a/Assets/arts/textures/ui/common_temp/common_check_1.png.meta
+++ b/Assets/arts/textures/ui/common/common_line_3.png.meta
@@ -1,5 +1,5 @@
fileFormatVersion: 2
-guid: 70ee3500b64025942bcf9cdcf7c9da7f
+guid: ccaac0bda1f3fcb45bfd9d7500b0810b
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
diff --git a/Assets/arts/textures/ui/common/common_line_4.png b/Assets/arts/textures/ui/common/common_line_4.png
new file mode 100644
index 000000000..fb45749ef
Binary files /dev/null and b/Assets/arts/textures/ui/common/common_line_4.png differ
diff --git a/Assets/arts/textures/ui/common/common_line_4.png.meta b/Assets/arts/textures/ui/common/common_line_4.png.meta
new file mode 100644
index 000000000..bbf8642c5
--- /dev/null
+++ b/Assets/arts/textures/ui/common/common_line_4.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 070fd6553e0b5bf4a816757085221bda
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common/common_lock.png b/Assets/arts/textures/ui/common/common_lock.png
index e6c585b6a..da8eaf1c7 100644
Binary files a/Assets/arts/textures/ui/common/common_lock.png and b/Assets/arts/textures/ui/common/common_lock.png differ
diff --git a/Assets/arts/textures/ui/common/common_menu_1.png.meta b/Assets/arts/textures/ui/common/common_menu_1.png.meta
index e4ec587a3..e683e29ab 100644
--- a/Assets/arts/textures/ui/common/common_menu_1.png.meta
+++ b/Assets/arts/textures/ui/common/common_menu_1.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/common.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common/common_menu_2.png.meta b/Assets/arts/textures/ui/common/common_menu_2.png.meta
index e9a34e2aa..539bcfc7f 100644
--- a/Assets/arts/textures/ui/common/common_menu_2.png.meta
+++ b/Assets/arts/textures/ui/common/common_menu_2.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/common.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common/common_menu_3.png.meta b/Assets/arts/textures/ui/common/common_menu_3.png.meta
index 4b47af405..325273432 100644
--- a/Assets/arts/textures/ui/common/common_menu_3.png.meta
+++ b/Assets/arts/textures/ui/common/common_menu_3.png.meta
@@ -47,7 +47,7 @@ TextureImporter:
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteBorder: {x: 36, y: 0, z: 36, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/common.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common/common_point.png b/Assets/arts/textures/ui/common/common_point.png
index 894e5885c..b6f23e92b 100644
Binary files a/Assets/arts/textures/ui/common/common_point.png and b/Assets/arts/textures/ui/common/common_point.png differ
diff --git a/Assets/arts/textures/ui/common/common_progress_2_bg.png b/Assets/arts/textures/ui/common/common_progress_2_bg.png
new file mode 100644
index 000000000..13cdf2f70
Binary files /dev/null and b/Assets/arts/textures/ui/common/common_progress_2_bg.png differ
diff --git a/Assets/arts/textures/ui/common/common_progress_2_bg.png.meta b/Assets/arts/textures/ui/common/common_progress_2_bg.png.meta
new file mode 100644
index 000000000..ad5de37a2
--- /dev/null
+++ b/Assets/arts/textures/ui/common/common_progress_2_bg.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 5140a3a33b636314fb3d07bdc4c9c0f3
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 8, y: 8, z: 8, w: 8}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/common.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common/common_progress_3.png.meta b/Assets/arts/textures/ui/common/common_progress_3.png.meta
index a969ace9e..f4963418d 100644
--- a/Assets/arts/textures/ui/common/common_progress_3.png.meta
+++ b/Assets/arts/textures/ui/common/common_progress_3.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/common.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common/common_progress_4.png b/Assets/arts/textures/ui/common/common_progress_4.png
new file mode 100644
index 000000000..0e6f38469
Binary files /dev/null and b/Assets/arts/textures/ui/common/common_progress_4.png differ
diff --git a/Assets/arts/textures/ui/common_temp/common_progress_4.png.meta b/Assets/arts/textures/ui/common/common_progress_4.png.meta
similarity index 95%
rename from Assets/arts/textures/ui/common_temp/common_progress_4.png.meta
rename to Assets/arts/textures/ui/common/common_progress_4.png.meta
index 995a20193..e79afd49c 100644
--- a/Assets/arts/textures/ui/common_temp/common_progress_4.png.meta
+++ b/Assets/arts/textures/ui/common/common_progress_4.png.meta
@@ -1,5 +1,5 @@
fileFormatVersion: 2
-guid: 796245e0b7d34b14ab12b9b9f76246d0
+guid: c4514947f60678c4e90c498ef095db61
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
@@ -47,7 +47,7 @@ TextureImporter:
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
- spriteBorder: {x: 11, y: 0, z: 11, w: 0}
+ spriteBorder: {x: 8, y: 10, z: 8, w: 10}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName: arts/textures/ui/common_temp.ab
+ assetBundleName: arts/textures/ui/common.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common/common_time.png b/Assets/arts/textures/ui/common/common_time.png
new file mode 100644
index 000000000..0f6632e57
Binary files /dev/null and b/Assets/arts/textures/ui/common/common_time.png differ
diff --git a/Assets/arts/textures/ui/common/common_time.png.meta b/Assets/arts/textures/ui/common/common_time.png.meta
new file mode 100644
index 000000000..cb37f4121
--- /dev/null
+++ b/Assets/arts/textures/ui/common/common_time.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: f68fde5de9bc3bb4bb20c8c2e8de00e1
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/common.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common/common_title_6.png.meta b/Assets/arts/textures/ui/common/common_title_6.png.meta
index 07caa2f08..e5d5ff30d 100644
--- a/Assets/arts/textures/ui/common/common_title_6.png.meta
+++ b/Assets/arts/textures/ui/common/common_title_6.png.meta
@@ -47,7 +47,7 @@ TextureImporter:
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteBorder: {x: 35, y: 0, z: 35, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/common.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common/common_title_7.png.meta b/Assets/arts/textures/ui/common/common_title_7.png.meta
index be83b8697..20565f6b5 100644
--- a/Assets/arts/textures/ui/common/common_title_7.png.meta
+++ b/Assets/arts/textures/ui/common/common_title_7.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/common.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common/common_title_8.png b/Assets/arts/textures/ui/common/common_title_8.png
new file mode 100644
index 000000000..f8faf0c06
Binary files /dev/null and b/Assets/arts/textures/ui/common/common_title_8.png differ
diff --git a/Assets/arts/textures/ui/common/common_title_8.png.meta b/Assets/arts/textures/ui/common/common_title_8.png.meta
new file mode 100644
index 000000000..28bd93e74
--- /dev/null
+++ b/Assets/arts/textures/ui/common/common_title_8.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: ed4354e6b5195924492ab2e872cfe945
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 13, y: 0, z: 84, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/common.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common_temp/act_common_dec_5.png b/Assets/arts/textures/ui/common_temp/act_common_dec_5.png
deleted file mode 100644
index fddf5912e..000000000
Binary files a/Assets/arts/textures/ui/common_temp/act_common_dec_5.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/act_common_dec_5.png.meta b/Assets/arts/textures/ui/common_temp/act_common_dec_5.png.meta
deleted file mode 100644
index f3e1c5701..000000000
--- a/Assets/arts/textures/ui/common_temp/act_common_dec_5.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: f0d0414b7d4ee9b4f90891321d99bda9
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/common_temp.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common_temp/common_ad.png b/Assets/arts/textures/ui/common_temp/common_ad.png
deleted file mode 100644
index c323b4d55..000000000
Binary files a/Assets/arts/textures/ui/common_temp/common_ad.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/common_ad_3.png b/Assets/arts/textures/ui/common_temp/common_ad_3.png
deleted file mode 100644
index 5e6df5eb5..000000000
Binary files a/Assets/arts/textures/ui/common_temp/common_ad_3.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/common_ad_3.png.meta b/Assets/arts/textures/ui/common_temp/common_ad_3.png.meta
deleted file mode 100644
index 719f32b33..000000000
--- a/Assets/arts/textures/ui/common_temp/common_ad_3.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: 24b274efbfb2ae84ba560e4a9cdc9e5d
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/common_temp.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common_temp/common_ad_5.png b/Assets/arts/textures/ui/common_temp/common_ad_5.png
deleted file mode 100644
index 5468f3768..000000000
Binary files a/Assets/arts/textures/ui/common_temp/common_ad_5.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/common_ad_5.png.meta b/Assets/arts/textures/ui/common_temp/common_ad_5.png.meta
deleted file mode 100644
index 045737170..000000000
--- a/Assets/arts/textures/ui/common_temp/common_ad_5.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: e99c98bbd7686c54fb6c295fa2fd1cb1
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/common_temp.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common_temp/common_bg_0.png b/Assets/arts/textures/ui/common_temp/common_bg_0.png
deleted file mode 100644
index 31c7b125e..000000000
Binary files a/Assets/arts/textures/ui/common_temp/common_bg_0.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/common_bg_0.png.meta b/Assets/arts/textures/ui/common_temp/common_bg_0.png.meta
deleted file mode 100644
index eb3577847..000000000
--- a/Assets/arts/textures/ui/common_temp/common_bg_0.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: ecbfe2c6ee57e284bb88c09709a895bd
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/common_temp.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common_temp/common_board_15.png.meta b/Assets/arts/textures/ui/common_temp/common_board_15.png.meta
deleted file mode 100644
index 0f41dd9e7..000000000
--- a/Assets/arts/textures/ui/common_temp/common_board_15.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: 8a1d49a4e7460034ba4f450805fbce0e
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/common_temp.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common_temp/common_board_34.png b/Assets/arts/textures/ui/common_temp/common_board_34.png
deleted file mode 100644
index 1321cd4c1..000000000
Binary files a/Assets/arts/textures/ui/common_temp/common_board_34.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/common_board_34.png.meta b/Assets/arts/textures/ui/common_temp/common_board_34.png.meta
deleted file mode 100644
index 5b167920a..000000000
--- a/Assets/arts/textures/ui/common_temp/common_board_34.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: 128982c3ffd68014bbe715ebcebd49ef
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 21, y: 21, z: 21, w: 21}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/common_temp.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common_temp/common_board_37.png b/Assets/arts/textures/ui/common_temp/common_board_37.png
deleted file mode 100644
index cc01ff0c9..000000000
Binary files a/Assets/arts/textures/ui/common_temp/common_board_37.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/common_board_39.png b/Assets/arts/textures/ui/common_temp/common_board_39.png
deleted file mode 100644
index 6493d567f..000000000
Binary files a/Assets/arts/textures/ui/common_temp/common_board_39.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/common_board_39.png.meta b/Assets/arts/textures/ui/common_temp/common_board_39.png.meta
deleted file mode 100644
index 7d09c66cb..000000000
--- a/Assets/arts/textures/ui/common_temp/common_board_39.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: 1872eb630fc869c448e7fa7dd78f03e5
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 10, y: 10, z: 10, w: 10}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/common_temp.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common_temp/common_board_41.png b/Assets/arts/textures/ui/common_temp/common_board_41.png
deleted file mode 100644
index 8caadaeb6..000000000
Binary files a/Assets/arts/textures/ui/common_temp/common_board_41.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/common_board_41.png.meta b/Assets/arts/textures/ui/common_temp/common_board_41.png.meta
deleted file mode 100644
index 0acf3dfc1..000000000
--- a/Assets/arts/textures/ui/common_temp/common_board_41.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: 270043549ba438d42ad12cdb6fe8d6db
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 10, y: 10, z: 10, w: 10}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/common_temp.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common_temp/common_board_42.png b/Assets/arts/textures/ui/common_temp/common_board_42.png
deleted file mode 100644
index 9c8ef10d3..000000000
Binary files a/Assets/arts/textures/ui/common_temp/common_board_42.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/common_board_42.png.meta b/Assets/arts/textures/ui/common_temp/common_board_42.png.meta
deleted file mode 100644
index b13506244..000000000
--- a/Assets/arts/textures/ui/common_temp/common_board_42.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: 0becc83fee4c76a4ea964ae412cd8b23
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 30, y: 28, z: 30, w: 28}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/common_temp.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common_temp/common_board_43.png b/Assets/arts/textures/ui/common_temp/common_board_43.png
deleted file mode 100644
index cb29665a3..000000000
Binary files a/Assets/arts/textures/ui/common_temp/common_board_43.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/common_board_43.png.meta b/Assets/arts/textures/ui/common_temp/common_board_43.png.meta
deleted file mode 100644
index 65f03ce69..000000000
--- a/Assets/arts/textures/ui/common_temp/common_board_43.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: 0d8971bf74f69c44cbb36a78a7dbfa32
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 12, y: 12, z: 12, w: 12}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/common_temp.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common_temp/common_board_49.png b/Assets/arts/textures/ui/common_temp/common_board_49.png
deleted file mode 100644
index 0126b8dde..000000000
Binary files a/Assets/arts/textures/ui/common_temp/common_board_49.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/common_board_49.png.meta b/Assets/arts/textures/ui/common_temp/common_board_49.png.meta
deleted file mode 100644
index c1465be4e..000000000
--- a/Assets/arts/textures/ui/common_temp/common_board_49.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: 8f54e3e3912cd524e8785b840587765e
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 1, y: 17, z: 1, w: 17}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/common_temp.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common_temp/common_board_52.png b/Assets/arts/textures/ui/common_temp/common_board_52.png
deleted file mode 100644
index 02fa51515..000000000
Binary files a/Assets/arts/textures/ui/common_temp/common_board_52.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/common_board_52.png.meta b/Assets/arts/textures/ui/common_temp/common_board_52.png.meta
deleted file mode 100644
index 08e71f36b..000000000
--- a/Assets/arts/textures/ui/common_temp/common_board_52.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: 2c853a406c01f7e4ab319613d4d6b125
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 10, y: 10, z: 10, w: 10}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/common_temp.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common_temp/common_btn_16.png b/Assets/arts/textures/ui/common_temp/common_btn_16.png
deleted file mode 100644
index 9c5477236..000000000
Binary files a/Assets/arts/textures/ui/common_temp/common_btn_16.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/common_btn_16.png.meta b/Assets/arts/textures/ui/common_temp/common_btn_16.png.meta
deleted file mode 100644
index 374ce8785..000000000
--- a/Assets/arts/textures/ui/common_temp/common_btn_16.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: 706cf0caa0634ad4ea96e29c5d27984e
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/common_temp.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common_temp/common_btn_18.png b/Assets/arts/textures/ui/common_temp/common_btn_18.png
deleted file mode 100644
index 40e58c284..000000000
Binary files a/Assets/arts/textures/ui/common_temp/common_btn_18.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/common_btn_18.png.meta b/Assets/arts/textures/ui/common_temp/common_btn_18.png.meta
deleted file mode 100644
index 143625c85..000000000
--- a/Assets/arts/textures/ui/common_temp/common_btn_18.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: 2c091945cce7f9d4db36c7c7cce8ae31
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/common_temp.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common_temp/common_btn_2.png b/Assets/arts/textures/ui/common_temp/common_btn_2.png
deleted file mode 100644
index 3ee927d9a..000000000
Binary files a/Assets/arts/textures/ui/common_temp/common_btn_2.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/common_btn_2.png.meta b/Assets/arts/textures/ui/common_temp/common_btn_2.png.meta
deleted file mode 100644
index 29f3bf944..000000000
--- a/Assets/arts/textures/ui/common_temp/common_btn_2.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: f24a3cf1b4c80e644a25b659f5d81cab
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/common_temp.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common_temp/common_btn_3.png b/Assets/arts/textures/ui/common_temp/common_btn_3.png
deleted file mode 100644
index 49d7f1d5e..000000000
Binary files a/Assets/arts/textures/ui/common_temp/common_btn_3.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/common_btn_3.png.meta b/Assets/arts/textures/ui/common_temp/common_btn_3.png.meta
deleted file mode 100644
index af0a0b140..000000000
--- a/Assets/arts/textures/ui/common_temp/common_btn_3.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: 8602111c232a7e64f84b69b7f22c3385
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 140, y: 0, z: 140, w: 0}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/common_temp.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common_temp/common_btn_7.png b/Assets/arts/textures/ui/common_temp/common_btn_7.png
deleted file mode 100644
index 1d0b751c7..000000000
Binary files a/Assets/arts/textures/ui/common_temp/common_btn_7.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/common_btn_7.png.meta b/Assets/arts/textures/ui/common_temp/common_btn_7.png.meta
deleted file mode 100644
index 1157979e5..000000000
--- a/Assets/arts/textures/ui/common_temp/common_btn_7.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: d98a6ecff7df83149a1ed4257f9f18b5
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 28, y: 28, z: 28, w: 28}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/common_temp.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common_temp/common_btn_close_1.png b/Assets/arts/textures/ui/common_temp/common_btn_close_1.png
deleted file mode 100644
index 7e1f61bbe..000000000
Binary files a/Assets/arts/textures/ui/common_temp/common_btn_close_1.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/common_btn_copy.png b/Assets/arts/textures/ui/common_temp/common_btn_copy.png
deleted file mode 100644
index 14fcc4cad..000000000
Binary files a/Assets/arts/textures/ui/common_temp/common_btn_copy.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/common_btn_copy.png.meta b/Assets/arts/textures/ui/common_temp/common_btn_copy.png.meta
deleted file mode 100644
index cc11e73ac..000000000
--- a/Assets/arts/textures/ui/common_temp/common_btn_copy.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: 6e6780b3b69df494ca86f2ba742ab4ff
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/common_temp.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common_temp/common_btn_grey.png b/Assets/arts/textures/ui/common_temp/common_btn_grey.png
deleted file mode 100644
index 2d63edc32..000000000
Binary files a/Assets/arts/textures/ui/common_temp/common_btn_grey.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/common_btn_grey.png.meta b/Assets/arts/textures/ui/common_temp/common_btn_grey.png.meta
deleted file mode 100644
index 60182ec1e..000000000
--- a/Assets/arts/textures/ui/common_temp/common_btn_grey.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: 70fefe2dcc489334fa39b926a0214fba
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 28, y: 28, z: 28, w: 28}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/common_temp.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common_temp/common_check_1.png b/Assets/arts/textures/ui/common_temp/common_check_1.png
deleted file mode 100644
index 828f95469..000000000
Binary files a/Assets/arts/textures/ui/common_temp/common_check_1.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/common_dec_16.png b/Assets/arts/textures/ui/common_temp/common_dec_16.png
deleted file mode 100644
index 3d5b273fe..000000000
Binary files a/Assets/arts/textures/ui/common_temp/common_dec_16.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/common_dec_16.png.meta b/Assets/arts/textures/ui/common_temp/common_dec_16.png.meta
deleted file mode 100644
index 16311b8af..000000000
--- a/Assets/arts/textures/ui/common_temp/common_dec_16.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: 110cf356ed2492f46a6280025c377f61
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/common_temp.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common_temp/common_dec_9.png b/Assets/arts/textures/ui/common_temp/common_dec_9.png
deleted file mode 100644
index 0d0b59500..000000000
Binary files a/Assets/arts/textures/ui/common_temp/common_dec_9.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/common_dec_9.png.meta b/Assets/arts/textures/ui/common_temp/common_dec_9.png.meta
deleted file mode 100644
index 2b48633e3..000000000
--- a/Assets/arts/textures/ui/common_temp/common_dec_9.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: 374abdc8e87ac1d43bf3c4c2a17530c8
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/common_temp.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common_temp/common_decoration_10.png b/Assets/arts/textures/ui/common_temp/common_decoration_10.png
deleted file mode 100644
index 0b2ded862..000000000
Binary files a/Assets/arts/textures/ui/common_temp/common_decoration_10.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/common_decoration_10.png.meta b/Assets/arts/textures/ui/common_temp/common_decoration_10.png.meta
deleted file mode 100644
index 068c67940..000000000
--- a/Assets/arts/textures/ui/common_temp/common_decoration_10.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: e4489359e92b7b64d833c777ba6c8e88
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/common_temp.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common_temp/common_decoration_11.png b/Assets/arts/textures/ui/common_temp/common_decoration_11.png
deleted file mode 100644
index 54b659d36..000000000
Binary files a/Assets/arts/textures/ui/common_temp/common_decoration_11.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/common_decoration_11.png.meta b/Assets/arts/textures/ui/common_temp/common_decoration_11.png.meta
deleted file mode 100644
index a6b26afc1..000000000
--- a/Assets/arts/textures/ui/common_temp/common_decoration_11.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: 0ed2f0a8c10be5f43ac385c88f10c04d
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 13, y: 17, z: 13, w: 11}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/common_temp.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common_temp/common_decoration_23.png b/Assets/arts/textures/ui/common_temp/common_decoration_23.png
deleted file mode 100644
index 4e845c393..000000000
Binary files a/Assets/arts/textures/ui/common_temp/common_decoration_23.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/common_decoration_23.png.meta b/Assets/arts/textures/ui/common_temp/common_decoration_23.png.meta
deleted file mode 100644
index c2001afc6..000000000
--- a/Assets/arts/textures/ui/common_temp/common_decoration_23.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: ee0df8d049e8cdc40b059ae183bc7448
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/common_temp.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common_temp/common_decoration_24.png b/Assets/arts/textures/ui/common_temp/common_decoration_24.png
deleted file mode 100644
index 7e7265cac..000000000
Binary files a/Assets/arts/textures/ui/common_temp/common_decoration_24.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/common_decoration_24.png.meta b/Assets/arts/textures/ui/common_temp/common_decoration_24.png.meta
deleted file mode 100644
index e5998762c..000000000
--- a/Assets/arts/textures/ui/common_temp/common_decoration_24.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: 354ca621aaea62941a881f69e9997789
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/common_temp.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common_temp/common_floor_16.png b/Assets/arts/textures/ui/common_temp/common_floor_16.png
deleted file mode 100644
index 614a03ca2..000000000
Binary files a/Assets/arts/textures/ui/common_temp/common_floor_16.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/common_floor_16.png.meta b/Assets/arts/textures/ui/common_temp/common_floor_16.png.meta
deleted file mode 100644
index f2a79cb3a..000000000
--- a/Assets/arts/textures/ui/common_temp/common_floor_16.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: 492604b454d2a9145a0dbc9778d63636
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 50, y: 0, z: 50, w: 0}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/common_temp.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common_temp/common_floor_9.png b/Assets/arts/textures/ui/common_temp/common_floor_9.png
deleted file mode 100644
index 36387ad5d..000000000
Binary files a/Assets/arts/textures/ui/common_temp/common_floor_9.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/common_floor_9.png.meta b/Assets/arts/textures/ui/common_temp/common_floor_9.png.meta
deleted file mode 100644
index 9cc4a06fb..000000000
--- a/Assets/arts/textures/ui/common_temp/common_floor_9.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: c53537eed4d49cb43b9a6c4ad7bb4338
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/common_temp.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common_temp/common_inf.png b/Assets/arts/textures/ui/common_temp/common_inf.png
deleted file mode 100644
index 1b10b5271..000000000
Binary files a/Assets/arts/textures/ui/common_temp/common_inf.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/common_inf.png.meta b/Assets/arts/textures/ui/common_temp/common_inf.png.meta
deleted file mode 100644
index 8352a9baf..000000000
--- a/Assets/arts/textures/ui/common_temp/common_inf.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: ce90868518d766a47b0e74cbd1828ae9
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/common_temp.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common_temp/common_line_2.png b/Assets/arts/textures/ui/common_temp/common_line_2.png
deleted file mode 100644
index 6749d273b..000000000
Binary files a/Assets/arts/textures/ui/common_temp/common_line_2.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/common_line_2.png.meta b/Assets/arts/textures/ui/common_temp/common_line_2.png.meta
deleted file mode 100644
index 9b8e49242..000000000
--- a/Assets/arts/textures/ui/common_temp/common_line_2.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: 8a72adb42754a1c45b048cec65631289
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/common_temp.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common_temp/common_line_7.png b/Assets/arts/textures/ui/common_temp/common_line_7.png
deleted file mode 100644
index 116c4729f..000000000
Binary files a/Assets/arts/textures/ui/common_temp/common_line_7.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/common_line_7.png.meta b/Assets/arts/textures/ui/common_temp/common_line_7.png.meta
deleted file mode 100644
index dbb3a739e..000000000
--- a/Assets/arts/textures/ui/common_temp/common_line_7.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: 6be4996b962d75c4c959cc18d5cb36bb
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 6, z: 0, w: 6}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/common_temp.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common_temp/common_lock_2.png b/Assets/arts/textures/ui/common_temp/common_lock_2.png
deleted file mode 100644
index 52bd819c8..000000000
Binary files a/Assets/arts/textures/ui/common_temp/common_lock_2.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/common_lock_2.png.meta b/Assets/arts/textures/ui/common_temp/common_lock_2.png.meta
deleted file mode 100644
index 990356fbd..000000000
--- a/Assets/arts/textures/ui/common_temp/common_lock_2.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: 39e386a2340762542ab1cdbb6f4d284a
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/common_temp.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common_temp/common_menu_4.png b/Assets/arts/textures/ui/common_temp/common_menu_4.png
deleted file mode 100644
index 477b993d7..000000000
Binary files a/Assets/arts/textures/ui/common_temp/common_menu_4.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/common_menu_4.png.meta b/Assets/arts/textures/ui/common_temp/common_menu_4.png.meta
deleted file mode 100644
index dff46ea96..000000000
--- a/Assets/arts/textures/ui/common_temp/common_menu_4.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: 6b3e17a9084005441bbabd97659cfba4
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/common_temp.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common_temp/common_progress_3.png b/Assets/arts/textures/ui/common_temp/common_progress_3.png
deleted file mode 100644
index 149b70186..000000000
Binary files a/Assets/arts/textures/ui/common_temp/common_progress_3.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/common_progress_3.png.meta b/Assets/arts/textures/ui/common_temp/common_progress_3.png.meta
deleted file mode 100644
index 3252f345c..000000000
--- a/Assets/arts/textures/ui/common_temp/common_progress_3.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: d375738329fc0b24eba9adec4900cd65
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 6, y: 7, z: 7, w: 7}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/common_temp.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common_temp/common_progress_4.png b/Assets/arts/textures/ui/common_temp/common_progress_4.png
deleted file mode 100644
index ce1c5f8ab..000000000
Binary files a/Assets/arts/textures/ui/common_temp/common_progress_4.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/common_progress_5_bg.png b/Assets/arts/textures/ui/common_temp/common_progress_5_bg.png
deleted file mode 100644
index 8672fda17..000000000
Binary files a/Assets/arts/textures/ui/common_temp/common_progress_5_bg.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/common_progress_5_bg.png.meta b/Assets/arts/textures/ui/common_temp/common_progress_5_bg.png.meta
deleted file mode 100644
index 8e246aa37..000000000
--- a/Assets/arts/textures/ui/common_temp/common_progress_5_bg.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: 402e3af17d57da94e9f2afbda35f94bd
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 9, y: 15, z: 9, w: 11}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/common_temp.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common_temp/common_progress_6.png b/Assets/arts/textures/ui/common_temp/common_progress_6.png
deleted file mode 100644
index 3f84221b3..000000000
Binary files a/Assets/arts/textures/ui/common_temp/common_progress_6.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/common_progress_6.png.meta b/Assets/arts/textures/ui/common_temp/common_progress_6.png.meta
deleted file mode 100644
index c0367744d..000000000
--- a/Assets/arts/textures/ui/common_temp/common_progress_6.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: 60ec8c24465bfca4781083710975a225
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 9, y: 9, z: 9, w: 9}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/common_temp.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common_temp/common_progress_bg_1.png b/Assets/arts/textures/ui/common_temp/common_progress_bg_1.png
deleted file mode 100644
index 8fde70c55..000000000
Binary files a/Assets/arts/textures/ui/common_temp/common_progress_bg_1.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/common_progress_bg_1.png.meta b/Assets/arts/textures/ui/common_temp/common_progress_bg_1.png.meta
deleted file mode 100644
index 343ddad5e..000000000
--- a/Assets/arts/textures/ui/common_temp/common_progress_bg_1.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: ff604a18fbb77694a833d9b4fb867854
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 6, y: 0, z: 6, w: 0}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/common_temp.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common_temp/common_progress_bg_3.png b/Assets/arts/textures/ui/common_temp/common_progress_bg_3.png
deleted file mode 100644
index 49d99b3f8..000000000
Binary files a/Assets/arts/textures/ui/common_temp/common_progress_bg_3.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/common_progress_bg_3.png.meta b/Assets/arts/textures/ui/common_temp/common_progress_bg_3.png.meta
deleted file mode 100644
index 753bf2107..000000000
--- a/Assets/arts/textures/ui/common_temp/common_progress_bg_3.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: c1c674720882aa14bbfa27efe47bd455
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 6, y: 6, z: 6, w: 6}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/common_temp.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common_temp/recharge_bg_10.png b/Assets/arts/textures/ui/common_temp/recharge_bg_10.png
deleted file mode 100644
index 4291d4adb..000000000
Binary files a/Assets/arts/textures/ui/common_temp/recharge_bg_10.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/recharge_bg_10.png.meta b/Assets/arts/textures/ui/common_temp/recharge_bg_10.png.meta
deleted file mode 100644
index 648ca3240..000000000
--- a/Assets/arts/textures/ui/common_temp/recharge_bg_10.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: 2a79456b07e6a384995efccb7b3d1815
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/common_temp.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/common_temp/recharge_dialog_1.png b/Assets/arts/textures/ui/common_temp/recharge_dialog_1.png
deleted file mode 100644
index 52d730119..000000000
Binary files a/Assets/arts/textures/ui/common_temp/recharge_dialog_1.png and /dev/null differ
diff --git a/Assets/arts/textures/ui/common_temp/recharge_dialog_1.png.meta b/Assets/arts/textures/ui/common_temp/recharge_dialog_1.png.meta
deleted file mode 100644
index 3a6d43bab..000000000
--- a/Assets/arts/textures/ui/common_temp/recharge_dialog_1.png.meta
+++ /dev/null
@@ -1,132 +0,0 @@
-fileFormatVersion: 2
-guid: 5946fd26eb24672428df1a7f0be57356
-TextureImporter:
- internalIDToNameTable: []
- externalObjects: {}
- serializedVersion: 11
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 1
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapsPreserveCoverage: 0
- alphaTestReferenceValue: 0.5
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- streamingMipmaps: 0
- streamingMipmapsPriority: 0
- vTOnly: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- serializedVersion: 2
- filterMode: 1
- aniso: 1
- mipBias: 0
- wrapU: 1
- wrapV: 1
- wrapW: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 1
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spriteGenerateFallbackPhysicsShape: 1
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 8
- textureShape: 1
- singleChannelComponent: 0
- flipbookRows: 1
- flipbookColumns: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- ignorePngGamma: 0
- applyGammaDecoding: 0
- platformSettings:
- - serializedVersion: 3
- buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: -1
- textureCompression: 1
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Android
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 47
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: iPhone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 50
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- - serializedVersion: 3
- buildTarget: Standalone
- maxTextureSize: 2048
- resizeAlgorithm: 0
- textureFormat: 12
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 1
- androidETC2FallbackOverride: 0
- forceMaximumCompressionQuality_BC6H_BC7: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- physicsShape: []
- bones: []
- spriteID: 5e97eb03825dee720800000000000000
- internalID: 0
- vertices: []
- indices:
- edges: []
- weights: []
- secondaryTextures: []
- spritePackingTag:
- pSDRemoveMatte: 0
- pSDShowRemoveMatteOption: 0
- userData:
- assetBundleName: arts/textures/ui/common_temp.ab
- assetBundleVariant:
diff --git a/Assets/arts/textures/ui/fund.meta b/Assets/arts/textures/ui/fund.meta
new file mode 100644
index 000000000..1346cbfe5
--- /dev/null
+++ b/Assets/arts/textures/ui/fund.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: c3e6e281729da744dbc10b18077ca594
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/fund/fund_bg_1.png b/Assets/arts/textures/ui/fund/fund_bg_1.png
new file mode 100644
index 000000000..f6b38ec29
Binary files /dev/null and b/Assets/arts/textures/ui/fund/fund_bg_1.png differ
diff --git a/Assets/arts/textures/ui/fund/fund_bg_1.png.meta b/Assets/arts/textures/ui/fund/fund_bg_1.png.meta
new file mode 100644
index 000000000..34f1f4bd2
--- /dev/null
+++ b/Assets/arts/textures/ui/fund/fund_bg_1.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 9e9516f6479744f4288e52e5b3280fe1
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 92, y: 52, z: 20, w: 44}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/fund/fund_bg_2.png b/Assets/arts/textures/ui/fund/fund_bg_2.png
new file mode 100644
index 000000000..aaaf8d58c
Binary files /dev/null and b/Assets/arts/textures/ui/fund/fund_bg_2.png differ
diff --git a/Assets/arts/textures/ui/fund/fund_bg_2.png.meta b/Assets/arts/textures/ui/fund/fund_bg_2.png.meta
new file mode 100644
index 000000000..9a65cfa94
--- /dev/null
+++ b/Assets/arts/textures/ui/fund/fund_bg_2.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 5b183fcdedee76849ab5513765c1471e
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/fund/fund_bg_3.png b/Assets/arts/textures/ui/fund/fund_bg_3.png
new file mode 100644
index 000000000..ce69e3bec
Binary files /dev/null and b/Assets/arts/textures/ui/fund/fund_bg_3.png differ
diff --git a/Assets/arts/textures/ui/fund/fund_bg_3.png.meta b/Assets/arts/textures/ui/fund/fund_bg_3.png.meta
new file mode 100644
index 000000000..e90a3378d
--- /dev/null
+++ b/Assets/arts/textures/ui/fund/fund_bg_3.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 29242785482b051488d96c2ecd2e761b
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/fund/fund_bg_4.png b/Assets/arts/textures/ui/fund/fund_bg_4.png
new file mode 100644
index 000000000..e2fd6f38d
Binary files /dev/null and b/Assets/arts/textures/ui/fund/fund_bg_4.png differ
diff --git a/Assets/arts/textures/ui/fund/fund_bg_4.png.meta b/Assets/arts/textures/ui/fund/fund_bg_4.png.meta
new file mode 100644
index 000000000..5be5ce5f5
--- /dev/null
+++ b/Assets/arts/textures/ui/fund/fund_bg_4.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 08681436652428f4199aad1883302d26
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/fund/fund_bg_5.png b/Assets/arts/textures/ui/fund/fund_bg_5.png
new file mode 100644
index 000000000..014fb1287
Binary files /dev/null and b/Assets/arts/textures/ui/fund/fund_bg_5.png differ
diff --git a/Assets/arts/textures/ui/fund/fund_bg_5.png.meta b/Assets/arts/textures/ui/fund/fund_bg_5.png.meta
new file mode 100644
index 000000000..29b3bd590
--- /dev/null
+++ b/Assets/arts/textures/ui/fund/fund_bg_5.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 67ce04f31afb36f44923ee511b42a74f
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/fund/fund_bg_6.png b/Assets/arts/textures/ui/fund/fund_bg_6.png
new file mode 100644
index 000000000..814eb76fd
Binary files /dev/null and b/Assets/arts/textures/ui/fund/fund_bg_6.png differ
diff --git a/Assets/arts/textures/ui/fund/fund_bg_6.png.meta b/Assets/arts/textures/ui/fund/fund_bg_6.png.meta
new file mode 100644
index 000000000..0a630b090
--- /dev/null
+++ b/Assets/arts/textures/ui/fund/fund_bg_6.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: fc74996e23010ec4d973d59b17d716cd
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/fund/fund_bg_7.png b/Assets/arts/textures/ui/fund/fund_bg_7.png
new file mode 100644
index 000000000..df550158b
Binary files /dev/null and b/Assets/arts/textures/ui/fund/fund_bg_7.png differ
diff --git a/Assets/arts/textures/ui/fund/fund_bg_7.png.meta b/Assets/arts/textures/ui/fund/fund_bg_7.png.meta
new file mode 100644
index 000000000..038160204
--- /dev/null
+++ b/Assets/arts/textures/ui/fund/fund_bg_7.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 84e4e674d7fa58846ad929676cc84a5d
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/fund/fund_bg_8.png b/Assets/arts/textures/ui/fund/fund_bg_8.png
new file mode 100644
index 000000000..3c9511e77
Binary files /dev/null and b/Assets/arts/textures/ui/fund/fund_bg_8.png differ
diff --git a/Assets/arts/textures/ui/fund/fund_bg_8.png.meta b/Assets/arts/textures/ui/fund/fund_bg_8.png.meta
new file mode 100644
index 000000000..a0b99e7db
--- /dev/null
+++ b/Assets/arts/textures/ui/fund/fund_bg_8.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 5843d5c65818a8b408ca7ed468f73e0e
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/fund/fund_select.png b/Assets/arts/textures/ui/fund/fund_select.png
new file mode 100644
index 000000000..fce309460
Binary files /dev/null and b/Assets/arts/textures/ui/fund/fund_select.png differ
diff --git a/Assets/arts/textures/ui/fund/fund_select.png.meta b/Assets/arts/textures/ui/fund/fund_select.png.meta
new file mode 100644
index 000000000..3500938ef
--- /dev/null
+++ b/Assets/arts/textures/ui/fund/fund_select.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: be610284f4e356d42b2dc15178d3d6ed
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/hero/match_1.png b/Assets/arts/textures/ui/hero/match_1.png
new file mode 100644
index 000000000..91e5d0978
Binary files /dev/null and b/Assets/arts/textures/ui/hero/match_1.png differ
diff --git a/Assets/arts/textures/ui/hero/match_1.png.meta b/Assets/arts/textures/ui/hero/match_1.png.meta
new file mode 100644
index 000000000..9b39d68a0
--- /dev/null
+++ b/Assets/arts/textures/ui/hero/match_1.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 5cd566b6505c7f0439a8a4f414ac4a98
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/hero/match_2.png b/Assets/arts/textures/ui/hero/match_2.png
new file mode 100644
index 000000000..8c7b8d7df
Binary files /dev/null and b/Assets/arts/textures/ui/hero/match_2.png differ
diff --git a/Assets/arts/textures/ui/hero/match_2.png.meta b/Assets/arts/textures/ui/hero/match_2.png.meta
new file mode 100644
index 000000000..e5bd7a7a1
--- /dev/null
+++ b/Assets/arts/textures/ui/hero/match_2.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: af2f52d7aeee8364bbe555c962fb44b6
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/hero/match_3.png b/Assets/arts/textures/ui/hero/match_3.png
new file mode 100644
index 000000000..86c211610
Binary files /dev/null and b/Assets/arts/textures/ui/hero/match_3.png differ
diff --git a/Assets/arts/textures/ui/hero/match_3.png.meta b/Assets/arts/textures/ui/hero/match_3.png.meta
new file mode 100644
index 000000000..2a4ef8584
--- /dev/null
+++ b/Assets/arts/textures/ui/hero/match_3.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 172d4d5f9a8bb9e4fa2be8cf0b90403f
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/hero/match_4.png b/Assets/arts/textures/ui/hero/match_4.png
new file mode 100644
index 000000000..cf845cafb
Binary files /dev/null and b/Assets/arts/textures/ui/hero/match_4.png differ
diff --git a/Assets/arts/textures/ui/hero/match_4.png.meta b/Assets/arts/textures/ui/hero/match_4.png.meta
new file mode 100644
index 000000000..434dc1594
--- /dev/null
+++ b/Assets/arts/textures/ui/hero/match_4.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: b4a559b38eb78474995dc80ba996a3fa
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/hero/match_5.png b/Assets/arts/textures/ui/hero/match_5.png
new file mode 100644
index 000000000..46b9201cd
Binary files /dev/null and b/Assets/arts/textures/ui/hero/match_5.png differ
diff --git a/Assets/arts/textures/ui/hero/match_5.png.meta b/Assets/arts/textures/ui/hero/match_5.png.meta
new file mode 100644
index 000000000..ac703a7ee
--- /dev/null
+++ b/Assets/arts/textures/ui/hero/match_5.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 43caa329b5f2f364584532df1b3c95fe
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/mail.meta b/Assets/arts/textures/ui/mail.meta
new file mode 100644
index 000000000..9377faac5
--- /dev/null
+++ b/Assets/arts/textures/ui/mail.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 95d2705562a37d64d826cee76d757f98
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/mail/mail_board_1.png b/Assets/arts/textures/ui/mail/mail_board_1.png
new file mode 100644
index 000000000..ee46990cd
Binary files /dev/null and b/Assets/arts/textures/ui/mail/mail_board_1.png differ
diff --git a/Assets/arts/textures/ui/mail/mail_board_1.png.meta b/Assets/arts/textures/ui/mail/mail_board_1.png.meta
new file mode 100644
index 000000000..777756271
--- /dev/null
+++ b/Assets/arts/textures/ui/mail/mail_board_1.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 0c685b353f6fe5f45a158f6d79f60871
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 28, z: 0, w: 28}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/mail.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/mail/mail_dec_1.png b/Assets/arts/textures/ui/mail/mail_dec_1.png
new file mode 100644
index 000000000..aecd8eac7
Binary files /dev/null and b/Assets/arts/textures/ui/mail/mail_dec_1.png differ
diff --git a/Assets/arts/textures/ui/mail/mail_dec_1.png.meta b/Assets/arts/textures/ui/mail/mail_dec_1.png.meta
new file mode 100644
index 000000000..5b416be35
--- /dev/null
+++ b/Assets/arts/textures/ui/mail/mail_dec_1.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 524d8ada3219633418886910b5b1fe11
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/mail.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/mail/mail_dec_2.png b/Assets/arts/textures/ui/mail/mail_dec_2.png
new file mode 100644
index 000000000..39a67cda8
Binary files /dev/null and b/Assets/arts/textures/ui/mail/mail_dec_2.png differ
diff --git a/Assets/arts/textures/ui/mail/mail_dec_2.png.meta b/Assets/arts/textures/ui/mail/mail_dec_2.png.meta
new file mode 100644
index 000000000..b18764117
--- /dev/null
+++ b/Assets/arts/textures/ui/mail/mail_dec_2.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 9b409fa2a72a4bb41bc4dc3578bb3cd0
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/mail.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/mail/mail_dec_3.png b/Assets/arts/textures/ui/mail/mail_dec_3.png
new file mode 100644
index 000000000..c67b558fe
Binary files /dev/null and b/Assets/arts/textures/ui/mail/mail_dec_3.png differ
diff --git a/Assets/arts/textures/ui/mail/mail_dec_3.png.meta b/Assets/arts/textures/ui/mail/mail_dec_3.png.meta
new file mode 100644
index 000000000..c49c1be36
--- /dev/null
+++ b/Assets/arts/textures/ui/mail/mail_dec_3.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 8efeb4a8c4b657d4da2483daad2d1267
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/mail.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/mail/mail_dec_4.png b/Assets/arts/textures/ui/mail/mail_dec_4.png
new file mode 100644
index 000000000..1ecda63a8
Binary files /dev/null and b/Assets/arts/textures/ui/mail/mail_dec_4.png differ
diff --git a/Assets/arts/textures/ui/mail/mail_dec_4.png.meta b/Assets/arts/textures/ui/mail/mail_dec_4.png.meta
new file mode 100644
index 000000000..7cc9ce9ac
--- /dev/null
+++ b/Assets/arts/textures/ui/mail/mail_dec_4.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: dd37630b5e7d6d54983be68b235b160f
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/mail.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/mail/mail_dot.png b/Assets/arts/textures/ui/mail/mail_dot.png
new file mode 100644
index 000000000..c30fd7e42
Binary files /dev/null and b/Assets/arts/textures/ui/mail/mail_dot.png differ
diff --git a/Assets/arts/textures/ui/mail/mail_dot.png.meta b/Assets/arts/textures/ui/mail/mail_dot.png.meta
new file mode 100644
index 000000000..9d5d22ce3
--- /dev/null
+++ b/Assets/arts/textures/ui/mail/mail_dot.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 33bec6471f24bf6468e5318b6cec9109
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/mail.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/mail/mail_new.png b/Assets/arts/textures/ui/mail/mail_new.png
new file mode 100644
index 000000000..f4c454388
Binary files /dev/null and b/Assets/arts/textures/ui/mail/mail_new.png differ
diff --git a/Assets/arts/textures/ui/mail/mail_new.png.meta b/Assets/arts/textures/ui/mail/mail_new.png.meta
new file mode 100644
index 000000000..722dc329a
--- /dev/null
+++ b/Assets/arts/textures/ui/mail/mail_new.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 7d49105bbb826fe4592b21c43422fce1
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/mail.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/main/main_btn_fund.png b/Assets/arts/textures/ui/main/main_btn_fund.png
new file mode 100644
index 000000000..06d2ec9fe
Binary files /dev/null and b/Assets/arts/textures/ui/main/main_btn_fund.png differ
diff --git a/Assets/arts/textures/ui/main/main_btn_fund.png.meta b/Assets/arts/textures/ui/main/main_btn_fund.png.meta
new file mode 100644
index 000000000..e5e990734
--- /dev/null
+++ b/Assets/arts/textures/ui/main/main_btn_fund.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 5962af8bc86575c459b454d2266f805a
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/main/main_btn_sevenday.png b/Assets/arts/textures/ui/main/main_btn_sevenday.png
index 3f59689c4..0963c008e 100644
Binary files a/Assets/arts/textures/ui/main/main_btn_sevenday.png and b/Assets/arts/textures/ui/main/main_btn_sevenday.png differ
diff --git a/Assets/arts/textures/ui/main/main_btn_sevenday.png.meta b/Assets/arts/textures/ui/main/main_btn_sevenday.png.meta
index eb4b5f08a..bb045a9d1 100644
--- a/Assets/arts/textures/ui/main/main_btn_sevenday.png.meta
+++ b/Assets/arts/textures/ui/main/main_btn_sevenday.png.meta
@@ -1,5 +1,5 @@
fileFormatVersion: 2
-guid: 3b5c4427fd9d7e14b936f1d25b28aa07
+guid: ecff65bf8ef41a24ebae8ea1de3c262c
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName: arts/textures/ui/main.ab
+ assetBundleName:
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/main/main_dec_3.png.meta b/Assets/arts/textures/ui/main/main_dec_3.png.meta
index 515cf9721..6934f34ac 100644
--- a/Assets/arts/textures/ui/main/main_dec_3.png.meta
+++ b/Assets/arts/textures/ui/main/main_dec_3.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/main.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/main/main_dec_4.png.meta b/Assets/arts/textures/ui/main/main_dec_4.png.meta
index 881e1a5ee..837b538fc 100644
--- a/Assets/arts/textures/ui/main/main_dec_4.png.meta
+++ b/Assets/arts/textures/ui/main/main_dec_4.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/main.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/player.meta b/Assets/arts/textures/ui/player.meta
new file mode 100644
index 000000000..46428cb8a
--- /dev/null
+++ b/Assets/arts/textures/ui/player.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 7ddc16d5afa5d9e4e9e96f0184d85243
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/player/player_bg_1.png b/Assets/arts/textures/ui/player/player_bg_1.png
new file mode 100644
index 000000000..6f390aab1
Binary files /dev/null and b/Assets/arts/textures/ui/player/player_bg_1.png differ
diff --git a/Assets/arts/textures/ui/player/player_bg_1.png.meta b/Assets/arts/textures/ui/player/player_bg_1.png.meta
new file mode 100644
index 000000000..115553c6b
--- /dev/null
+++ b/Assets/arts/textures/ui/player/player_bg_1.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: f6d9e2ab089fcd74aa8f8260e78eb95f
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/player/player_title.png b/Assets/arts/textures/ui/player/player_title.png
new file mode 100644
index 000000000..6a4208ff8
Binary files /dev/null and b/Assets/arts/textures/ui/player/player_title.png differ
diff --git a/Assets/arts/textures/ui/player/player_title.png.meta b/Assets/arts/textures/ui/player/player_title.png.meta
new file mode 100644
index 000000000..ff49c027c
--- /dev/null
+++ b/Assets/arts/textures/ui/player/player_title.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 8376ad06b717e0040be4de20510db956
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/shop/shop_bg_1.png.meta b/Assets/arts/textures/ui/shop/shop_bg_1.png.meta
index 9ebe5ed84..84a915109 100644
--- a/Assets/arts/textures/ui/shop/shop_bg_1.png.meta
+++ b/Assets/arts/textures/ui/shop/shop_bg_1.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/shop.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/shop/shop_bg_10.png.meta b/Assets/arts/textures/ui/shop/shop_bg_10.png.meta
index 3fbe8ef17..5c071b1c2 100644
--- a/Assets/arts/textures/ui/shop/shop_bg_10.png.meta
+++ b/Assets/arts/textures/ui/shop/shop_bg_10.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/shop.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/shop/shop_bg_11.png.meta b/Assets/arts/textures/ui/shop/shop_bg_11.png.meta
index 9ee9b6f4d..2b7c67082 100644
--- a/Assets/arts/textures/ui/shop/shop_bg_11.png.meta
+++ b/Assets/arts/textures/ui/shop/shop_bg_11.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/shop.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/shop/shop_bg_12.png b/Assets/arts/textures/ui/shop/shop_bg_12.png
new file mode 100644
index 000000000..e3ef2ad32
Binary files /dev/null and b/Assets/arts/textures/ui/shop/shop_bg_12.png differ
diff --git a/Assets/arts/textures/ui/shop/shop_bg_12.png.meta b/Assets/arts/textures/ui/shop/shop_bg_12.png.meta
new file mode 100644
index 000000000..8148fe09e
--- /dev/null
+++ b/Assets/arts/textures/ui/shop/shop_bg_12.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 07ea4006b8ffde04f97a0cc804fe5400
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/shop.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/shop/shop_bg_2.png.meta b/Assets/arts/textures/ui/shop/shop_bg_2.png.meta
index fa5fc2eda..bfabb0c0f 100644
--- a/Assets/arts/textures/ui/shop/shop_bg_2.png.meta
+++ b/Assets/arts/textures/ui/shop/shop_bg_2.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/shop.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/shop/shop_bg_3.png.meta b/Assets/arts/textures/ui/shop/shop_bg_3.png.meta
index f46e1515a..bdc7cc35a 100644
--- a/Assets/arts/textures/ui/shop/shop_bg_3.png.meta
+++ b/Assets/arts/textures/ui/shop/shop_bg_3.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/shop.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/shop/shop_bg_4.png.meta b/Assets/arts/textures/ui/shop/shop_bg_4.png.meta
index 8d457f088..907841362 100644
--- a/Assets/arts/textures/ui/shop/shop_bg_4.png.meta
+++ b/Assets/arts/textures/ui/shop/shop_bg_4.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/shop.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/shop/shop_bg_5.png.meta b/Assets/arts/textures/ui/shop/shop_bg_5.png.meta
index 46728e2ab..4b48b9e81 100644
--- a/Assets/arts/textures/ui/shop/shop_bg_5.png.meta
+++ b/Assets/arts/textures/ui/shop/shop_bg_5.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/shop.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/shop/shop_bg_6.png.meta b/Assets/arts/textures/ui/shop/shop_bg_6.png.meta
index 32cfee1f0..a5b7a3f17 100644
--- a/Assets/arts/textures/ui/shop/shop_bg_6.png.meta
+++ b/Assets/arts/textures/ui/shop/shop_bg_6.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/shop.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/shop/shop_bg_7.png.meta b/Assets/arts/textures/ui/shop/shop_bg_7.png.meta
index 0660142fa..3bcb3d454 100644
--- a/Assets/arts/textures/ui/shop/shop_bg_7.png.meta
+++ b/Assets/arts/textures/ui/shop/shop_bg_7.png.meta
@@ -47,7 +47,7 @@ TextureImporter:
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteBorder: {x: 5, y: 0, z: 25, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/shop.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/shop/shop_bg_8.png.meta b/Assets/arts/textures/ui/shop/shop_bg_8.png.meta
index 1b01485ca..72036ff72 100644
--- a/Assets/arts/textures/ui/shop/shop_bg_8.png.meta
+++ b/Assets/arts/textures/ui/shop/shop_bg_8.png.meta
@@ -47,7 +47,7 @@ TextureImporter:
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteBorder: {x: 20, y: 16, z: 20, w: 16}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/shop.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/shop/shop_bg_9.png.meta b/Assets/arts/textures/ui/shop/shop_bg_9.png.meta
index cb0148df9..52888c539 100644
--- a/Assets/arts/textures/ui/shop/shop_bg_9.png.meta
+++ b/Assets/arts/textures/ui/shop/shop_bg_9.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/shop.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/shop/shop_board_1.png.meta b/Assets/arts/textures/ui/shop/shop_board_1.png.meta
index 5da3cc830..687dc44e4 100644
--- a/Assets/arts/textures/ui/shop/shop_board_1.png.meta
+++ b/Assets/arts/textures/ui/shop/shop_board_1.png.meta
@@ -47,7 +47,7 @@ TextureImporter:
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteBorder: {x: 23, y: 23, z: 23, w: 23}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/shop.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/shop/shop_board_2.png.meta b/Assets/arts/textures/ui/shop/shop_board_2.png.meta
index 6c50d0230..73520079f 100644
--- a/Assets/arts/textures/ui/shop/shop_board_2.png.meta
+++ b/Assets/arts/textures/ui/shop/shop_board_2.png.meta
@@ -47,7 +47,7 @@ TextureImporter:
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteBorder: {x: 18, y: 18, z: 18, w: 18}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/shop.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/shop/shop_board_3.png.meta b/Assets/arts/textures/ui/shop/shop_board_3.png.meta
index 40628af6d..3d992c794 100644
--- a/Assets/arts/textures/ui/shop/shop_board_3.png.meta
+++ b/Assets/arts/textures/ui/shop/shop_board_3.png.meta
@@ -47,7 +47,7 @@ TextureImporter:
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteBorder: {x: 24, y: 24, z: 24, w: 24}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/shop.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/shop/shop_chest_1.png.meta b/Assets/arts/textures/ui/shop/shop_chest_1.png.meta
index 3c4981977..133b36662 100644
--- a/Assets/arts/textures/ui/shop/shop_chest_1.png.meta
+++ b/Assets/arts/textures/ui/shop/shop_chest_1.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/shop.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/shop/shop_chest_2.png.meta b/Assets/arts/textures/ui/shop/shop_chest_2.png.meta
index 255c038d0..b7ceec705 100644
--- a/Assets/arts/textures/ui/shop/shop_chest_2.png.meta
+++ b/Assets/arts/textures/ui/shop/shop_chest_2.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/shop.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/shop/shop_chest_3.png.meta b/Assets/arts/textures/ui/shop/shop_chest_3.png.meta
index 168dba073..fde4a17d3 100644
--- a/Assets/arts/textures/ui/shop/shop_chest_3.png.meta
+++ b/Assets/arts/textures/ui/shop/shop_chest_3.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/shop.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/shop/shop_dec_1.png b/Assets/arts/textures/ui/shop/shop_dec_1.png
new file mode 100644
index 000000000..06b786dd6
Binary files /dev/null and b/Assets/arts/textures/ui/shop/shop_dec_1.png differ
diff --git a/Assets/arts/textures/ui/shop/shop_dec_1.png.meta b/Assets/arts/textures/ui/shop/shop_dec_1.png.meta
new file mode 100644
index 000000000..bd47f1ca2
--- /dev/null
+++ b/Assets/arts/textures/ui/shop/shop_dec_1.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: cdc12648211453c419d84b2cd3bc7bbf
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/shop.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/shop/shop_dec_2.png b/Assets/arts/textures/ui/shop/shop_dec_2.png
new file mode 100644
index 000000000..579a3834c
Binary files /dev/null and b/Assets/arts/textures/ui/shop/shop_dec_2.png differ
diff --git a/Assets/arts/textures/ui/shop/shop_dec_2.png.meta b/Assets/arts/textures/ui/shop/shop_dec_2.png.meta
new file mode 100644
index 000000000..1a00ea17e
--- /dev/null
+++ b/Assets/arts/textures/ui/shop/shop_dec_2.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 733aebc4de524db438a1538e1ef9e575
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: arts/textures/ui/shop.ab
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/shop/shop_diamond_1.png.meta b/Assets/arts/textures/ui/shop/shop_diamond_1.png.meta
index bbae2f16d..9689e5fcc 100644
--- a/Assets/arts/textures/ui/shop/shop_diamond_1.png.meta
+++ b/Assets/arts/textures/ui/shop/shop_diamond_1.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/shop.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/shop/shop_diamond_2.png.meta b/Assets/arts/textures/ui/shop/shop_diamond_2.png.meta
index 0a66fe426..750c114cb 100644
--- a/Assets/arts/textures/ui/shop/shop_diamond_2.png.meta
+++ b/Assets/arts/textures/ui/shop/shop_diamond_2.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/shop.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/shop/shop_diamond_3.png.meta b/Assets/arts/textures/ui/shop/shop_diamond_3.png.meta
index 313da304b..690ffefda 100644
--- a/Assets/arts/textures/ui/shop/shop_diamond_3.png.meta
+++ b/Assets/arts/textures/ui/shop/shop_diamond_3.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/shop.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/shop/shop_diamond_4.png.meta b/Assets/arts/textures/ui/shop/shop_diamond_4.png.meta
index 9b6095152..1cb80a5d4 100644
--- a/Assets/arts/textures/ui/shop/shop_diamond_4.png.meta
+++ b/Assets/arts/textures/ui/shop/shop_diamond_4.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/shop.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/shop/shop_diamond_5.png.meta b/Assets/arts/textures/ui/shop/shop_diamond_5.png.meta
index 3990b271a..57101a13c 100644
--- a/Assets/arts/textures/ui/shop/shop_diamond_5.png.meta
+++ b/Assets/arts/textures/ui/shop/shop_diamond_5.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/shop.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/shop/shop_diamond_6.png.meta b/Assets/arts/textures/ui/shop/shop_diamond_6.png.meta
index b16ca6737..b9aa277f2 100644
--- a/Assets/arts/textures/ui/shop/shop_diamond_6.png.meta
+++ b/Assets/arts/textures/ui/shop/shop_diamond_6.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/shop.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/shop/shop_diamond_7.png.meta b/Assets/arts/textures/ui/shop/shop_diamond_7.png.meta
index 579536292..6aeeb1a56 100644
--- a/Assets/arts/textures/ui/shop/shop_diamond_7.png.meta
+++ b/Assets/arts/textures/ui/shop/shop_diamond_7.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/shop.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/shop/shop_diamond_8.png.meta b/Assets/arts/textures/ui/shop/shop_diamond_8.png.meta
index 7ea34969e..3ac3c686f 100644
--- a/Assets/arts/textures/ui/shop/shop_diamond_8.png.meta
+++ b/Assets/arts/textures/ui/shop/shop_diamond_8.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/shop.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/shop/shop_pig_diamond_1.png b/Assets/arts/textures/ui/shop/shop_pig_diamond_1.png
new file mode 100644
index 000000000..338b97a22
Binary files /dev/null and b/Assets/arts/textures/ui/shop/shop_pig_diamond_1.png differ
diff --git a/Assets/arts/textures/ui/shop/shop_pig_diamond_1.png.meta b/Assets/arts/textures/ui/shop/shop_pig_diamond_1.png.meta
new file mode 100644
index 000000000..317c0e016
--- /dev/null
+++ b/Assets/arts/textures/ui/shop/shop_pig_diamond_1.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 543b45c81e6589943bbf1369774e78c6
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/shop/shop_pig_diamond_2.png b/Assets/arts/textures/ui/shop/shop_pig_diamond_2.png
new file mode 100644
index 000000000..3c0ab2a36
Binary files /dev/null and b/Assets/arts/textures/ui/shop/shop_pig_diamond_2.png differ
diff --git a/Assets/arts/textures/ui/shop/shop_pig_diamond_2.png.meta b/Assets/arts/textures/ui/shop/shop_pig_diamond_2.png.meta
new file mode 100644
index 000000000..79a654df0
--- /dev/null
+++ b/Assets/arts/textures/ui/shop/shop_pig_diamond_2.png.meta
@@ -0,0 +1,132 @@
+fileFormatVersion: 2
+guid: 5bcea8dc84d5bde4b873f20997eaf2ae
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ vTOnly: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 1
+ mipBias: 0
+ wrapU: 1
+ wrapV: 1
+ wrapW: 1
+ nPOTScale: 0
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ textureShape: 1
+ singleChannelComponent: 0
+ flipbookRows: 1
+ flipbookColumns: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ ignorePngGamma: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Android
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 47
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: iPhone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 50
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ - serializedVersion: 3
+ buildTarget: Standalone
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: 12
+ textureCompression: 0
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 1
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID: 5e97eb03825dee720800000000000000
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/arts/textures/ui/shop/shop_species_1.png.meta b/Assets/arts/textures/ui/shop/shop_species_1.png.meta
index d40000712..38459cbd9 100644
--- a/Assets/arts/textures/ui/shop/shop_species_1.png.meta
+++ b/Assets/arts/textures/ui/shop/shop_species_1.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/shop.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/shop/shop_species_2.png.meta b/Assets/arts/textures/ui/shop/shop_species_2.png.meta
index 861f6983f..80206642c 100644
--- a/Assets/arts/textures/ui/shop/shop_species_2.png.meta
+++ b/Assets/arts/textures/ui/shop/shop_species_2.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/shop.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/shop/shop_species_3.png.meta b/Assets/arts/textures/ui/shop/shop_species_3.png.meta
index 988f19670..f41301941 100644
--- a/Assets/arts/textures/ui/shop/shop_species_3.png.meta
+++ b/Assets/arts/textures/ui/shop/shop_species_3.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/shop.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/task/task_bg_1.png.meta b/Assets/arts/textures/ui/task/task_bg_1.png.meta
index f9b761fe5..ea65e8c69 100644
--- a/Assets/arts/textures/ui/task/task_bg_1.png.meta
+++ b/Assets/arts/textures/ui/task/task_bg_1.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/task.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/task/task_bg_2.png.meta b/Assets/arts/textures/ui/task/task_bg_2.png.meta
index 42fdb28f5..8915da9e0 100644
--- a/Assets/arts/textures/ui/task/task_bg_2.png.meta
+++ b/Assets/arts/textures/ui/task/task_bg_2.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/task.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/task/task_bg_3.png.meta b/Assets/arts/textures/ui/task/task_bg_3.png.meta
index c878c7648..b67484956 100644
--- a/Assets/arts/textures/ui/task/task_bg_3.png.meta
+++ b/Assets/arts/textures/ui/task/task_bg_3.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/task.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/task/task_bg_4.png.meta b/Assets/arts/textures/ui/task/task_bg_4.png.meta
index 38e90a33e..1f174c09f 100644
--- a/Assets/arts/textures/ui/task/task_bg_4.png.meta
+++ b/Assets/arts/textures/ui/task/task_bg_4.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/task.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/task/task_chest_1.png.meta b/Assets/arts/textures/ui/task/task_chest_1.png.meta
index 75e5bbd9f..d063ad77e 100644
--- a/Assets/arts/textures/ui/task/task_chest_1.png.meta
+++ b/Assets/arts/textures/ui/task/task_chest_1.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/task.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/task/task_chest_2.png.meta b/Assets/arts/textures/ui/task/task_chest_2.png.meta
index 1d0d3f23c..616c1995c 100644
--- a/Assets/arts/textures/ui/task/task_chest_2.png.meta
+++ b/Assets/arts/textures/ui/task/task_chest_2.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/task.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/task/task_dec_1.png.meta b/Assets/arts/textures/ui/task/task_dec_1.png.meta
index abf6d16e6..d1c0cd303 100644
--- a/Assets/arts/textures/ui/task/task_dec_1.png.meta
+++ b/Assets/arts/textures/ui/task/task_dec_1.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/task.ab
assetBundleVariant:
diff --git a/Assets/arts/textures/ui/task/task_dec_2.png.meta b/Assets/arts/textures/ui/task/task_dec_2.png.meta
index 54aecf300..c8569ad45 100644
--- a/Assets/arts/textures/ui/task/task_dec_2.png.meta
+++ b/Assets/arts/textures/ui/task/task_dec_2.png.meta
@@ -128,5 +128,5 @@ TextureImporter:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
- assetBundleName:
+ assetBundleName: arts/textures/ui/task.ab
assetBundleVariant:
diff --git a/Assets/lua/app/bf/unity/uiprefab_object.lua.bytes b/Assets/lua/app/bf/unity/uiprefab_object.lua.bytes
index dfb275135..0b6153101 100644
Binary files a/Assets/lua/app/bf/unity/uiprefab_object.lua.bytes and b/Assets/lua/app/bf/unity/uiprefab_object.lua.bytes differ
diff --git a/Assets/lua/app/bf/unity/unity.lua.bytes b/Assets/lua/app/bf/unity/unity.lua.bytes
index df693000a..d6f9af503 100644
Binary files a/Assets/lua/app/bf/unity/unity.lua.bytes and b/Assets/lua/app/bf/unity/unity.lua.bytes differ
diff --git a/Assets/lua/app/common/bi_report.lua.bytes b/Assets/lua/app/common/bi_report.lua.bytes
index 1b35f949e..39a34776c 100644
Binary files a/Assets/lua/app/common/bi_report.lua.bytes and b/Assets/lua/app/common/bi_report.lua.bytes differ
diff --git a/Assets/lua/app/common/data_manager.lua.bytes b/Assets/lua/app/common/data_manager.lua.bytes
index db7fd327c..49e4d14ec 100644
Binary files a/Assets/lua/app/common/data_manager.lua.bytes and b/Assets/lua/app/common/data_manager.lua.bytes differ
diff --git a/Assets/lua/app/common/event_manager.lua.bytes b/Assets/lua/app/common/event_manager.lua.bytes
index 8570fde6a..69dd2d2b6 100644
Binary files a/Assets/lua/app/common/event_manager.lua.bytes and b/Assets/lua/app/common/event_manager.lua.bytes differ
diff --git a/Assets/lua/app/common/local_data.lua.bytes b/Assets/lua/app/common/local_data.lua.bytes
index 09acfb931..4d12a7fa9 100644
Binary files a/Assets/lua/app/common/local_data.lua.bytes and b/Assets/lua/app/common/local_data.lua.bytes differ
diff --git a/Assets/lua/app/common/module_manager.lua.bytes b/Assets/lua/app/common/module_manager.lua.bytes
index 6212bb5fb..b0c8fbe81 100644
Binary files a/Assets/lua/app/common/module_manager.lua.bytes and b/Assets/lua/app/common/module_manager.lua.bytes differ
diff --git a/Assets/lua/app/common/pay_manager.lua.bytes b/Assets/lua/app/common/pay_manager.lua.bytes
index a51ecc97a..0e1ee3015 100644
Binary files a/Assets/lua/app/common/pay_manager.lua.bytes and b/Assets/lua/app/common/pay_manager.lua.bytes differ
diff --git a/Assets/lua/app/common/sdk_manager.lua.bytes b/Assets/lua/app/common/sdk_manager.lua.bytes
index d8a723e9f..857a0d13d 100644
Binary files a/Assets/lua/app/common/sdk_manager.lua.bytes and b/Assets/lua/app/common/sdk_manager.lua.bytes differ
diff --git a/Assets/lua/app/common/server_push_manager.lua.bytes b/Assets/lua/app/common/server_push_manager.lua.bytes
index 11809a710..2c431b061 100644
Binary files a/Assets/lua/app/common/server_push_manager.lua.bytes and b/Assets/lua/app/common/server_push_manager.lua.bytes differ
diff --git a/Assets/lua/app/common/time.lua.bytes b/Assets/lua/app/common/time.lua.bytes
index 6e6a35c6c..e42be1abc 100644
Binary files a/Assets/lua/app/common/time.lua.bytes and b/Assets/lua/app/common/time.lua.bytes differ
diff --git a/Assets/lua/app/config/act_chapter_store.lua.bytes.meta b/Assets/lua/app/config/act_chapter_store.lua.bytes.meta
index 4f23bb11c..854988461 100644
--- a/Assets/lua/app/config/act_chapter_store.lua.bytes.meta
+++ b/Assets/lua/app/config/act_chapter_store.lua.bytes.meta
@@ -3,5 +3,5 @@ guid: c4770b675a0479d4aa26e29f4bfa1d58
TextScriptImporter:
externalObjects: {}
userData:
- assetBundleName:
+ assetBundleName: lua/app/config/act_chapter_store.lua.bytes.ab
assetBundleVariant:
diff --git a/Assets/lua/app/config/act_gift.lua.bytes b/Assets/lua/app/config/act_gift.lua.bytes
index 9599a1bba..45ea1dc37 100644
Binary files a/Assets/lua/app/config/act_gift.lua.bytes and b/Assets/lua/app/config/act_gift.lua.bytes differ
diff --git a/Assets/lua/app/config/act_gift.lua.bytes.meta b/Assets/lua/app/config/act_gift.lua.bytes.meta
index c926db39b..5f0e49724 100644
--- a/Assets/lua/app/config/act_gift.lua.bytes.meta
+++ b/Assets/lua/app/config/act_gift.lua.bytes.meta
@@ -3,5 +3,5 @@ guid: a6471e7e09e07154d8d00bfc1b551d37
TextScriptImporter:
externalObjects: {}
userData:
- assetBundleName:
+ assetBundleName: lua/app/config/act_gift.lua.bytes.ab
assetBundleVariant:
diff --git a/Assets/lua/app/config/act_gold_pig.lua.bytes b/Assets/lua/app/config/act_gold_pig.lua.bytes
index ffcfe6e64..9597bdafd 100644
Binary files a/Assets/lua/app/config/act_gold_pig.lua.bytes and b/Assets/lua/app/config/act_gold_pig.lua.bytes differ
diff --git a/Assets/lua/app/config/act_growup_gift.lua.bytes.meta b/Assets/lua/app/config/act_growup_gift.lua.bytes.meta
index 99e0fcf1d..2c3eb694c 100644
--- a/Assets/lua/app/config/act_growup_gift.lua.bytes.meta
+++ b/Assets/lua/app/config/act_growup_gift.lua.bytes.meta
@@ -3,5 +3,5 @@ guid: 2be2186abfa445344bdbd5198a893256
TextScriptImporter:
externalObjects: {}
userData:
- assetBundleName:
+ assetBundleName: lua/app/config/act_growup_gift.lua.bytes.ab
assetBundleVariant:
diff --git a/Assets/lua/app/config/act_level_fund.lua.bytes b/Assets/lua/app/config/act_level_fund.lua.bytes
index 2e0c3890f..6de6895a1 100644
Binary files a/Assets/lua/app/config/act_level_fund.lua.bytes and b/Assets/lua/app/config/act_level_fund.lua.bytes differ
diff --git a/Assets/lua/app/config/act_level_fund.lua.bytes.meta b/Assets/lua/app/config/act_level_fund.lua.bytes.meta
index 909d8a383..8c69567f4 100644
--- a/Assets/lua/app/config/act_level_fund.lua.bytes.meta
+++ b/Assets/lua/app/config/act_level_fund.lua.bytes.meta
@@ -3,5 +3,5 @@ guid: a72fb7f7a8752594abca2714d690a5cf
TextScriptImporter:
externalObjects: {}
userData:
- assetBundleName:
+ assetBundleName: lua/app/config/act_level_fund.lua.bytes.ab
assetBundleVariant:
diff --git a/Assets/lua/app/config/act_sevenday_quest.lua.bytes.meta b/Assets/lua/app/config/act_sevenday_quest.lua.bytes.meta
index a4a891af5..311720c7e 100644
--- a/Assets/lua/app/config/act_sevenday_quest.lua.bytes.meta
+++ b/Assets/lua/app/config/act_sevenday_quest.lua.bytes.meta
@@ -3,5 +3,5 @@ guid: 00cb95743e18e2e40b766e36c976e0f7
TextScriptImporter:
externalObjects: {}
userData:
- assetBundleName:
+ assetBundleName: lua/app/config/act_sevenday_quest.lua.bytes.ab
assetBundleVariant:
diff --git a/Assets/lua/app/config/act_sevenday_quest_reward.lua.bytes.meta b/Assets/lua/app/config/act_sevenday_quest_reward.lua.bytes.meta
index 2054be636..a851f877a 100644
--- a/Assets/lua/app/config/act_sevenday_quest_reward.lua.bytes.meta
+++ b/Assets/lua/app/config/act_sevenday_quest_reward.lua.bytes.meta
@@ -3,5 +3,5 @@ guid: e95106a01f78e934bb044e66ba092d87
TextScriptImporter:
externalObjects: {}
userData:
- assetBundleName:
+ assetBundleName: lua/app/config/act_sevenday_quest_reward.lua.bytes.ab
assetBundleVariant:
diff --git a/Assets/lua/app/config/bounty_level.lua.bytes b/Assets/lua/app/config/bounty_level.lua.bytes
index a88d368bc..da0e325e7 100644
--- a/Assets/lua/app/config/bounty_level.lua.bytes
+++ b/Assets/lua/app/config/bounty_level.lua.bytes
@@ -1,30 +1,18 @@
bf_encrypt_luai)1X+H-8GH:uua0
-3D9xI4k5MR0qYxsxX9Z#4Y^W0@'%QP!|\i8reD9xI4j6^0qz2r.D8xR9ry4iz4)Ұ9ry4{4)Ұ{)8.D8xR9ry4iz4)Ұ9ry4{4)Ұ{)8.D8xR9ry4iz/Ұ9ry4izDt.Ұ{).D8xR9ry4iz4)Ұ9ry4{4)Ұ{)8.D8xR9ry4iz4)Ұ9ry4{4)Ұ{).D8xR9ry4iz/Ұ9ry4izDt.Ұ{)8.D8xR9ry4iz4)Ұ9ry4{4)Ұ{).D8xR9ry4iz4)Ұ9ry4{4)Ұ{)8.D8xR9ry4iz/Ұ9ry4izDt.Ұ{).8xR9ry44#Ұ9ry4p4#Ұ;o94j5;i8xô+RD{ôRr;8xô+RzôRr;o94j5;i8xô+RD{ôRr;8xô+RzôRr;o4j5;i8xô+RD{ôǒt;8xô+RD{4u;o94j5;i8xô+RD{ôRr;8xô+RzôRr;o4j5;i8xô+RD{ôRr;8xô+RzôRr;o94j5;i8xô+RD{ôǒt;8xô+RD{4u;o4j5;i8xô+RD{ôRr;8xô+RzôRr;o94j5;i8xô+RD{ôRr;8xô+RzôRr;o4j5;i8xô+RD{ôǒt;8xô+RD{4u;o9tj5;i8xô+R)~Rx;8xô+R)qRx;/CtR1q;/D´j5pi4)iz/Ĺ´j5pi(iz/ĹCtkR1q;/D´j5pi4)iz/Ĺ´j5pi(iz/ĹCtR1q;/D´j5pi4)|/Ĺ´j5pi4)R)}/ĹCtkR1q;/D´j5pi4)iz/Ĺ´j5pi(iz/ĹCtR1q;/D´j5pi4)iz/Ĺ´j5pi(iz/ĹCtkR1q;/D´j5pi4)|/Ĺ´j5pi4)R)}/ĹCtR1q;/D´j5pi4)iz/Ĺ´j5pi(iz/ĹCtkR1q;/D´j5pi4)iz/Ĺ´j5pi(iz/ĹCtR1q;/D´j5pi4)|/Ĺ´j5pi4)R)}/ĹCtk1q;/D´j5piô,ǒip/Ĺ´j5piô#ǒip/ĹG:i9r/41qxDôRrD{1qxDôǒsD{G0:i9r/41qxDôRrD{1qxDôǒsD{G:i9r/41qxDôRr}1qxDôRri|G0:i9r/41qxDôRrD{1qxDôǒsD{G:i9r/41qxDôRrD{1qxDôǒsD{G0:i9r/41qxDôRr}1qxDôRri|G:i9r/41qxDôRrD{1qxDôǒsD{G0:i9r/41qxDôRrD{1qxDôǒsD{G:i9r/41qxDôRr}1qxDôRri|G0:)9r/41qxDtwDq1qxDtxDq{).D8xR9ry4iz4)Ұ9ry4{4)Ұ{)8.D8xR9ry4iz4)Ұ9ry4{4)Ұ{).D8xR9ry4iz/Ұ9ry4izDt.Ұ{)8.D8xR9ry4iz4)Ұ9ry4{4)Ұ{).D8xR9ry4iz4)Ұ9ry4{4)Ұ{)8.D8xR9ry4iz/Ұ9ry4izDt.Ұ{).D8xR9ry4iz4)Ұ9ry4{4)Ұ{)8.D8xR9ry4iz4)Ұ9ry4{4)Ұ{).D8xR9ry4iz/Ұ9ry4izDt.Ұ{)8.8xR9ry44#Ұ9ry4p4#Ұ;o4j5;i8xô+RD{ôRr;8xô+RzôRr;o94j5;i8xô+RD{ôRr;8xô+RzôRr;o4j5;i8xô+RD{ôǒt;8xô+RD{4u;o94j5;i8xô+RD{ôRr;8xô+RzôRr;o4j5;i8xô+RD{ôRr;8xô+RzôRr;o94j5;i8xô+RD{ôǒt;8xô+RD{4u;o4j5;i8xô+RD{ôRr;8xô+RzôRr;o94j5;i8xô+RD{ôRr;8xô+RzôRr;o4j5;i8xô+RD{ôǒt;8xô+RD{4u;o9tj5;i8xô+R)~Rx;8xô+R)qRx;/CtR1q;/D´j5pi4)iz/Ĺ´j5pi(iz/ĹCtkR1q;/D´j5pi4)iz/Ĺ´j5pi(iz/ĹCtR1q;/D´j5pi4)|/Ĺ´j5pi4)R)}/ĹCtkR1q;/D´j5pi4)iz/Ĺ´j5pi(iz/ĹCtR1q;/D´j5pi4)iz/Ĺ´j5pi(iz/ĹCtkR1q;/D´j5pi4)|/Ĺ´j5pi4)R)}/ĹCtR1q;/D´j5pi4)iz/Ĺ´j5pi(iz/ĹCtkR1q;/D´j5pi4)iz/Ĺ´j5pi(iz/ĹCtR1q;/D´j5pi4)|/Ĺ´j5pi4)R)}/ĹCtk1q;/D´j5piô,ǒip/Ĺ´j5piô#ǒip/ĹG:i9r/41qxDôRrD{1qxDôǒsD{G0:i9r/41qxDôRrD{1qxDôǒsD{G:i9r/41qxDôRr}1qxDôRri|G0:i9r/41qxDôRrD{1qxDôǒsD{G:i9r/41qxDôRrD{1qxDôǒsD{G0:i9r/41qxDôRr}1qxDôRri|G:i9r/41qxDôRrD{1qxDôǒsD{G0:i9r/41qxDôRrD{1qxDôǒsD{G:i9r/41qxDôRr}1qxDôRri|G0:)9r/41qxDtwDq1qxDtxDq{).9x9ry4p4)Ұ{)8.D8xR9ry4izDt0Ұ9ry4{4)Ұ{)8.D8xR9ry4izDt0Ұ9ry4{4)Ұ{)8.D8xR9ry4iz/Ұ9ry4izDt.Ұ{).D8xR9ry4izDt0Ұ9ry4{4)Ұ{)8.D8xR9ry4izDt0Ұ9ry4{4)Ұ{).D8xR9ry4iz/Ұ9ry4izDt.Ұ{)8.D8xR9ry4izDt0Ұ9ry4{4)Ұ{).D8xR9ry4izDt0Ұ9ry4{4)Ұ{)8.D8xR9ry4iz/Ұ9ry4izDt.Ұ{).8xR9ry44#Ұ9ry4p4#Ұ;o94j5;i8xô+RD{4k;8xô+RzôRr;o4j5;i8xô+RD{4k;8xô+RzôRr;o94j5;i8xô+RD{ôǒt;8xô+RD{4u;o4j5;i8xô+RD{4k;8xô+RzôRr;o94j5;i8xô+RD{4k;8xô+RzôRr;o4j5;i8xô+RD{ôǒt;8xô+RD{4u;o94j5;i8xô+RD{4k;8xô+RzôRr;o4j5;i8xô+RD{4k;8xô+RzôRr;o94j5;i8xô+RD{ôǒt;8xô+RD{4u;otj5;i8xô+R)~Rx;8xô+R)qRx;/CtkR1q;/D´j5pi4)R)c/Ĺ´j5pi(iz/ĹCtR1q;/D´j5pi4)R)c/Ĺ´j5pi(iz/ĹCtkR1q;/D´j5pi4)|/Ĺ´j5pi4)R)}/ĹCtR1q;/D´j5pi4)R)c/Ĺ´j5pi(iz/ĹCtkR1q;/D´j5pi4)R)c/Ĺ´j5pi(iz/ĹCtR1q;/D´j5pi4)|/Ĺ´j5pi4)R)}/ĹCtkR1q;/D´j5pi4)R)c/Ĺ´j5pi(iz/ĹCtR1q;/D´j5pi4)R)c/Ĺ´j5pi(iz/ĹCtkR1q;/D´j5pi4)|/Ĺ´j5pi4)R)}/ĹCt1q;/D´j5piô,ǒip/Ĺ´j5piô#ǒip/ĹG0:i9r/41qxDôRrib1qxDôǒsD{G:i9r/41qxDôRrib1qxDôǒsD{G0:i9r/41qxDôRr}1qxDôRri|G:i9r/41qxDôRrib1qxDôǒsD{G0:i9r/41qxDôRrib1qxDôǒsD{G:i9r/41qxDôRr}1qxDôRri|G0:i9r/41qxDôRrib1qxDôǒsD{G:i9r/41qxDôRrib1qxDôǒsD{G0:i9r/41qxDôRr}1qxDôRri|G:)9r/41qxDtwDq1qxDtxDq{)8.D8xR9ry4izDt0Ұ9ry4{4)Ұ{).D8xR9ry4izDt0Ұ9ry4{4)Ұ{)8.D8xR9ry4iz/Ұ9ry4izDt.Ұ{).D8xR9ry4izDt0Ұ9ry4{4)Ұ{)8.D8xR9ry4izDt0Ұ9ry4{4)Ұ{).D8xR9ry4iz/Ұ9ry4izDt.Ұ{)8.D8xR9ry4izDt0Ұ9ry4{4)Ұ{).D8xR9ry4izDt0Ұ9ry4{4)Ұ{)8.D8xR9ry4iz/Ұ9ry4izDt.Ұ{).8xR9ry44#Ұ9ry4p4#Ұ;o94j5;i8xô+RD{4k;8xô+RzôRr;o4j5;i8xô+RD{4k;8xô+RzôRr;o94j5;i8xô+RD{ôǒt;8xô+RD{4u;o4j5;i8xô+RD{4k;8xô+RzôRr;o94j5;i8xô+RD{4k;8xô+RzôRr;o4j5;i8xô+RD{ôǒt;8xô+RD{4u;o94j5;i8xô+RD{4k;8xô+RzôRr;o4j5;i8xô+RD{4k;8xô+RzôRr;o94j5;i8xô+RD{ôǒt;8xô+RD{4u;otj5;i8xô+R)~Rx;8xô+R)qRx;/CtkR1q;/D´j5pi4)R)c/Ĺ´j5pi(iz/ĹCtR1q;/D´j5pi4)R)c/Ĺ´j5pi(iz/ĹCtkR1q;/D´j5pi4)|/Ĺ´j5pi4)R)}/ĹCtR1q;/D´j5pi4)R)c/Ĺ´j5pi(iz/ĹCtkR1q;/D´j5pi4)R)c/Ĺ´j5pi(iz/ĹCtR1q;/D´j5pi4)|/Ĺ´j5pi4)R)}/ĹCtkR1q;/D´j5pi4)R)c/Ĺ´j5pi(iz/ĹCtR1q;/D´j5pi4)R)c/Ĺ´j5pi(iz/ĹCtkR1q;/D´j5pi4)|/Ĺ´j5pi4)R)}/ĹCt1q;/D´j5piô,ǒip/Ĺ´j5piô#ǒip/ĹG0:i9r/41qxDôRrib1qxDôǒsD{G:i9r/41qxDôRrib1qxDôǒsD{G0:i9r/41qxDôRr}1qxDôRri|G:i9r/41qxDôRrib1qxDôǒsD{G0:i9r/41qxDôRrib1qxDôǒsD{G:i9r/41qxDôRr}1qxDôRri|G0:i9r/41qxDôRrib1qxDôǒsD{G:i9r/41qxDôRrib1qxDôǒsD{G0:i9r/41qxDôRr}1qxDôRri|G:)9r/41qxDtwDq1qxDtxDq{)8.9x9ry4p4)Ұ{).9x4ki8sCDx4k5^70qqi8re@>,UZ#A1qqi8reD=|,L&)R0qqi8raCK>UQIWD