Merge branch 'dev_hero' of https://git.wdd817.link/puxuan/c1_unity into dev_hero
@ -10,14 +10,21 @@ namespace BF
|
||||
public float endX = 0.0f;
|
||||
public float resetX = 0.0f;
|
||||
public int type = 0;
|
||||
public bool canMove = true;
|
||||
|
||||
public void SetPositionByTime(float time)
|
||||
{
|
||||
var transformRect = GetComponent<RectTransform>();
|
||||
transformRect.anchoredPosition = new Vector2(transformRect.anchoredPosition.x + speed * time, transformRect.anchoredPosition.y);
|
||||
}
|
||||
|
||||
void FixedUpdate()
|
||||
{
|
||||
// if (!BF.BFMain.Instance.BattleMgr.UpdateEnabled) return;
|
||||
var transform = GetComponent<RectTransform>();
|
||||
if (transform.anchoredPosition.x <= endX)
|
||||
if (!canMove) return;
|
||||
var transformRect = GetComponent<RectTransform>();
|
||||
if (transformRect.anchoredPosition.x <= endX)
|
||||
{
|
||||
transform.anchoredPosition = new Vector2(resetX, transform.anchoredPosition.y);
|
||||
transformRect.anchoredPosition = new Vector2(resetX, transformRect.anchoredPosition.y);
|
||||
}
|
||||
// if (type == 1)
|
||||
// {
|
||||
@ -39,7 +46,8 @@ namespace BF
|
||||
// {
|
||||
// speed = BF.BFMain.Instance.BattleMgr.SceneSpeedBg;
|
||||
// }
|
||||
transform.Translate(speed * Time.deltaTime, 0.0f, 0.0f);
|
||||
// transform.Translate(speed * Time.fixedDeltaTime, 0.0f, 0.0f);
|
||||
transformRect.anchoredPosition = new Vector2(transformRect.anchoredPosition.x + speed * Time.fixedDeltaTime, transformRect.anchoredPosition.y);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -21,19 +21,22 @@ namespace XLua.CSObjectWrap
|
||||
{
|
||||
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
||||
System.Type type = typeof(BF.BattleControlBg);
|
||||
Utils.BeginObjectRegister(type, L, translator, 0, 0, 4, 4);
|
||||
Utils.BeginObjectRegister(type, L, translator, 0, 1, 5, 5);
|
||||
|
||||
Utils.RegisterFunc(L, Utils.METHOD_IDX, "SetPositionByTime", _m_SetPositionByTime);
|
||||
|
||||
|
||||
Utils.RegisterFunc(L, Utils.GETTER_IDX, "speed", _g_get_speed);
|
||||
Utils.RegisterFunc(L, Utils.GETTER_IDX, "endX", _g_get_endX);
|
||||
Utils.RegisterFunc(L, Utils.GETTER_IDX, "resetX", _g_get_resetX);
|
||||
Utils.RegisterFunc(L, Utils.GETTER_IDX, "type", _g_get_type);
|
||||
Utils.RegisterFunc(L, Utils.GETTER_IDX, "canMove", _g_get_canMove);
|
||||
|
||||
Utils.RegisterFunc(L, Utils.SETTER_IDX, "speed", _s_set_speed);
|
||||
Utils.RegisterFunc(L, Utils.SETTER_IDX, "endX", _s_set_endX);
|
||||
Utils.RegisterFunc(L, Utils.SETTER_IDX, "resetX", _s_set_resetX);
|
||||
Utils.RegisterFunc(L, Utils.SETTER_IDX, "type", _s_set_type);
|
||||
Utils.RegisterFunc(L, Utils.SETTER_IDX, "canMove", _s_set_canMove);
|
||||
|
||||
|
||||
Utils.EndObjectRegister(type, L, translator, null, null,
|
||||
@ -79,6 +82,34 @@ namespace XLua.CSObjectWrap
|
||||
|
||||
|
||||
|
||||
[MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
|
||||
static int _m_SetPositionByTime(RealStatePtr L)
|
||||
{
|
||||
try {
|
||||
|
||||
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
||||
|
||||
|
||||
BF.BattleControlBg gen_to_be_invoked = (BF.BattleControlBg)translator.FastGetCSObj(L, 1);
|
||||
|
||||
|
||||
|
||||
{
|
||||
float _time = (float)LuaAPI.lua_tonumber(L, 2);
|
||||
|
||||
gen_to_be_invoked.SetPositionByTime( _time );
|
||||
|
||||
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
} catch(System.Exception gen_e) {
|
||||
return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
@ -138,6 +169,20 @@ namespace XLua.CSObjectWrap
|
||||
return 1;
|
||||
}
|
||||
|
||||
[MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
|
||||
static int _g_get_canMove(RealStatePtr L)
|
||||
{
|
||||
try {
|
||||
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
||||
|
||||
BF.BattleControlBg gen_to_be_invoked = (BF.BattleControlBg)translator.FastGetCSObj(L, 1);
|
||||
LuaAPI.lua_pushboolean(L, gen_to_be_invoked.canMove);
|
||||
} catch(System.Exception gen_e) {
|
||||
return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
||||
|
||||
[MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
|
||||
@ -200,6 +245,21 @@ namespace XLua.CSObjectWrap
|
||||
return 0;
|
||||
}
|
||||
|
||||
[MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
|
||||
static int _s_set_canMove(RealStatePtr L)
|
||||
{
|
||||
try {
|
||||
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
|
||||
|
||||
BF.BattleControlBg gen_to_be_invoked = (BF.BattleControlBg)translator.FastGetCSObj(L, 1);
|
||||
gen_to_be_invoked.canMove = LuaAPI.lua_toboolean(L, 2);
|
||||
|
||||
} catch(System.Exception gen_e) {
|
||||
return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -34,6 +34,10 @@ MonoBehaviour:
|
||||
- {fileID: 21300000, guid: 4544cdcb6afade34b88b7e64b03a12e3, type: 3}
|
||||
- {fileID: 21300000, guid: 3e61c3bec5ac21b4da081b62d52b5515, type: 3}
|
||||
- {fileID: 21300000, guid: a9a825f3d11b1684897468c1fc49b37b, type: 3}
|
||||
- {fileID: 21300000, guid: f0ec296ea99b64f9084753caedf810ca, type: 3}
|
||||
- {fileID: 21300000, guid: 4574219a6dc8a4a3e85ea570aa1809e3, type: 3}
|
||||
- {fileID: 21300000, guid: d77d7efa7f1664546b31f8246be15e46, type: 3}
|
||||
- {fileID: 21300000, guid: e72a0eb1db7f34f41b0d67618f88e669, type: 3}
|
||||
- {fileID: 21300000, guid: 33742a69dfc2db342b7024db4a13350f, type: 3}
|
||||
- {fileID: 21300000, guid: 911e3c55ee010fa4fa9102aba2e1519f, type: 3}
|
||||
- {fileID: 21300000, guid: 2276c912cf3ee2f43ba86752c6a9017d, type: 3}
|
||||
@ -64,4 +68,4 @@ MonoBehaviour:
|
||||
- {fileID: 21300000, guid: 0571651624e4fa54abb05c2668eb20ab, type: 3}
|
||||
- {fileID: 21300000, guid: d14332356f8b7f74f93ab5e69da2bc97, type: 3}
|
||||
- {fileID: 21300000, guid: 9b0c72ee6bd91d64b9793aa8a2e4bfe4, type: 3}
|
||||
spriteNameList: 5eb071e0925bc42d935bc42d945bc42d955bc42d965bc42d975bc42d5fb071e060b071e061b071e062b071e063b071e064b071e065b071e066b071e0110efddb120efddb130efddb140efddb150efddb160efddb6c6b2a056d6b2a056e6b2a056db6df2d6eb6df2d6fb6df2deb3a1f96740c33668d56fb9b8e56fb9b380d789d390d789d0673dde60773dde610f4d0f4c23b6404c33b6404e3fcb3a7438d0701032df98a82068b0583068b05fb068552fc068552fd068552ad279fe6ae279fe6af279fe6b0279fe6246d861a
|
||||
spriteNameList: 5eb071e0925bc42d935bc42d945bc42d955bc42d965bc42d975bc42d5fb071e060b071e061b071e062b071e063b071e064b071e065b071e066b071e0110efddb120efddb130efddb140efddb150efddb160efddb391833e53a1833e5fa1b33e5fb1b33e56c6b2a056d6b2a056e6b2a056db6df2d6eb6df2d6fb6df2deb3a1f96740c33668d56fb9b8e56fb9b380d789d390d789d0673dde60773dde610f4d0f4c23b6404c33b6404e3fcb3a7438d0701032df98a82068b0583068b05fb068552fc068552fd068552ad279fe6ae279fe6af279fe6b0279fe6246d861a
|
||||
|
||||
@ -67,6 +67,7 @@ SpriteAtlas:
|
||||
- {fileID: 21300000, guid: 0762713162f99b5498194943c615f10f, type: 3}
|
||||
- {fileID: 21300000, guid: ce57d061fbccabb419e29553b7599f86, type: 3}
|
||||
- {fileID: 21300000, guid: e533ee71fd1d66d4aa64a0eefefd1376, type: 3}
|
||||
- {fileID: 21300000, guid: e72a0eb1db7f34f41b0d67618f88e669, type: 3}
|
||||
- {fileID: 21300000, guid: 2276c912cf3ee2f43ba86752c6a9017d, type: 3}
|
||||
- {fileID: 21300000, guid: 941569923c7876e44be7ad23fb73dca8, type: 3}
|
||||
- {fileID: 21300000, guid: 891a25c2a7778a9438591337c4f2fb00, type: 3}
|
||||
@ -95,7 +96,9 @@ SpriteAtlas:
|
||||
- {fileID: 21300000, guid: c323612a846c8d94792aa7a298572f53, type: 3}
|
||||
- {fileID: 21300000, guid: 5307c05ab6598f34f99fe9f1b4a40e3a, type: 3}
|
||||
- {fileID: 21300000, guid: e5307f7a5e397924685bfd288a0062df, type: 3}
|
||||
- {fileID: 21300000, guid: 4574219a6dc8a4a3e85ea570aa1809e3, type: 3}
|
||||
- {fileID: 21300000, guid: df9df9ea09f0a754eaa148b579e6a141, type: 3}
|
||||
- {fileID: 21300000, guid: d77d7efa7f1664546b31f8246be15e46, type: 3}
|
||||
- {fileID: 21300000, guid: 1ffdad4b80238a747883de529c720816, type: 3}
|
||||
- {fileID: 21300000, guid: ca4b746b05c1ae7448c624b79d7c6ba6, type: 3}
|
||||
- {fileID: 21300000, guid: 4544cdcb6afade34b88b7e64b03a12e3, type: 3}
|
||||
@ -107,6 +110,7 @@ SpriteAtlas:
|
||||
- {fileID: 21300000, guid: 2e590d0eb7f248749aca7f67745b21c5, type: 3}
|
||||
- {fileID: 21300000, guid: 8c3ca04eb36a76a478721536e16a82f7, type: 3}
|
||||
- {fileID: 21300000, guid: caa7705ea3a1b044db4413eeb49d394e, type: 3}
|
||||
- {fileID: 21300000, guid: f0ec296ea99b64f9084753caedf810ca, type: 3}
|
||||
- {fileID: 21300000, guid: 6714bc7edf1984e4a8171fea04c1d840, type: 3}
|
||||
- {fileID: 21300000, guid: 3e61c3bec5ac21b4da081b62d52b5515, type: 3}
|
||||
- {fileID: 21300000, guid: caa9f2ce69e435b4ca90780d2d9de31c, type: 3}
|
||||
@ -119,6 +123,7 @@ SpriteAtlas:
|
||||
- act_common_dec_2
|
||||
- act_common_progress_bg_2
|
||||
- act_ranking_1
|
||||
- act_common_btn_2_2
|
||||
- act_common_chest_3
|
||||
- act_common_bg_3
|
||||
- act_common_tettle_1
|
||||
@ -147,7 +152,9 @@ SpriteAtlas:
|
||||
- act_ranking_3
|
||||
- act_common_bg_4
|
||||
- act_common_bg_9
|
||||
- act_common_btn_1_2
|
||||
- act_common_bg_15
|
||||
- act_common_btn_2_1
|
||||
- act_common_title_1
|
||||
- act_common_board_2
|
||||
- act_common_board_4
|
||||
@ -159,6 +166,7 @@ SpriteAtlas:
|
||||
- act_common_bg_13
|
||||
- act_common_bg_11
|
||||
- act_common_bg_12
|
||||
- act_common_btn_1_1
|
||||
- act_ranking_2
|
||||
- act_common_board_5
|
||||
- act_common_bg_10
|
||||
|
||||
@ -19,12 +19,15 @@ MonoBehaviour:
|
||||
- {fileID: 21300000, guid: f23950c02c25c4ee39c71a0656a8d5c5, type: 3}
|
||||
- {fileID: 21300000, guid: 378e6814842094f52953d7fb1868a7d9, type: 3}
|
||||
- {fileID: 21300000, guid: 69df5408fe81cbc44a6c5d8e31abbe27, type: 3}
|
||||
- {fileID: 21300000, guid: 8eede3e1b3ffa42df80b57515981d96c, type: 3}
|
||||
- {fileID: 21300000, guid: a356b36deef7a1b4a9558d6a724921e1, type: 3}
|
||||
- {fileID: 21300000, guid: 00e143fef26720b478e2733de42dd12c, type: 3}
|
||||
- {fileID: 21300000, guid: 91f1d08e1ed8edf45a0a6368f8c30a19, type: 3}
|
||||
- {fileID: 21300000, guid: 02a079d6dd048e349a54f81f4d089eef, type: 3}
|
||||
- {fileID: 21300000, guid: 601d39fa6902e514a8d29cbe8651a35c, type: 3}
|
||||
- {fileID: 21300000, guid: fee40dc6674a062409c92381d0ff0110, type: 3}
|
||||
- {fileID: 21300000, guid: 91ddc4732fc8b431e8a97536eb73ae72, type: 3}
|
||||
- {fileID: 21300000, guid: 0a595eaf361cd43aea9591790e4aec88, type: 3}
|
||||
- {fileID: 21300000, guid: 337ee236388634fe889f619fd7da4b97, type: 3}
|
||||
- {fileID: 21300000, guid: 7b9078892abf72e4688f694d249c4eb3, type: 3}
|
||||
- {fileID: 21300000, guid: dae049b6a2628eb4db9abda297ab6a3b, type: 3}
|
||||
@ -43,6 +46,8 @@ MonoBehaviour:
|
||||
- {fileID: 21300000, guid: 99f8a3be49304b14b99ea331441ad687, type: 3}
|
||||
- {fileID: 21300000, guid: a56848b6da08710499131bdecf066bb6, type: 3}
|
||||
- {fileID: 21300000, guid: 369ef0e04cb680441baa4814f5e7ec28, type: 3}
|
||||
- {fileID: 21300000, guid: aa1e20165075b4269a4b0ba00f1f2e33, type: 3}
|
||||
- {fileID: 21300000, guid: 38b0d1351156343c48dc0ae70b00916d, type: 3}
|
||||
- {fileID: 21300000, guid: b1e0c0f9b9c9b6e408330793ff55ab82, type: 3}
|
||||
- {fileID: 21300000, guid: 277e4def442e66d419da97671813ebc0, type: 3}
|
||||
- {fileID: 21300000, guid: 2bd9e554e73874d43931caf82a6da52d, type: 3}
|
||||
@ -63,4 +68,4 @@ MonoBehaviour:
|
||||
- {fileID: 21300000, guid: 7c3a18c26f0ec664cb74cc6ff5b87f9c, type: 3}
|
||||
- {fileID: 21300000, guid: 0bec9bab93c4b664ebd7b55669932d0b, type: 3}
|
||||
- {fileID: 21300000, guid: bb4a664a5db1bf548ac578c400e3c20b, type: 3}
|
||||
spriteNameList: 70b6df2dcdd30808f7ed40fbced30808566241fbef5c00f8f05c00f8f15c00f8f25c00f8f35c00f8f45c00f8f55c00f8d6671108c38565e33162aae71b24d9ebc0ea3ef2afec92ffaae695ffcee63af7cbf32408ccf32408cdf32408fc9b2608fd9b2608fe9b2608ff9b2608009c2608019c2608029c26089d3958939e3958939f395893231b2d8d241b2d8d251b2d8d261b2d8d271b2d8d50f67c9851f67c9852f67c9853f67c98d7ae2242300321f5310321f5320321f558c3c9ec59c3c9ec5ac3c9ec5bc3c9ec
|
||||
spriteNameList: 70b6df2dcdd30808f7ed40fbced30808566241fbef5c00f821410b08f05c00f8f15c00f8f25c00f8f35c00f8f45c00f8f55c00f8f65c00f8f75c00f8d6671108c38565e33162aae71b24d9ebc0ea3ef2afec92ffaae695ffcee63af7cbf32408ccf32408cdf32408fc9b2608fd9b2608fe9b2608ff9b2608009c2608019c2608029c2608039c2608049c26089d3958939e3958939f395893231b2d8d241b2d8d251b2d8d261b2d8d271b2d8d50f67c9851f67c9852f67c9853f67c98d7ae2242300321f5310321f5320321f558c3c9ec59c3c9ec5ac3c9ec5bc3c9ec
|
||||
|
||||
@ -66,7 +66,9 @@ SpriteAtlas:
|
||||
- {fileID: 21300000, guid: f23950c02c25c4ee39c71a0656a8d5c5, type: 3}
|
||||
- {fileID: 21300000, guid: 369ef0e04cb680441baa4814f5e7ec28, type: 3}
|
||||
- {fileID: 21300000, guid: 0cf3e3816c4e89140a614c998518d618, type: 3}
|
||||
- {fileID: 21300000, guid: 8eede3e1b3ffa42df80b57515981d96c, type: 3}
|
||||
- {fileID: 21300000, guid: 7c3a18c26f0ec664cb74cc6ff5b87f9c, type: 3}
|
||||
- {fileID: 21300000, guid: 91ddc4732fc8b431e8a97536eb73ae72, type: 3}
|
||||
- {fileID: 21300000, guid: e3651214a2c90bb4595ff709eb2e08bb, type: 3}
|
||||
- {fileID: 21300000, guid: 378e6814842094f52953d7fb1868a7d9, type: 3}
|
||||
- {fileID: 21300000, guid: 164807247edc9a84a87ac6c4336c9761, type: 3}
|
||||
@ -74,6 +76,8 @@ SpriteAtlas:
|
||||
- {fileID: 21300000, guid: 13f9a094640ed874cbb2cb62333523d0, type: 3}
|
||||
- {fileID: 21300000, guid: bab1fb94a3d9e1c4196867c58e30cd79, type: 3}
|
||||
- {fileID: 21300000, guid: 00fd0ae4c09175f46b80c9f75ad9acec, type: 3}
|
||||
- {fileID: 21300000, guid: 38b0d1351156343c48dc0ae70b00916d, type: 3}
|
||||
- {fileID: 21300000, guid: aa1e20165075b4269a4b0ba00f1f2e33, type: 3}
|
||||
- {fileID: 21300000, guid: 337ee236388634fe889f619fd7da4b97, type: 3}
|
||||
- {fileID: 21300000, guid: 38c13946aab64e0448ee58b368e0985f, type: 3}
|
||||
- {fileID: 21300000, guid: a56848b6da08710499131bdecf066bb6, type: 3}
|
||||
@ -111,13 +115,16 @@ SpriteAtlas:
|
||||
- {fileID: 21300000, guid: 00e143fef26720b478e2733de42dd12c, type: 3}
|
||||
- {fileID: 21300000, guid: cacd951ff412e684e8863cee652eccbd, type: 3}
|
||||
- {fileID: 21300000, guid: 89470d8f582fdfc46805d0ce42d5aba1, type: 3}
|
||||
- {fileID: 21300000, guid: 0a595eaf361cd43aea9591790e4aec88, type: 3}
|
||||
- {fileID: 21300000, guid: 277e4def442e66d419da97671813ebc0, type: 3}
|
||||
m_PackedSpriteNamesToIndex:
|
||||
- arena_btn_ranking
|
||||
- arena_bar_2
|
||||
- arena_dec_7
|
||||
- arena_num_silver_4
|
||||
- arena_bg_10
|
||||
- arena_ranking_bg_2
|
||||
- arena_bg_8
|
||||
- arena_btn_uprewards
|
||||
- arena_bar_2_bg
|
||||
- arena_num_gold_2
|
||||
@ -125,6 +132,8 @@ SpriteAtlas:
|
||||
- arena_dan_3
|
||||
- arena_progress_1
|
||||
- arena_btn_reward
|
||||
- arena_dec_9
|
||||
- arena_dec_8
|
||||
- arena_btn_1
|
||||
- arena_num_silver_3
|
||||
- arena_dec_6
|
||||
@ -162,6 +171,7 @@ SpriteAtlas:
|
||||
- arena_bg_3
|
||||
- arena_dan_2
|
||||
- arena_dec_4
|
||||
- arena_bg_9
|
||||
- arena_num_bronze_2
|
||||
m_RenderDataMap: {}
|
||||
m_Tag: arena
|
||||
|
||||
@ -18,6 +18,7 @@ MonoBehaviour:
|
||||
- {fileID: 21300000, guid: 4ec6af3f661674ceab9968678a34c61c, type: 3}
|
||||
- {fileID: 21300000, guid: b4eb3a5ebff984c49ab18ba4a98799a5, type: 3}
|
||||
- {fileID: 21300000, guid: 36e2163b4404615408f9bb0bead26217, type: 3}
|
||||
- {fileID: 21300000, guid: 485c7b1fdae2748c8b89a806308350e2, type: 3}
|
||||
- {fileID: 21300000, guid: 35091cc8f6c161543a1a0e29b05e2cf9, type: 3}
|
||||
- {fileID: 21300000, guid: bd89ab45a7458774fa0c1acc5a4c2ba1, type: 3}
|
||||
- {fileID: 21300000, guid: 992fea33b6dcd49eea68c4f018767315, type: 3}
|
||||
@ -176,4 +177,4 @@ MonoBehaviour:
|
||||
- {fileID: 21300000, guid: 4883eddf5771c424c964bc2e32f2cb09, type: 3}
|
||||
- {fileID: 21300000, guid: 90cd8a98ab36f5f429ca27d808dc664f, type: 3}
|
||||
- {fileID: 21300000, guid: 9f4d825138b34164cb6e9e64406dd12a, type: 3}
|
||||
spriteNameList: 49a2b2e673ef7596de354ed3df354ed3e0354ed3e2354ed3e3354ed37d8d7896919850e8929850e8939850e8949850e8959850e8969850e8979850e8947eef9a667213652f396c3f22b5421523b5421537aa723a01d54ed3525806155358061504b9a932ede09396eee09396efe09396f0e09396f1e09396f2e09396bd9b0e6913dcc4b814dcc4b815dcc4b816dcc4b817dcc4b818dcc4b819dcc4b81adcc4b81bdcc4b81cdcc4b8be9b0e6932dcc4b833dcc4b834dcc4b835dcc4b836dcc4b837dcc4b838dcc4b839dcc4b83adcc4b83bdcc4b8bf9b0e6951dcc4b852dcc4b853dcc4b854dcc4b855dcc4b856dcc4b8c09b0e69c19b0e69c29b0e69c39b0e69c49b0e69c59b0e696fe5222e54a9179b0d7ccc490e7ccc490f7ccc49107ccc49132253d3c33f686cc43f686cc53f686ca4afbba06a2996ce6b2996ce6c2996ce6d2996cef90ee7ab9afa36db9bfa36db9cfa36db0196263e029d3752a3c0a1b6a4c0a1b6a5c0a1b6958cd3a2415abdf4495bbdf4c767bdf4948dbdf4e0b6b5f6a45a15e809d618e85a4c581b1ddd9f90c7a6c0f42f42c0b73042c0b73142c0b739fba4313afba4313bfba431ce71fe31cf71fe31d071fe31c0b35232c1b35232c2b35232cd4fd4681304c2f41bed664187156e7a86d89f5487d89f5488d89f5489d89f5442e685d543e685d5dd48893cde48893c8b020eac8c020eac499b18984a9b18984b9b18984c9b18984d9b1898e1d0a115ccb53bb2cdb53bb2d120b00dd220b00d50fb2eba51fb2eba73ea16e874ea16e81e5457221f5457222bf929362cf92936cf0775471557dd4782b8592383b85923ebb25356ecb2535683b74c9784b74c97450c00008c8d63ad4593dbad107222fd627da494f525e910605eed446e14a26803e475062623b5b6
|
||||
spriteNameList: 49a2b2e673ef7596de354ed3df354ed3e0354ed3e1354ed3e2354ed3e3354ed37d8d7896919850e8929850e8939850e8949850e8959850e8969850e8979850e8947eef9a667213652f396c3f22b5421523b5421537aa723a01d54ed3525806155358061504b9a932ede09396eee09396efe09396f0e09396f1e09396f2e09396bd9b0e6913dcc4b814dcc4b815dcc4b816dcc4b817dcc4b818dcc4b819dcc4b81adcc4b81bdcc4b81cdcc4b8be9b0e6932dcc4b833dcc4b834dcc4b835dcc4b836dcc4b837dcc4b838dcc4b839dcc4b83adcc4b83bdcc4b8bf9b0e6951dcc4b852dcc4b853dcc4b854dcc4b855dcc4b856dcc4b8c09b0e69c19b0e69c29b0e69c39b0e69c49b0e69c59b0e696fe5222e54a9179b0d7ccc490e7ccc490f7ccc49107ccc49132253d3c33f686cc43f686cc53f686ca4afbba06a2996ce6b2996ce6c2996ce6d2996cef90ee7ab9afa36db9bfa36db9cfa36db0196263e029d3752a3c0a1b6a4c0a1b6a5c0a1b6958cd3a2415abdf4495bbdf4c767bdf4948dbdf4e0b6b5f6a45a15e809d618e85a4c581b1ddd9f90c7a6c0f42f42c0b73042c0b73142c0b739fba4313afba4313bfba431ce71fe31cf71fe31d071fe31c0b35232c1b35232c2b35232cd4fd4681304c2f41bed664187156e7a86d89f5487d89f5488d89f5489d89f5442e685d543e685d5dd48893cde48893c8b020eac8c020eac499b18984a9b18984b9b18984c9b18984d9b1898e1d0a115ccb53bb2cdb53bb2d120b00dd220b00d50fb2eba51fb2eba73ea16e874ea16e81e5457221f5457222bf929362cf92936cf0775471557dd4782b8592383b85923ebb25356ecb2535683b74c9784b74c97450c00008c8d63ad4593dbad107222fd627da494f525e910605eed446e14a26803e475062623b5b6
|
||||
|
||||
@ -214,6 +214,7 @@ SpriteAtlas:
|
||||
- {fileID: 21300000, guid: 526510ee0946a33459521df8f3e720c8, type: 3}
|
||||
- {fileID: 21300000, guid: 7ec9d7eeb88fc446faad5ed51cdb660f, type: 3}
|
||||
- {fileID: 21300000, guid: 3ad86f0f900c9f64ab2165d92f8d49e5, type: 3}
|
||||
- {fileID: 21300000, guid: 485c7b1fdae2748c8b89a806308350e2, type: 3}
|
||||
- {fileID: 21300000, guid: 0d77993f1d67edd4ab4209eb2ad595a8, type: 3}
|
||||
- {fileID: 21300000, guid: 4ec6af3f661674ceab9968678a34c61c, type: 3}
|
||||
- {fileID: 21300000, guid: 6220406f89e60aa4e9f08a64fc5db514, type: 3}
|
||||
@ -378,6 +379,7 @@ SpriteAtlas:
|
||||
- battle_hinder_29
|
||||
- orange_1
|
||||
- battle_skill_bg_yellow_1
|
||||
- battle_bg_4
|
||||
- battle_obstacle_rocket_right
|
||||
- battle_bg_1
|
||||
- battle_obstacle_chest_2
|
||||
|
||||
@ -43,6 +43,7 @@ MonoBehaviour:
|
||||
- {fileID: 21300000, guid: 403f47f28d24b40bc89e8f21b2dc5a8c, type: 3}
|
||||
- {fileID: 21300000, guid: 111fa2e75dc3d47c0bad6dce4490f997, type: 3}
|
||||
- {fileID: 21300000, guid: ae25f604f52cd4e45ad31f31bdea5fbd, type: 3}
|
||||
- {fileID: 21300000, guid: 3dd545a09127741f68ada89e6e81ddaa, type: 3}
|
||||
- {fileID: 21300000, guid: 8966095d414c7cc469442996c595c1ab, type: 3}
|
||||
- {fileID: 21300000, guid: 6fcfdf7ba1e7f4441a15bd5d888541d0, type: 3}
|
||||
- {fileID: 21300000, guid: 4d5eca674cfc87745bd0c368f2270a6c, type: 3}
|
||||
@ -192,6 +193,8 @@ MonoBehaviour:
|
||||
- {fileID: 21300000, guid: 8e9bdc8dcc160214b9f52e70bdfc7f23, type: 3}
|
||||
- {fileID: 21300000, guid: 11008148ed114a64bbaf5c838c7a122b, type: 3}
|
||||
- {fileID: 21300000, guid: 3758089ee0e9980469310bc78ea54659, type: 3}
|
||||
- {fileID: 21300000, guid: 80a4cdd0f592b40359159f8ee3c49d0a, type: 3}
|
||||
- {fileID: 21300000, guid: 92f0559c7dc7a4f748e4f471741dc664, type: 3}
|
||||
- {fileID: 21300000, guid: 792ef1532be4a470aaf22dff9cde4e68, type: 3}
|
||||
- {fileID: 21300000, guid: f207b6a8a2b9544ba8cf83c4142496e3, type: 3}
|
||||
- {fileID: 21300000, guid: e8535639b62372944b836a75493ac3ae, type: 3}
|
||||
@ -271,4 +274,4 @@ MonoBehaviour:
|
||||
- {fileID: 21300000, guid: bb8268a6f00cf454181fe75a9832cdff, type: 3}
|
||||
- {fileID: 21300000, guid: 56c233d89e320ac4891f34a6706ffc0c, type: 3}
|
||||
- {fileID: 21300000, guid: d1a0b8eb4c42f7748acb13df7b748132, type: 3}
|
||||
spriteNameList: e9a43d8deba43d8deca43d8d0ae27a1a2757a7712857a7712957a7712a57a7712b57a7712c57a7712d57a771b1ff831a37ebefa68b243e8d056d861a066d861a076d861a086d861a096d861a0a6d861a0b6d861a0c6d861a0d6d861a0e6d861a8c243e8d246d861a256d861a266d861a276d861a286d861a2c6d861a8d243e8d8e243e8d8f243e8d90243e8d91243e8d92243e8d93243e8d5ff0dec4c48e80a0ec49916fc5f39782c6f39782c7f39782c8f39782c9f39782caf39782cbf39782ccf39782cdf39782ed49916fe3f39782e4f39782e5f39782e6f39782e7f39782e8f39782e9f39782eaf39782ebf39782ecf39782ee49916f02f4978203f4978204f4978205f4978206f4978207f4978208f4978209f497820af497820bf49782ef49916f21f4978222f4978223f4978224f4978225f49782f049916ff149916ff249916ff349916ff449916ff549916fc58e80a00b4a916f0c4a916f0d4a916f0e4a916f0f4a916f104a916f114a916f124a916f134a916fc68e80a02f4a916f304a916fc78e80a0c88e80a0c98e80a0ca8e80a0cb8e80a0cc8e80a085d402ef86d402ef87d402eff7dba86df8dba86df9dba86dfadba86dbed8328da3c7820ca4c7820ca5c7820ca8c7820c3220c78d01853b1974546eb8c22f500fbe2eb195bf2eb195c02eb195f92eb195e8945815e9945815ea9458158538368d8cc2e922b76e26590c8b0b1a0d8b0b1a0e8b0b1aa49b7ac547776d277d33eeca7e33eeca7f33eeca8133eeca8233eecab833eecab415951a1fecadc920ecadc922ecadc9a4a1213856d43fb6e0c7a11a50349739513497395234973953349739543497395534973956349739573497395834973959349739e1c7a11a6f349739703497397134973972349739733497397434973975349739763497397734973978349739e2c7a11ae3c7a11ae4c7a11ae5c7a11ae6c7a11ae7c7a11ae8c7a11a34e166e6922baf4357abe63dbff2084283e25472704398e36c4b965e826e418db4e19f42b5e19f427a737b477b737b477c737b477d737b477e737b477f737b4780737b4781737b47ffce428df116cb47f216cb47252af848262af848272af8484c159f46fefd2e1ba07f7c4ea17f7c4ea27f7c4e3c864f1beef28685eff286857351fb6991c62c357451fb69f03a2d357551fb694faf2d357651fb69ae232e357751fb699d83f5979e83f5979f83f597a083f597a183f5976e3feee1794eaac0611e220558aa025459aa0254b36a811bb46a811bb56a811bed355bf9f022f4cce44e1d55a15c468d14c42155be552355bf552355c0552355b6ad7c4f3a0919a03b0919a03c0919a03d0919a03e0919a03f0919a0400919a0410919a0420919a0430919a0b7ad7c4fb8ad7c4fb9ad7c4fbaad7c4fbbad7c4fbcad7c4fbdad7c4fbead7c4fc569b158c669b158
|
||||
spriteNameList: e9a43d8deba43d8deca43d8d0ae27a1a2757a7712857a7712957a7712a57a7712b57a7712c57a7712d57a771b1ff831a37ebefa68b243e8d056d861a066d861a076d861a086d861a096d861a0a6d861a0b6d861a0c6d861a0d6d861a0e6d861a8c243e8d246d861a256d861a266d861a276d861a286d861a2b6d861a2c6d861a8d243e8d8e243e8d8f243e8d90243e8d91243e8d92243e8d93243e8d5ff0dec4c48e80a0ec49916fc5f39782c6f39782c7f39782c8f39782c9f39782caf39782cbf39782ccf39782cdf39782ed49916fe3f39782e4f39782e5f39782e6f39782e7f39782e8f39782e9f39782eaf39782ebf39782ecf39782ee49916f02f4978203f4978204f4978205f4978206f4978207f4978208f4978209f497820af497820bf49782ef49916f21f4978222f4978223f4978224f4978225f49782f049916ff149916ff249916ff349916ff449916ff549916fc58e80a00b4a916f0c4a916f0d4a916f0e4a916f0f4a916f104a916f114a916f124a916f134a916fc68e80a02f4a916f304a916fc78e80a0c88e80a0c98e80a0ca8e80a0cb8e80a0cc8e80a085d402ef86d402ef87d402eff7dba86df8dba86df9dba86dfadba86dbed8328da3c7820ca4c7820ca5c7820ca8c7820c3220c78d01853b1974546eb8c22f500fbe2eb195bf2eb195c02eb195f92eb195e8945815e9945815ea9458158538368d8cc2e922b76e26590c8b0b1a0d8b0b1a0e8b0b1aa49b7ac547776d277d33eeca7e33eeca7f33eeca8133eeca8233eecab833eecab415951a1fecadc920ecadc922ecadc9a4a1213856d43fb6e0c7a11a50349739513497395234973953349739543497395534973956349739573497395834973959349739e1c7a11a6f349739703497397134973972349739733497397434973975349739763497397734973978349739e2c7a11ae3c7a11ae4c7a11ae5c7a11ae6c7a11ae7c7a11ae8c7a11a34e166e6922baf4357abe63dbff20842160398e369606d8f83e25472704398e36c4b965e826e418db4e19f42b5e19f427a737b477b737b477c737b477d737b477e737b477f737b4780737b4781737b47ffce428df116cb47f216cb47252af848262af848272af8484c159f46fefd2e1ba07f7c4ea17f7c4ea27f7c4e3c864f1beef28685eff286857351fb6991c62c357451fb69f03a2d357551fb694faf2d357651fb69ae232e357751fb699d83f5979e83f5979f83f597a083f597a183f5976e3feee1794eaac0611e220558aa025459aa0254b36a811bb46a811bb56a811bed355bf9f022f4cce44e1d55a15c468d14c42155be552355bf552355c0552355b6ad7c4f3a0919a03b0919a03c0919a03d0919a03e0919a03f0919a0400919a0410919a0420919a0430919a0b7ad7c4fb8ad7c4fb9ad7c4fbaad7c4fbbad7c4fbcad7c4fbdad7c4fbead7c4fc569b158c669b158
|
||||
|
||||
@ -63,16 +63,19 @@ SpriteAtlas:
|
||||
m_MasterAtlas: {fileID: 0}
|
||||
m_PackedSprites:
|
||||
- {fileID: 21300000, guid: c19b6240a169be841a2f5d9bfa607302, type: 3}
|
||||
- {fileID: 21300000, guid: 3b7c1540baf6d4bb98a215e004ee42f1, type: 3}
|
||||
- {fileID: 21300000, guid: bdcabd5093d701f498daa8906bfd6eb3, type: 3}
|
||||
- {fileID: 21300000, guid: bd8ab060d4c962f45b3af7dea9c8ee79, type: 3}
|
||||
- {fileID: 21300000, guid: fab2da6010f11704a98a2f788ba73a34, type: 3}
|
||||
- {fileID: 21300000, guid: 0068587080dd0488dad9da673f466698, type: 3}
|
||||
- {fileID: 21300000, guid: a806bb907d2075d44a8ea0a190a92c52, type: 3}
|
||||
- {fileID: 21300000, guid: 3dd545a09127741f68ada89e6e81ddaa, type: 3}
|
||||
- {fileID: 21300000, guid: 3df1f1c0900d28e48958abf63b77fd5e, type: 3}
|
||||
- {fileID: 21300000, guid: 046389c0de1f04c26bf53a473a599d73, type: 3}
|
||||
- {fileID: 21300000, guid: a01a4ad0b72a64241a3ecffb906eff54, type: 3}
|
||||
- {fileID: 21300000, guid: a5649cd0bacb4934bbe6a22dca87cf40, type: 3}
|
||||
- {fileID: 21300000, guid: e6ec7dd0257a3435ca158889047e65c1, type: 3}
|
||||
- {fileID: 21300000, guid: 80a4cdd0f592b40359159f8ee3c49d0a, type: 3}
|
||||
- {fileID: 21300000, guid: 608361016deab9a4993d756f0a187d74, type: 3}
|
||||
- {fileID: 21300000, guid: 9df002014670a564fa9e8c639162c7f5, type: 3}
|
||||
- {fileID: 21300000, guid: 9bc39501344a8494daeaf1035cb736db, type: 3}
|
||||
@ -107,6 +110,7 @@ SpriteAtlas:
|
||||
- {fileID: 21300000, guid: b54627e2f3696db4881f0ba63bb3a0c5, type: 3}
|
||||
- {fileID: 21300000, guid: e3a315f26f48db6489d0176ca4c9aad1, type: 3}
|
||||
- {fileID: 21300000, guid: 403f47f28d24b40bc89e8f21b2dc5a8c, type: 3}
|
||||
- {fileID: 21300000, guid: 6ef1b543fd626412fa2710c34227ad11, type: 3}
|
||||
- {fileID: 21300000, guid: 792ef1532be4a470aaf22dff9cde4e68, type: 3}
|
||||
- {fileID: 21300000, guid: ba69d1639f9c54fcaa78295c5d38b76e, type: 3}
|
||||
- {fileID: 21300000, guid: 4e52f863d256e2b45aa84ecbf844ee89, type: 3}
|
||||
@ -262,6 +266,7 @@ SpriteAtlas:
|
||||
- {fileID: 21300000, guid: 3f4e012cd25229546b5f5859ebecdf66, type: 3}
|
||||
- {fileID: 21300000, guid: 0878152c45dfc4c7fa2ddfe21a5a6d1b, type: 3}
|
||||
- {fileID: 21300000, guid: 9bd8c39c611ad4e0aa3de35a72870661, type: 3}
|
||||
- {fileID: 21300000, guid: 92f0559c7dc7a4f748e4f471741dc664, type: 3}
|
||||
- {fileID: 21300000, guid: 2097e79c28658fb4e9abc7fe576293e0, type: 3}
|
||||
- {fileID: 21300000, guid: 4b4d73ac48dffca4fa760e7a48e51ad2, type: 3}
|
||||
- {fileID: 21300000, guid: 79b105ace3ad8d747a6cdd5d9e08c890, type: 3}
|
||||
@ -322,16 +327,19 @@ SpriteAtlas:
|
||||
- {fileID: 21300000, guid: d4fc31efb520b904dbc964028c78b257, type: 3}
|
||||
m_PackedSpriteNamesToIndex:
|
||||
- common_new
|
||||
- common_bg_29
|
||||
- common_board_24
|
||||
- common_circle_1
|
||||
- common_title_12
|
||||
- common_btn_close_2
|
||||
- common_title_2
|
||||
- common_bg_27
|
||||
- common_title_1
|
||||
- common_btn_yellow_l
|
||||
- common_tips_3
|
||||
- common_board_19
|
||||
- common_bottom_bg_2
|
||||
- common_icon_bag
|
||||
- common_ad_3
|
||||
- common_dec_19
|
||||
- common_btn_yellow_3
|
||||
@ -366,6 +374,7 @@ SpriteAtlas:
|
||||
- common_board_36
|
||||
- common_dec_27
|
||||
- common_bg_22
|
||||
- common_bg_30
|
||||
- common_icon_record
|
||||
- common_btn_info
|
||||
- common_board_131
|
||||
@ -521,6 +530,7 @@ SpriteAtlas:
|
||||
- common_board_22
|
||||
- common_bottom_bg_3
|
||||
- common_bg_21
|
||||
- common_icon_mail
|
||||
- common_btn_grey_2
|
||||
- common_bg_9
|
||||
- common_board_21
|
||||
|
||||
@ -42,6 +42,7 @@ MonoBehaviour:
|
||||
- {fileID: 21300000, guid: 9801a63125a239349aa621a6aaf6b164, type: 3}
|
||||
- {fileID: 21300000, guid: d5338fcb9468f5d4fb50f0b3cb68be90, type: 3}
|
||||
- {fileID: 21300000, guid: a11d2ecba6359b7449faa1c86929e65b, type: 3}
|
||||
- {fileID: 21300000, guid: 06e523510c3474af2af102e6a49f88c1, type: 3}
|
||||
- {fileID: 21300000, guid: 2ae50aed0182729429de176b08707a75, type: 3}
|
||||
- {fileID: 21300000, guid: d74a30412c3dd324ea5bfc19f387fc3c, type: 3}
|
||||
- {fileID: 21300000, guid: ecff65bf8ef41a24ebae8ea1de3c262c, type: 3}
|
||||
@ -53,4 +54,4 @@ MonoBehaviour:
|
||||
- {fileID: 21300000, guid: 64f989e8b40a3fc4ea138aa6d314d7be, type: 3}
|
||||
- {fileID: 21300000, guid: 273a77a38cd5f9648bbcac359fbdfa45, type: 3}
|
||||
- {fileID: 21300000, guid: df3282ede5d4e6740b33cbb893059cb3, type: 3}
|
||||
spriteNameList: a4fb3c18ff482b2f8513251e00492b2fe487251e7d7901f17e7901f17f7901f1807901f1817901f1827901f1837901f1847901f108dd332f09dd332f0add332f5edc478b348a45df8e8280046b7a72e76c7a72e76d7a72e7ea9fa59e992f0ec35a7dbed43b208104d5cfde8b80658304a5b4b1319b75338ce7ad997bb87f34fa4e958604045919252e11492f2f11492f3011492f3111492f3211492f61a4d796
|
||||
spriteNameList: a4fb3c18ff482b2f8513251e00492b2fe487251e7d7901f17e7901f17f7901f1807901f1817901f1827901f1837901f1847901f108dd332f09dd332f0add332f5edc478b348a45df8e8280046b7a72e76c7a72e76d7a72e7ea9fa59e992f0ec35a7dbed43b208104d5cfde8b80658304a5b4b131dafdfdf99b75338ce7ad997bb87f34fa4e958604045919252e11492f2f11492f3011492f3111492f3211492f61a4d796
|
||||
|
||||
@ -67,6 +67,7 @@ SpriteAtlas:
|
||||
- {fileID: 21300000, guid: 4acb7dd045b38d445adbf073200bd73a, type: 3}
|
||||
- {fileID: 21300000, guid: 9801a63125a239349aa621a6aaf6b164, type: 3}
|
||||
- {fileID: 21300000, guid: d74a30412c3dd324ea5bfc19f387fc3c, type: 3}
|
||||
- {fileID: 21300000, guid: 06e523510c3474af2af102e6a49f88c1, type: 3}
|
||||
- {fileID: 21300000, guid: 8a9700718a817d044a55010e6b9bbebe, type: 3}
|
||||
- {fileID: 21300000, guid: 96ed849133d464868b853a9ccfc05f74, type: 3}
|
||||
- {fileID: 21300000, guid: 059560d1e6a63443599795a0722c3ab0, type: 3}
|
||||
@ -108,6 +109,7 @@ SpriteAtlas:
|
||||
- main_dec_3
|
||||
- main_btn_ligth
|
||||
- main_btn_setting
|
||||
- main_btn_record
|
||||
- main_bg_2
|
||||
- main_bg_7
|
||||
- main_bg_3
|
||||
|
||||
@ -13,6 +13,8 @@ MonoBehaviour:
|
||||
m_Name: setting
|
||||
m_EditorClassIdentifier:
|
||||
spriteList:
|
||||
- {fileID: 21300000, guid: c68292cee496b4b3da7924a1bbb9ba69, type: 3}
|
||||
- {fileID: 21300000, guid: 6e59e1bb3f66641c8b865c9933618ffa, type: 3}
|
||||
- {fileID: 21300000, guid: d6a21578ce07b924382f06dc5c11e0ae, type: 3}
|
||||
- {fileID: 21300000, guid: 1581637d797f99446bd20d5a9585ff67, type: 3}
|
||||
- {fileID: 21300000, guid: bbc65714839dd334fb3d1794bbf064de, type: 3}
|
||||
@ -33,6 +35,8 @@ MonoBehaviour:
|
||||
- {fileID: 21300000, guid: 8f13ecccc6ac0924a95c9dfcaf551559, type: 3}
|
||||
- {fileID: 21300000, guid: 7a35843cc154240459d64df8b972b216, type: 3}
|
||||
- {fileID: 21300000, guid: d703af51910191049ae5c12a82cf1753, type: 3}
|
||||
- {fileID: 21300000, guid: 7bc7042f99d324360986b382c254e84d, type: 3}
|
||||
- {fileID: 21300000, guid: 3eb5713ab616d4628b7507b1526d3eb1, type: 3}
|
||||
- {fileID: 21300000, guid: e5eed40ad8ee078429e388683e9754a9, type: 3}
|
||||
- {fileID: 21300000, guid: dc4c490c976ae854f97b4d48a876936c, type: 3}
|
||||
- {fileID: 21300000, guid: bacb6dde2abfd63469c63a4b250ab0e9, type: 3}
|
||||
@ -45,4 +49,4 @@ MonoBehaviour:
|
||||
- {fileID: 21300000, guid: 6f44bf59aae5dcd4483bbc4a281c37e8, type: 3}
|
||||
- {fileID: 21300000, guid: 482b520908f8e994a94b299a116793d2, type: 3}
|
||||
- {fileID: 21300000, guid: 2f0bac97a25a5df4a876b5b9054751cd, type: 3}
|
||||
spriteNameList: b2fee9b9c8fee9b9f0fee9b9f5fee9b913ffe9b962ffe9b994ba67e77effe9b9abffe9b94b00eab93d256be78a00eab9bb00eab9fa00eab97501eab9abf8f6b94637c61e4737c61e293e7c4a87c0ad22850c1cba860c1cba870c1cba880c1cba890c1cba8a0c1cba8b0c1cba65e6f5f63da202abd5d7aac2616ea7ba840fc510
|
||||
spriteNameList: 7d8d7896ede09396b2fee9b9c8fee9b9f0fee9b9f5fee9b913ffe9b962ffe9b994ba67e77effe9b9abffe9b94b00eab93d256be78a00eab9bb00eab9fa00eab97501eab9abf8f6b94637c61e4737c61e293e7c4a87c0ad221d32b353713bd486850c1cba860c1cba870c1cba880c1cba890c1cba8a0c1cba8b0c1cba65e6f5f63da202abd5d7aac2616ea7ba840fc510
|
||||
|
||||
@ -80,18 +80,22 @@ SpriteAtlas:
|
||||
- {fileID: 21300000, guid: 482b520908f8e994a94b299a116793d2, type: 3}
|
||||
- {fileID: 21300000, guid: 6f44bf59aae5dcd4483bbc4a281c37e8, type: 3}
|
||||
- {fileID: 21300000, guid: e5eed40ad8ee078429e388683e9754a9, type: 3}
|
||||
- {fileID: 21300000, guid: 3eb5713ab616d4628b7507b1526d3eb1, type: 3}
|
||||
- {fileID: 21300000, guid: 2fe1d47a2b60298449b939ddbb06343b, type: 3}
|
||||
- {fileID: 21300000, guid: 1bf645aa17a1fa94194d989044eb9a6b, type: 3}
|
||||
- {fileID: 21300000, guid: 428dc7da8f35a5740a641b412350196f, type: 3}
|
||||
- {fileID: 21300000, guid: ef0d382b3a69c334485a3da6b4a1b1bd, type: 3}
|
||||
- {fileID: 21300000, guid: 8ce4cd2b4e1624f478fd31f8a8b85356, type: 3}
|
||||
- {fileID: 21300000, guid: 806bb6ab875f2594aae10f24b5404175, type: 3}
|
||||
- {fileID: 21300000, guid: 6e59e1bb3f66641c8b865c9933618ffa, type: 3}
|
||||
- {fileID: 21300000, guid: dc4c490c976ae854f97b4d48a876936c, type: 3}
|
||||
- {fileID: 21300000, guid: 7a35843cc154240459d64df8b972b216, type: 3}
|
||||
- {fileID: 21300000, guid: 8f13ecccc6ac0924a95c9dfcaf551559, type: 3}
|
||||
- {fileID: 21300000, guid: 1581637d797f99446bd20d5a9585ff67, type: 3}
|
||||
- {fileID: 21300000, guid: c68292cee496b4b3da7924a1bbb9ba69, type: 3}
|
||||
- {fileID: 21300000, guid: bacb6dde2abfd63469c63a4b250ab0e9, type: 3}
|
||||
- {fileID: 21300000, guid: ae13651fdfccd754eafa247534bc2602, type: 3}
|
||||
- {fileID: 21300000, guid: 7bc7042f99d324360986b382c254e84d, type: 3}
|
||||
- {fileID: 21300000, guid: 921ad06f78da2a5419cec3d676eafd97, type: 3}
|
||||
- {fileID: 21300000, guid: c9701def65451d44f992d7f2332df718, type: 3}
|
||||
m_PackedSpriteNamesToIndex:
|
||||
@ -113,18 +117,22 @@ SpriteAtlas:
|
||||
- setting_naver
|
||||
- setting_facebook
|
||||
- setting_dec_1
|
||||
- setting_btn_on
|
||||
- setting_dec_5
|
||||
- setting_apple
|
||||
- language_zh
|
||||
- language_th
|
||||
- language_es
|
||||
- language_pt_1
|
||||
- battle_dec_1
|
||||
- setting_dec_2
|
||||
- setting_board_1
|
||||
- setting_bg_2
|
||||
- language_de
|
||||
- battle_bg_lv
|
||||
- setting_dec_3
|
||||
- language_vi
|
||||
- setting_btn_off
|
||||
- language_ja
|
||||
- language_id
|
||||
m_RenderDataMap: {}
|
||||
|
||||
27
Assets/arts/atlas/ui/summon.asset
Normal file
@ -0,0 +1,27 @@
|
||||
%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: summon
|
||||
m_EditorClassIdentifier:
|
||||
spriteList:
|
||||
- {fileID: 21300000, guid: 2af121ddc2e19447bb50fc5dfb7db7fb, type: 3}
|
||||
- {fileID: 21300000, guid: d42b5b91f0ea04589814a28d34e7d5fe, type: 3}
|
||||
- {fileID: 21300000, guid: 3e6f1a16c37b546f7b7b40cf6506a36a, type: 3}
|
||||
- {fileID: 21300000, guid: 76dde00902af54bb583976396adfef18, type: 3}
|
||||
- {fileID: 21300000, guid: 159ad5fe9adac43688ec8b8c09095cef, type: 3}
|
||||
- {fileID: 21300000, guid: 3c6e7274ae7e04021a9cbf0a826187b0, type: 3}
|
||||
- {fileID: 21300000, guid: acb11fbb6a32d4a7a94a38aaa53c1876, type: 3}
|
||||
- {fileID: 21300000, guid: 64b6687b49a0944bd921637b0764a8e3, type: 3}
|
||||
- {fileID: 21300000, guid: de3d32891f4024fc7a40a97447f58526, type: 3}
|
||||
- {fileID: 21300000, guid: aa5840c9485d74757b508f2a41a94286, type: 3}
|
||||
- {fileID: 21300000, guid: c31a50f59f5c146679f68056c0eac413, type: 3}
|
||||
spriteNameList: 55f74195301a0313311a0313e02f0b4ee12f0b4ee22f0b4ee32f0b4ef0d8c6def1d8c6def2d8c6def3d8c6de
|
||||
@ -1,8 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 0cc3a5fea9b88254989dbb270afc55c0
|
||||
guid: f87de04ec6b50413a88e55bed05083ce
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 11400000
|
||||
userData:
|
||||
assetBundleName: arts/spines/ui/ui_main_button_2.ab
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
90
Assets/arts/atlas/ui/summon.spriteatlas
Normal file
@ -0,0 +1,90 @@
|
||||
%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: summon
|
||||
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
|
||||
enableAlphaDilation: 0
|
||||
secondaryTextureSettings: {}
|
||||
variantMultiplier: 1
|
||||
packables:
|
||||
- {fileID: 102900000, guid: dace73221ec78457893257078f3dab47, type: 3}
|
||||
bindAsDefault: 1
|
||||
isAtlasV2: 0
|
||||
cachedData: {fileID: 0}
|
||||
m_MasterAtlas: {fileID: 0}
|
||||
m_PackedSprites:
|
||||
- {fileID: 21300000, guid: d42b5b91f0ea04589814a28d34e7d5fe, type: 3}
|
||||
- {fileID: 21300000, guid: 3c6e7274ae7e04021a9cbf0a826187b0, type: 3}
|
||||
- {fileID: 21300000, guid: c31a50f59f5c146679f68056c0eac413, type: 3}
|
||||
- {fileID: 21300000, guid: 3e6f1a16c37b546f7b7b40cf6506a36a, type: 3}
|
||||
- {fileID: 21300000, guid: 76dde00902af54bb583976396adfef18, type: 3}
|
||||
- {fileID: 21300000, guid: de3d32891f4024fc7a40a97447f58526, type: 3}
|
||||
- {fileID: 21300000, guid: aa5840c9485d74757b508f2a41a94286, type: 3}
|
||||
- {fileID: 21300000, guid: 64b6687b49a0944bd921637b0764a8e3, type: 3}
|
||||
- {fileID: 21300000, guid: acb11fbb6a32d4a7a94a38aaa53c1876, type: 3}
|
||||
- {fileID: 21300000, guid: 2af121ddc2e19447bb50fc5dfb7db7fb, type: 3}
|
||||
- {fileID: 21300000, guid: 159ad5fe9adac43688ec8b8c09095cef, type: 3}
|
||||
m_PackedSpriteNamesToIndex:
|
||||
- summon_btn_1
|
||||
- summon_card_3
|
||||
- summon_card_mark_4
|
||||
- summon_btn_2
|
||||
- summon_card_1
|
||||
- summon_card_mark_2
|
||||
- summon_card_mark_3
|
||||
- summon_card_mark_1
|
||||
- summon_card_4
|
||||
- summon_bg_1
|
||||
- summon_card_2
|
||||
m_RenderDataMap: {}
|
||||
m_Tag: summon
|
||||
m_IsVariant: 0
|
||||
8
Assets/arts/atlas/ui/summon.spriteatlas.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: acd03b2e4df1f43e3b82c4aaa17d877a
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 4343727234628468602
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -42,19 +42,277 @@ MonoBehaviour:
|
||||
m_StrikethroughOffset: 6.8
|
||||
m_StrikethroughThickness: 4.64
|
||||
m_TabWidth: 11
|
||||
m_GlyphTable: []
|
||||
m_CharacterTable: []
|
||||
m_GlyphTable:
|
||||
- m_Index: 24
|
||||
m_Metrics:
|
||||
m_Width: 19.203125
|
||||
m_Height: 23.078125
|
||||
m_HorizontalBearingX: 0.671875
|
||||
m_HorizontalBearingY: 22.4375
|
||||
m_HorizontalAdvance: 21.03125
|
||||
m_GlyphRect:
|
||||
m_X: 5
|
||||
m_Y: 5
|
||||
m_Width: 20
|
||||
m_Height: 24
|
||||
m_Scale: 1
|
||||
m_AtlasIndex: 0
|
||||
m_ClassDefinitionType: 0
|
||||
- m_Index: 22
|
||||
m_Metrics:
|
||||
m_Width: 18.75
|
||||
m_Height: 23.71875
|
||||
m_HorizontalBearingX: 1.0625
|
||||
m_HorizontalBearingY: 23.078125
|
||||
m_HorizontalAdvance: 21.03125
|
||||
m_GlyphRect:
|
||||
m_X: 5
|
||||
m_Y: 38
|
||||
m_Width: 19
|
||||
m_Height: 25
|
||||
m_Scale: 1
|
||||
m_AtlasIndex: 0
|
||||
m_ClassDefinitionType: 0
|
||||
- m_Index: 28
|
||||
m_Metrics:
|
||||
m_Width: 19.390625
|
||||
m_Height: 23.625
|
||||
m_HorizontalBearingX: 0.609375
|
||||
m_HorizontalBearingY: 23.046875
|
||||
m_HorizontalAdvance: 21.03125
|
||||
m_GlyphRect:
|
||||
m_X: 5
|
||||
m_Y: 72
|
||||
m_Width: 20
|
||||
m_Height: 25
|
||||
m_Scale: 1
|
||||
m_AtlasIndex: 0
|
||||
m_ClassDefinitionType: 0
|
||||
- m_Index: 27
|
||||
m_Metrics:
|
||||
m_Width: 19.328125
|
||||
m_Height: 23.625
|
||||
m_HorizontalBearingX: 0.796875
|
||||
m_HorizontalBearingY: 23.046875
|
||||
m_HorizontalAdvance: 21.03125
|
||||
m_GlyphRect:
|
||||
m_X: 33
|
||||
m_Y: 38
|
||||
m_Width: 21
|
||||
m_Height: 25
|
||||
m_Scale: 1
|
||||
m_AtlasIndex: 0
|
||||
m_ClassDefinitionType: 0
|
||||
- m_Index: 25
|
||||
m_Metrics:
|
||||
m_Width: 19.359375
|
||||
m_Height: 23.65625
|
||||
m_HorizontalBearingX: 0.921875
|
||||
m_HorizontalBearingY: 23.046875
|
||||
m_HorizontalAdvance: 21.03125
|
||||
m_GlyphRect:
|
||||
m_X: 5
|
||||
m_Y: 106
|
||||
m_Width: 21
|
||||
m_Height: 25
|
||||
m_Scale: 1
|
||||
m_AtlasIndex: 0
|
||||
m_ClassDefinitionType: 0
|
||||
- m_Index: 20
|
||||
m_Metrics:
|
||||
m_Width: 11.609375
|
||||
m_Height: 22.4375
|
||||
m_HorizontalBearingX: 3.234375
|
||||
m_HorizontalBearingY: 22.4375
|
||||
m_HorizontalAdvance: 21.03125
|
||||
m_GlyphRect:
|
||||
m_X: 34
|
||||
m_Y: 5
|
||||
m_Width: 12
|
||||
m_Height: 23
|
||||
m_Scale: 1
|
||||
m_AtlasIndex: 0
|
||||
m_ClassDefinitionType: 0
|
||||
- m_Index: 23
|
||||
m_Metrics:
|
||||
m_Width: 19.359375
|
||||
m_Height: 22.4375
|
||||
m_HorizontalBearingX: 0.796875
|
||||
m_HorizontalBearingY: 22.4375
|
||||
m_HorizontalAdvance: 21.03125
|
||||
m_GlyphRect:
|
||||
m_X: 55
|
||||
m_Y: 5
|
||||
m_Width: 21
|
||||
m_Height: 23
|
||||
m_Scale: 1
|
||||
m_AtlasIndex: 0
|
||||
m_ClassDefinitionType: 0
|
||||
- m_Index: 18
|
||||
m_Metrics:
|
||||
m_Width: 11.390625
|
||||
m_Height: 26.578125
|
||||
m_HorizontalBearingX: -0.125
|
||||
m_HorizontalBearingY: 23.609375
|
||||
m_HorizontalAdvance: 10.8125
|
||||
m_GlyphRect:
|
||||
m_X: 5
|
||||
m_Y: 140
|
||||
m_Width: 13
|
||||
m_Height: 27
|
||||
m_Scale: 1
|
||||
m_AtlasIndex: 0
|
||||
m_ClassDefinitionType: 0
|
||||
- m_Index: 19
|
||||
m_Metrics:
|
||||
m_Width: 19.71875
|
||||
m_Height: 23.71875
|
||||
m_HorizontalBearingX: 0.671875
|
||||
m_HorizontalBearingY: 23.078125
|
||||
m_HorizontalAdvance: 21.03125
|
||||
m_GlyphRect:
|
||||
m_X: 34
|
||||
m_Y: 72
|
||||
m_Width: 21
|
||||
m_Height: 25
|
||||
m_Scale: 1
|
||||
m_AtlasIndex: 0
|
||||
m_ClassDefinitionType: 0
|
||||
- m_Index: 21
|
||||
m_Metrics:
|
||||
m_Width: 18.78125
|
||||
m_Height: 23.078125
|
||||
m_HorizontalBearingX: 0.828125
|
||||
m_HorizontalBearingY: 23.078125
|
||||
m_HorizontalAdvance: 21.03125
|
||||
m_GlyphRect:
|
||||
m_X: 63
|
||||
m_Y: 37
|
||||
m_Width: 20
|
||||
m_Height: 24
|
||||
m_Scale: 1
|
||||
m_AtlasIndex: 0
|
||||
m_ClassDefinitionType: 0
|
||||
m_CharacterTable:
|
||||
- m_ElementType: 1
|
||||
m_Unicode: 53
|
||||
m_GlyphIndex: 24
|
||||
m_Scale: 1
|
||||
- m_ElementType: 1
|
||||
m_Unicode: 51
|
||||
m_GlyphIndex: 22
|
||||
m_Scale: 1
|
||||
- m_ElementType: 1
|
||||
m_Unicode: 57
|
||||
m_GlyphIndex: 28
|
||||
m_Scale: 1
|
||||
- m_ElementType: 1
|
||||
m_Unicode: 56
|
||||
m_GlyphIndex: 27
|
||||
m_Scale: 1
|
||||
- m_ElementType: 1
|
||||
m_Unicode: 54
|
||||
m_GlyphIndex: 25
|
||||
m_Scale: 1
|
||||
- m_ElementType: 1
|
||||
m_Unicode: 49
|
||||
m_GlyphIndex: 20
|
||||
m_Scale: 1
|
||||
- m_ElementType: 1
|
||||
m_Unicode: 52
|
||||
m_GlyphIndex: 23
|
||||
m_Scale: 1
|
||||
- m_ElementType: 1
|
||||
m_Unicode: 47
|
||||
m_GlyphIndex: 18
|
||||
m_Scale: 1
|
||||
- m_ElementType: 1
|
||||
m_Unicode: 48
|
||||
m_GlyphIndex: 19
|
||||
m_Scale: 1
|
||||
- m_ElementType: 1
|
||||
m_Unicode: 50
|
||||
m_GlyphIndex: 21
|
||||
m_Scale: 1
|
||||
m_AtlasTextures:
|
||||
- {fileID: 2800000, guid: 4d896be292017e7468fd94cd2b410269, type: 2}
|
||||
m_AtlasTextureIndex: 0
|
||||
m_IsMultiAtlasTexturesEnabled: 1
|
||||
m_ClearDynamicDataOnBuild: 0
|
||||
m_UsedGlyphRects: []
|
||||
m_FreeGlyphRects:
|
||||
m_UsedGlyphRects:
|
||||
- m_X: 0
|
||||
m_Y: 0
|
||||
m_Width: 29
|
||||
m_Height: 33
|
||||
- m_X: 0
|
||||
m_Y: 33
|
||||
m_Width: 28
|
||||
m_Height: 34
|
||||
- m_X: 0
|
||||
m_Y: 67
|
||||
m_Width: 29
|
||||
m_Height: 34
|
||||
- m_X: 28
|
||||
m_Y: 33
|
||||
m_Width: 30
|
||||
m_Height: 34
|
||||
- m_X: 0
|
||||
m_Y: 101
|
||||
m_Width: 30
|
||||
m_Height: 34
|
||||
- m_X: 29
|
||||
m_Y: 0
|
||||
m_Width: 21
|
||||
m_Height: 32
|
||||
- m_X: 50
|
||||
m_Y: 0
|
||||
m_Width: 30
|
||||
m_Height: 32
|
||||
- m_X: 0
|
||||
m_Y: 135
|
||||
m_Width: 22
|
||||
m_Height: 36
|
||||
- m_X: 29
|
||||
m_Y: 67
|
||||
m_Width: 30
|
||||
m_Height: 34
|
||||
- m_X: 58
|
||||
m_Y: 32
|
||||
m_Width: 29
|
||||
m_Height: 33
|
||||
m_FreeGlyphRects:
|
||||
- m_X: 0
|
||||
m_Y: 171
|
||||
m_Width: 255
|
||||
m_Height: 84
|
||||
- m_X: 22
|
||||
m_Y: 135
|
||||
m_Width: 233
|
||||
m_Height: 120
|
||||
- m_X: 30
|
||||
m_Y: 101
|
||||
m_Width: 225
|
||||
m_Height: 154
|
||||
- m_X: 29
|
||||
m_Y: 32
|
||||
m_Width: 29
|
||||
m_Height: 1
|
||||
- m_X: 80
|
||||
m_Y: 0
|
||||
m_Width: 175
|
||||
m_Height: 32
|
||||
- m_X: 87
|
||||
m_Y: 0
|
||||
m_Width: 168
|
||||
m_Height: 255
|
||||
- m_X: 58
|
||||
m_Y: 65
|
||||
m_Width: 197
|
||||
m_Height: 2
|
||||
- m_X: 59
|
||||
m_Y: 65
|
||||
m_Width: 196
|
||||
m_Height: 190
|
||||
m_fontInfo:
|
||||
Name:
|
||||
PointSize: 0
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d1951f2cc6d57ef4e8f6597eb49639a4
|
||||
guid: d144b33c91cb94c49b05839b36b6de05
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
@ -0,0 +1,7 @@
|
||||
ui_mainbtn_challenge.png
|
||||
size:256,256
|
||||
filter:Linear,Linear
|
||||
yuan
|
||||
bounds:2,106,119,102
|
||||
zhihui
|
||||
bounds:2,2,119,102
|
||||
@ -1,7 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 96b3bffd80b0e77479f28565b73997ab
|
||||
guid: bdfc8a7503b9c4c1ca8fc6518399de5d
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName: arts/spines/ui/ui_main_button_1.ab
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
|
After Width: | Height: | Size: 16 KiB |
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 14730019da3d09b4eab985a7b234e38d
|
||||
guid: 2fb06227c5f734577a2bb75760580292
|
||||
TextureImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
@ -89,6 +89,18 @@ TextureImporter:
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 1
|
||||
- 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: Android
|
||||
maxTextureSize: 2048
|
||||
@ -113,18 +125,6 @@ TextureImporter:
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 1
|
||||
- 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: []
|
||||
@ -143,5 +143,5 @@ TextureImporter:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName: arts/spines/ui/ui_main_button_1.ab
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 825250f6ebb5d41a3be151f9f36f0a4f
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,19 @@
|
||||
%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: ui_mainbtn_challenge_atlas
|
||||
m_EditorClassIdentifier:
|
||||
textureLoadingMode: 0
|
||||
onDemandTextureLoader: {fileID: 0}
|
||||
atlasFile: {fileID: 4900000, guid: bdfc8a7503b9c4c1ca8fc6518399de5d, type: 3}
|
||||
materials:
|
||||
- {fileID: 2100000, guid: cdc0d0003273d42ea91db493b70f6c9e, type: 2}
|
||||
@ -1,8 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4989a4c057c89ff4da77d5168a96ecc7
|
||||
guid: 231dfd11388d645128fffa1520358927
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 11400000
|
||||
userData:
|
||||
assetBundleName: arts/spines/ui/ui_main_button_2.ab
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -7,10 +7,9 @@ Material:
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: ui_main_button_1_material
|
||||
m_Name: ui_mainbtn_challenge_material
|
||||
m_Shader: {fileID: 4800000, guid: 1e8a610c9e01c3648bac42585e5fc676, type: 3}
|
||||
m_ValidKeywords:
|
||||
- _STRAIGHT_ALPHA_INPUT
|
||||
m_ValidKeywords: []
|
||||
m_InvalidKeywords:
|
||||
- _USE8NEIGHBOURHOOD_ON
|
||||
m_LightmapFlags: 4
|
||||
@ -23,7 +22,7 @@ Material:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 2800000, guid: 14730019da3d09b4eab985a7b234e38d, type: 3}
|
||||
m_Texture: {fileID: 2800000, guid: 2fb06227c5f734577a2bb75760580292, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
@ -37,7 +36,7 @@ Material:
|
||||
- _OutlineWidth: 3
|
||||
- _StencilComp: 8
|
||||
- _StencilRef: 1
|
||||
- _StraightAlphaInput: 1
|
||||
- _StraightAlphaInput: 0
|
||||
- _ThresholdEnd: 0.25
|
||||
- _Use8Neighbourhood: 1
|
||||
- _UseScreenSpaceOutlineWidth: 0
|
||||
@ -1,8 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 761feb0ebab18a34e8803e9e125b226f
|
||||
guid: cdc0d0003273d42ea91db493b70f6c9e
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName: arts/spines/ui/ui_main_button_3.ab
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -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: ui_mainbtn_challenge_skeletondata
|
||||
m_EditorClassIdentifier:
|
||||
atlasAssets:
|
||||
- {fileID: 11400000, guid: 231dfd11388d645128fffa1520358927, type: 2}
|
||||
scale: 0.01
|
||||
skeletonJSON: {fileID: 4900000, guid: 825250f6ebb5d41a3be151f9f36f0a4f, type: 3}
|
||||
isUpgradingBlendModeMaterials: 0
|
||||
blendModeMaterials:
|
||||
requiresBlendModeMaterials: 0
|
||||
applyAdditiveMaterial: 0
|
||||
additiveMaterials: []
|
||||
multiplyMaterials: []
|
||||
screenMaterials: []
|
||||
skeletonDataModifiers: []
|
||||
fromAnimation: []
|
||||
toAnimation: []
|
||||
duration: []
|
||||
defaultMix: 0.2
|
||||
controller: {fileID: 0}
|
||||
@ -1,8 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 234507584d8c82347a60a064dd7827a1
|
||||
guid: 777f208010d4f4bd49ec1cf6335978db
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 11400000
|
||||
userData:
|
||||
assetBundleName: arts/spines/ui/ui_main_button_1.ab
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 105f076467146d849ba22d1e54aa0124
|
||||
guid: d1db9bcd5ae8147f9a4aed9dd6607aaa
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
@ -0,0 +1,7 @@
|
||||
ui_mainbtn_company.png
|
||||
size:256,256
|
||||
filter:Linear,Linear
|
||||
yuan
|
||||
bounds:2,117,107,113
|
||||
zhihui
|
||||
bounds:2,2,107,113
|
||||
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 02cc0b307bb3d4973bf3364729bbbc9c
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
Assets/arts/spines/ui/ui_main_btn_company/ui_mainbtn_company.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
@ -0,0 +1,147 @@
|
||||
fileFormatVersion: 2
|
||||
guid: a4c64dcc52d544c2b8d010e7c0f6cb83
|
||||
TextureImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 12
|
||||
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
|
||||
ignoreMasterTextureLimit: 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
|
||||
cookieLightType: 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: 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: 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: Server
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 0
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 1
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 497f02d55b4534010aa1fed6800c5402
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,19 @@
|
||||
%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: ui_mainbtn_company_atlas
|
||||
m_EditorClassIdentifier:
|
||||
textureLoadingMode: 0
|
||||
onDemandTextureLoader: {fileID: 0}
|
||||
atlasFile: {fileID: 4900000, guid: 02cc0b307bb3d4973bf3364729bbbc9c, type: 3}
|
||||
materials:
|
||||
- {fileID: 2100000, guid: 196447820400a4e7db058835c53a6712, type: 2}
|
||||
@ -1,8 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: eb737806f005b31488fa6f4f6ba1fdd6
|
||||
guid: 420f1993c6a124ae19850f83e8c1fecf
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 11400000
|
||||
userData:
|
||||
assetBundleName: arts/spines/ui/ui_main_button_1.ab
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,45 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: ui_mainbtn_company_material
|
||||
m_Shader: {fileID: 4800000, guid: 1e8a610c9e01c3648bac42585e5fc676, type: 3}
|
||||
m_ValidKeywords: []
|
||||
m_InvalidKeywords:
|
||||
- _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: a4c64dcc52d544c2b8d010e7c0f6cb83, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _Cutoff: 0.1
|
||||
- _Fill: 0
|
||||
- _OutlineMipLevel: 0
|
||||
- _OutlineOpaqueAlpha: 1
|
||||
- _OutlineReferenceTexWidth: 1024
|
||||
- _OutlineSmoothness: 1
|
||||
- _OutlineWidth: 3
|
||||
- _StencilComp: 8
|
||||
- _StencilRef: 1
|
||||
- _StraightAlphaInput: 0
|
||||
- _ThresholdEnd: 0.25
|
||||
- _Use8Neighbourhood: 1
|
||||
- _UseScreenSpaceOutlineWidth: 0
|
||||
m_Colors:
|
||||
- _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
@ -1,8 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6db07b364f2ce2c44a8489ab6db29beb
|
||||
guid: 196447820400a4e7db058835c53a6712
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName: arts/spines/ui/ui_main_button_1.ab
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -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: ui_mainbtn_company_skeletondata
|
||||
m_EditorClassIdentifier:
|
||||
atlasAssets:
|
||||
- {fileID: 11400000, guid: 420f1993c6a124ae19850f83e8c1fecf, type: 2}
|
||||
scale: 0.01
|
||||
skeletonJSON: {fileID: 4900000, guid: 497f02d55b4534010aa1fed6800c5402, type: 3}
|
||||
isUpgradingBlendModeMaterials: 0
|
||||
blendModeMaterials:
|
||||
requiresBlendModeMaterials: 0
|
||||
applyAdditiveMaterial: 0
|
||||
additiveMaterials: []
|
||||
multiplyMaterials: []
|
||||
screenMaterials: []
|
||||
skeletonDataModifiers: []
|
||||
fromAnimation: []
|
||||
toAnimation: []
|
||||
duration: []
|
||||
defaultMix: 0.2
|
||||
controller: {fileID: 0}
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 513197592452c475a9acae1714fa2bb7
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 11400000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 770bbe23857c9f141a69bb82964ed1ad
|
||||
guid: c7b566d4a2a9241448b8fa4abee8a685
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
@ -0,0 +1,9 @@
|
||||
ui_main_btn_fight.png
|
||||
size:256,256
|
||||
filter:Linear,Linear
|
||||
jian_1
|
||||
bounds:2,13,109,110
|
||||
jian_2
|
||||
bounds:127,125,108,110
|
||||
zhihui
|
||||
bounds:2,125,123,110
|
||||
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9eb05a874e66740fd99a8acded87c227
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
Assets/arts/spines/ui/ui_main_btn_fight/ui_main_btn_fight.png
Normal file
|
After Width: | Height: | Size: 21 KiB |
@ -0,0 +1,147 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 69911d31a31724958aa712a41206feea
|
||||
TextureImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 12
|
||||
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
|
||||
ignoreMasterTextureLimit: 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
|
||||
cookieLightType: 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: 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: 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: Server
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 0
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 1
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5f0af53a938124ce2a777a0cea25eb5f
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -10,10 +10,10 @@ MonoBehaviour:
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
|
||||
m_Name: ui_main_button_3_atlas
|
||||
m_Name: ui_main_btn_fight_atlas
|
||||
m_EditorClassIdentifier:
|
||||
textureLoadingMode: 0
|
||||
onDemandTextureLoader: {fileID: 0}
|
||||
atlasFile: {fileID: 4900000, guid: 72580cce0e2c11043856bce298757361, type: 3}
|
||||
atlasFile: {fileID: 4900000, guid: 9eb05a874e66740fd99a8acded87c227, type: 3}
|
||||
materials:
|
||||
- {fileID: 2100000, guid: 761feb0ebab18a34e8803e9e125b226f, type: 2}
|
||||
- {fileID: 2100000, guid: 9b83bb4a419a3430bb3c3121a115313e, type: 2}
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 703df7dc4d8a44623826c494310a96e9
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 11400000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -7,10 +7,9 @@ Material:
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: ui_main_button_3_material
|
||||
m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
|
||||
m_ValidKeywords:
|
||||
- _STRAIGHT_ALPHA_INPUT
|
||||
m_Name: ui_main_btn_fight_material
|
||||
m_Shader: {fileID: 4800000, guid: 1e8a610c9e01c3648bac42585e5fc676, type: 3}
|
||||
m_ValidKeywords: []
|
||||
m_InvalidKeywords:
|
||||
- _USE8NEIGHBOURHOOD_ON
|
||||
m_LightmapFlags: 4
|
||||
@ -23,12 +22,13 @@ Material:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 2800000, guid: cbe6156010ec2ce4d9ae429ee6d7fda8, type: 3}
|
||||
m_Texture: {fileID: 2800000, guid: 69911d31a31724958aa712a41206feea, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _Cutoff: 0.1
|
||||
- _Fill: 0
|
||||
- _OutlineMipLevel: 0
|
||||
- _OutlineOpaqueAlpha: 1
|
||||
- _OutlineReferenceTexWidth: 1024
|
||||
@ -36,9 +36,10 @@ Material:
|
||||
- _OutlineWidth: 3
|
||||
- _StencilComp: 8
|
||||
- _StencilRef: 1
|
||||
- _StraightAlphaInput: 1
|
||||
- _StraightAlphaInput: 0
|
||||
- _ThresholdEnd: 0.25
|
||||
- _Use8Neighbourhood: 1
|
||||
- _UseScreenSpaceOutlineWidth: 0
|
||||
m_Colors:
|
||||
- _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
@ -1,8 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 74a0eefb72afcec4e9e89962ce20840c
|
||||
guid: 9b83bb4a419a3430bb3c3121a115313e
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName: arts/spines/ui/ui_main_button_2.ab
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -10,12 +10,12 @@ MonoBehaviour:
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
|
||||
m_Name: ui_main_button_2_skeletondata
|
||||
m_Name: ui_main_btn_fight_skeletondata
|
||||
m_EditorClassIdentifier:
|
||||
atlasAssets:
|
||||
- {fileID: 11400000, guid: 0cc3a5fea9b88254989dbb270afc55c0, type: 2}
|
||||
- {fileID: 11400000, guid: 703df7dc4d8a44623826c494310a96e9, type: 2}
|
||||
scale: 0.01
|
||||
skeletonJSON: {fileID: 4900000, guid: 8a5aba99a1fde664eb6a960ce7bb506b, type: 3}
|
||||
skeletonJSON: {fileID: 4900000, guid: 5f0af53a938124ce2a777a0cea25eb5f, type: 3}
|
||||
isUpgradingBlendModeMaterials: 0
|
||||
blendModeMaterials:
|
||||
requiresBlendModeMaterials: 0
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 40c958afc97fd47848a973e34b7c5590
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 11400000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
8
Assets/arts/spines/ui/ui_main_btn_force.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1a92fd32e31ae43808eaf0da3af8112b
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,7 @@
|
||||
ui_main_btn_force.png
|
||||
size:256,256
|
||||
filter:Linear,Linear
|
||||
toukui
|
||||
bounds:2,115,95,111
|
||||
zhihui
|
||||
bounds:2,2,95,111
|
||||
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 674cdf105d1c64c5e8f756f42bcc1e6a
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
Assets/arts/spines/ui/ui_main_btn_force/ui_main_btn_force.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
@ -0,0 +1,147 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5d6904411aa334d958aabe01252ae03f
|
||||
TextureImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 12
|
||||
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
|
||||
ignoreMasterTextureLimit: 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
|
||||
cookieLightType: 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: 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: 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: Server
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 0
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 1
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 580adb761974e474590e8cecb38db62f
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -10,10 +10,10 @@ MonoBehaviour:
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
|
||||
m_Name: ui_main_button_2_atlas
|
||||
m_Name: ui_main_btn_force_atlas
|
||||
m_EditorClassIdentifier:
|
||||
textureLoadingMode: 0
|
||||
onDemandTextureLoader: {fileID: 0}
|
||||
atlasFile: {fileID: 4900000, guid: 6eb4ba170710c874e8af307aefced28e, type: 3}
|
||||
atlasFile: {fileID: 4900000, guid: 674cdf105d1c64c5e8f756f42bcc1e6a, type: 3}
|
||||
materials:
|
||||
- {fileID: 2100000, guid: 74a0eefb72afcec4e9e89962ce20840c, type: 2}
|
||||
- {fileID: 2100000, guid: eaed2d54766794951aa928ccdec9b3bc, type: 2}
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d8daaf55a02084a1a8a04eac15ef1275
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 11400000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,45 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: ui_main_btn_force_material
|
||||
m_Shader: {fileID: 4800000, guid: 1e8a610c9e01c3648bac42585e5fc676, type: 3}
|
||||
m_ValidKeywords: []
|
||||
m_InvalidKeywords:
|
||||
- _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: 5d6904411aa334d958aabe01252ae03f, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _Cutoff: 0.1
|
||||
- _Fill: 0
|
||||
- _OutlineMipLevel: 0
|
||||
- _OutlineOpaqueAlpha: 1
|
||||
- _OutlineReferenceTexWidth: 1024
|
||||
- _OutlineSmoothness: 1
|
||||
- _OutlineWidth: 3
|
||||
- _StencilComp: 8
|
||||
- _StencilRef: 1
|
||||
- _StraightAlphaInput: 0
|
||||
- _ThresholdEnd: 0.25
|
||||
- _Use8Neighbourhood: 1
|
||||
- _UseScreenSpaceOutlineWidth: 0
|
||||
m_Colors:
|
||||
- _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: eaed2d54766794951aa928ccdec9b3bc
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -10,11 +10,12 @@ MonoBehaviour:
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
|
||||
m_Name: ui_main_button_1_skeletondata
|
||||
m_Name: ui_main_btn_force_skeletondata
|
||||
m_EditorClassIdentifier:
|
||||
atlasAssets: []
|
||||
atlasAssets:
|
||||
- {fileID: 11400000, guid: d8daaf55a02084a1a8a04eac15ef1275, type: 2}
|
||||
scale: 0.01
|
||||
skeletonJSON: {fileID: 4900000, guid: 9b0b7202af54ac14da3d22be095b6e20, type: 3}
|
||||
skeletonJSON: {fileID: 4900000, guid: 580adb761974e474590e8cecb38db62f, type: 3}
|
||||
isUpgradingBlendModeMaterials: 0
|
||||
blendModeMaterials:
|
||||
requiresBlendModeMaterials: 0
|
||||
@ -26,5 +27,5 @@ MonoBehaviour:
|
||||
fromAnimation: []
|
||||
toAnimation: []
|
||||
duration: []
|
||||
defaultMix: 0
|
||||
defaultMix: 0.2
|
||||
controller: {fileID: 0}
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 522e8f3329c5e4451afd27ac1d69558d
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 11400000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
8
Assets/arts/spines/ui/ui_main_btn_shop.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3f666f8351f934c13a085cccb3b987f2
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,9 @@
|
||||
ui_main_btn_shop.png
|
||||
size:256,256
|
||||
filter:Linear,Linear
|
||||
shangsheng_1
|
||||
bounds:98,158,94,46
|
||||
shangsheng_2
|
||||
bounds:2,2,88,100
|
||||
zhihui
|
||||
bounds:2,104,94,100
|
||||
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 44b24301b69d6438e839a88c636a70ab
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
Assets/arts/spines/ui/ui_main_btn_shop/ui_main_btn_shop.png
Normal file
|
After Width: | Height: | Size: 8.2 KiB |
147
Assets/arts/spines/ui/ui_main_btn_shop/ui_main_btn_shop.png.meta
Normal file
@ -0,0 +1,147 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ed17c38aa56d944178cf7f71d50e0a03
|
||||
TextureImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 12
|
||||
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
|
||||
ignoreMasterTextureLimit: 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
|
||||
cookieLightType: 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: 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: 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: Server
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 0
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 1
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 0dbc429d3d53043629ed6593f10e1c3f
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -10,10 +10,10 @@ MonoBehaviour:
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
|
||||
m_Name: ui_main_button_1_atlas
|
||||
m_Name: ui_main_btn_shop_atlas
|
||||
m_EditorClassIdentifier:
|
||||
textureLoadingMode: 0
|
||||
onDemandTextureLoader: {fileID: 0}
|
||||
atlasFile: {fileID: 4900000, guid: 96b3bffd80b0e77479f28565b73997ab, type: 3}
|
||||
atlasFile: {fileID: 4900000, guid: 44b24301b69d6438e839a88c636a70ab, type: 3}
|
||||
materials:
|
||||
- {fileID: 2100000, guid: 6db07b364f2ce2c44a8489ab6db29beb, type: 2}
|
||||
- {fileID: 2100000, guid: 22bcd103294c740919bac645d6739614, type: 2}
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6b3c26fec7b5c48ce80fefc56f662dd6
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 11400000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -7,10 +7,9 @@ Material:
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: ui_main_button_2_material
|
||||
m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3}
|
||||
m_ValidKeywords:
|
||||
- _STRAIGHT_ALPHA_INPUT
|
||||
m_Name: ui_main_btn_shop_material
|
||||
m_Shader: {fileID: 4800000, guid: 1e8a610c9e01c3648bac42585e5fc676, type: 3}
|
||||
m_ValidKeywords: []
|
||||
m_InvalidKeywords:
|
||||
- _USE8NEIGHBOURHOOD_ON
|
||||
m_LightmapFlags: 4
|
||||
@ -23,12 +22,13 @@ Material:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 2800000, guid: 24dd3f0c37cd4394fac578c17874c069, type: 3}
|
||||
m_Texture: {fileID: 2800000, guid: ed17c38aa56d944178cf7f71d50e0a03, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _Cutoff: 0.1
|
||||
- _Fill: 0
|
||||
- _OutlineMipLevel: 0
|
||||
- _OutlineOpaqueAlpha: 1
|
||||
- _OutlineReferenceTexWidth: 1024
|
||||
@ -36,9 +36,10 @@ Material:
|
||||
- _OutlineWidth: 3
|
||||
- _StencilComp: 8
|
||||
- _StencilRef: 1
|
||||
- _StraightAlphaInput: 1
|
||||
- _StraightAlphaInput: 0
|
||||
- _ThresholdEnd: 0.25
|
||||
- _Use8Neighbourhood: 1
|
||||
- _UseScreenSpaceOutlineWidth: 0
|
||||
m_Colors:
|
||||
- _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 22bcd103294c740919bac645d6739614
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -10,12 +10,12 @@ MonoBehaviour:
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
|
||||
m_Name: ui_main_button_3_skeletondata
|
||||
m_Name: ui_main_btn_shop_skeletondata
|
||||
m_EditorClassIdentifier:
|
||||
atlasAssets:
|
||||
- {fileID: 11400000, guid: 6c8038d8d105e934391bfaab89a287bb, type: 2}
|
||||
- {fileID: 11400000, guid: 6b3c26fec7b5c48ce80fefc56f662dd6, type: 2}
|
||||
scale: 0.01
|
||||
skeletonJSON: {fileID: 4900000, guid: cb3aeff8034630349a26fd994ed10d07, type: 3}
|
||||
skeletonJSON: {fileID: 4900000, guid: 0dbc429d3d53043629ed6593f10e1c3f, type: 3}
|
||||
isUpgradingBlendModeMaterials: 0
|
||||
blendModeMaterials:
|
||||
requiresBlendModeMaterials: 0
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b7d7c1a217a3d4dffb553946b22dbfa6
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 11400000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -1,11 +0,0 @@
|
||||
ui_main_button_1.png
|
||||
size:128,128
|
||||
filter:Linear,Linear
|
||||
shop1
|
||||
bounds:2,59,103,64
|
||||
offsets:1,0,104,64
|
||||
shop2
|
||||
bounds:107,25,98,16
|
||||
rotate:90
|
||||
shop3
|
||||
bounds:2,15,81,42
|
||||
|
Before Width: | Height: | Size: 4.1 KiB |
@ -1,7 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9b0b7202af54ac14da3d22be095b6e20
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName: arts/spines/ui/ui_main_button_1.ab
|
||||
assetBundleVariant:
|
||||
@ -1,7 +0,0 @@
|
||||
ui_main_button_2.png
|
||||
size:256,256
|
||||
filter:Linear,Linear
|
||||
j1
|
||||
bounds:2,2,104,104
|
||||
j2
|
||||
bounds:2,108,105,104
|
||||
@ -1,7 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6eb4ba170710c874e8af307aefced28e
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName: arts/spines/ui/ui_main_button_2.ab
|
||||
assetBundleVariant:
|
||||
|
Before Width: | Height: | Size: 12 KiB |
@ -1,7 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8a5aba99a1fde664eb6a960ce7bb506b
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName: arts/spines/ui/ui_main_button_2.ab
|
||||
assetBundleVariant:
|
||||
@ -1,23 +0,0 @@
|
||||
ui_main_button_3.png
|
||||
size:256,256
|
||||
filter:Linear,Linear
|
||||
p1
|
||||
bounds:1,48,87,99
|
||||
p2
|
||||
bounds:102,153,86,98
|
||||
p3
|
||||
bounds:1,149,99,102
|
||||
y1_1
|
||||
bounds:190,207,14,22
|
||||
y1_2
|
||||
bounds:210,237,14,22
|
||||
rotate:90
|
||||
y2_1
|
||||
bounds:1,1,14,23
|
||||
y2_2
|
||||
bounds:21,32,14,23
|
||||
rotate:90
|
||||
y3_1
|
||||
bounds:1,26,18,20
|
||||
y3_2
|
||||
bounds:190,231,18,20
|
||||
@ -1,7 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 72580cce0e2c11043856bce298757361
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName: arts/spines/ui/ui_main_button_3.ab
|
||||
assetBundleVariant:
|
||||
|
Before Width: | Height: | Size: 15 KiB |