diff --git a/Assets/Scripts/Component/Touch/EliminationTouchEvent.cs b/Assets/Scripts/Component/Touch/EliminationTouchEvent.cs new file mode 100644 index 000000000..4f3f5c666 --- /dev/null +++ b/Assets/Scripts/Component/Touch/EliminationTouchEvent.cs @@ -0,0 +1,89 @@ +using System.Net; +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.EventSystems; +using UnityEngine.UI; +using System; + +namespace BF +{ + public enum EliminationTouchEventType + { + Unknown = 0, + Enter, + Down, + Up, + Cancel, + Exit + } + + [RequireComponent(typeof(Graphic))] + public class EliminationTouchEvent : MonoBehaviour, IPointerDownHandler, IPointerUpHandler, IPointerEnterHandler, IPointerExitHandler, ICancelHandler + { + protected Action luaFunc; +#if UNITY_EDITOR + private EliminationTouchEventType touchEvent = EliminationTouchEventType.Unknown; +#endif + + public void AddTouchEventListener(Action func) + { + luaFunc = func; + } + + public void RemoveEventListener() + { + luaFunc = null; + } + + public void OnCancel(BaseEventData eventData) + { + if (luaFunc != null) + { + luaFunc((int)EliminationTouchEventType.Cancel, 0, 0); + } + } + + public void OnPointerDown(PointerEventData eventData) + { + if (luaFunc != null) + { + luaFunc((int)EliminationTouchEventType.Down, eventData.position.x, eventData.position.y); + } + } + + public void OnPointerEnter(PointerEventData eventData) + { + // if (!ReferenceEquals(eventData.pointerPress, eventData.pointerEnter)) + // { + // return; + // } +// #if UNITY_EDITOR +// if (touchEvent != EliminationTouchEventType.Down) +// { +// return; +// } +// #endif + if (luaFunc != null) + { + luaFunc((int)EliminationTouchEventType.Enter, eventData.position.x, eventData.position.y); + } + } + + public void OnPointerExit(PointerEventData eventData) + { + if (luaFunc != null) + { + luaFunc((int)EliminationTouchEventType.Exit, eventData.position.x, eventData.position.y); + } + } + + public void OnPointerUp(PointerEventData eventData) + { + if (luaFunc != null) + { + luaFunc((int)EliminationTouchEventType.Up, eventData.position.x, eventData.position.y); + } + } + } +} diff --git a/Assets/Scripts/Component/Touch/EliminationTouchEvent.cs.meta b/Assets/Scripts/Component/Touch/EliminationTouchEvent.cs.meta new file mode 100644 index 000000000..ac5e34f98 --- /dev/null +++ b/Assets/Scripts/Component/Touch/EliminationTouchEvent.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: cff37445e8036d54e82348b618225833 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/XLua/Gen/BF_EliminationTouchEventWrap.cs b/Assets/XLua/Gen/BF_EliminationTouchEventWrap.cs new file mode 100644 index 000000000..d0a2481be --- /dev/null +++ b/Assets/XLua/Gen/BF_EliminationTouchEventWrap.cs @@ -0,0 +1,286 @@ +#if USE_UNI_LUA +using LuaAPI = UniLua.Lua; +using RealStatePtr = UniLua.ILuaState; +using LuaCSFunction = UniLua.CSharpFunctionDelegate; +#else +using LuaAPI = XLua.LuaDLL.Lua; +using RealStatePtr = System.IntPtr; +using LuaCSFunction = XLua.LuaDLL.lua_CSFunction; +#endif + +using XLua; +using System.Collections.Generic; + + +namespace XLua.CSObjectWrap +{ + using Utils = XLua.Utils; + public class BFEliminationTouchEventWrap + { + public static void __Register(RealStatePtr L) + { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + System.Type type = typeof(BF.EliminationTouchEvent); + Utils.BeginObjectRegister(type, L, translator, 0, 7, 0, 0); + + Utils.RegisterFunc(L, Utils.METHOD_IDX, "AddTouchEventListener", _m_AddTouchEventListener); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "RemoveEventListener", _m_RemoveEventListener); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnCancel", _m_OnCancel); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnPointerDown", _m_OnPointerDown); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnPointerEnter", _m_OnPointerEnter); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnPointerExit", _m_OnPointerExit); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnPointerUp", _m_OnPointerUp); + + + + + + Utils.EndObjectRegister(type, L, translator, null, null, + null, null, null); + + Utils.BeginClassRegister(type, L, __CreateInstance, 1, 0, 0); + + + + + + + Utils.EndClassRegister(type, L, translator); + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int __CreateInstance(RealStatePtr L) + { + + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + if(LuaAPI.lua_gettop(L) == 1) + { + + var gen_ret = new BF.EliminationTouchEvent(); + translator.Push(L, gen_ret); + + return 1; + } + + } + catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + return LuaAPI.luaL_error(L, "invalid arguments to BF.EliminationTouchEvent constructor!"); + + } + + + + + + + + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_AddTouchEventListener(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + BF.EliminationTouchEvent gen_to_be_invoked = (BF.EliminationTouchEvent)translator.FastGetCSObj(L, 1); + + + + { + System.Action _func = translator.GetDelegate>(L, 2); + + gen_to_be_invoked.AddTouchEventListener( _func ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_RemoveEventListener(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + BF.EliminationTouchEvent gen_to_be_invoked = (BF.EliminationTouchEvent)translator.FastGetCSObj(L, 1); + + + + { + + gen_to_be_invoked.RemoveEventListener( ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_OnCancel(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + BF.EliminationTouchEvent gen_to_be_invoked = (BF.EliminationTouchEvent)translator.FastGetCSObj(L, 1); + + + + { + UnityEngine.EventSystems.BaseEventData _eventData = (UnityEngine.EventSystems.BaseEventData)translator.GetObject(L, 2, typeof(UnityEngine.EventSystems.BaseEventData)); + + gen_to_be_invoked.OnCancel( _eventData ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_OnPointerDown(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + BF.EliminationTouchEvent gen_to_be_invoked = (BF.EliminationTouchEvent)translator.FastGetCSObj(L, 1); + + + + { + UnityEngine.EventSystems.PointerEventData _eventData = (UnityEngine.EventSystems.PointerEventData)translator.GetObject(L, 2, typeof(UnityEngine.EventSystems.PointerEventData)); + + gen_to_be_invoked.OnPointerDown( _eventData ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_OnPointerEnter(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + BF.EliminationTouchEvent gen_to_be_invoked = (BF.EliminationTouchEvent)translator.FastGetCSObj(L, 1); + + + + { + UnityEngine.EventSystems.PointerEventData _eventData = (UnityEngine.EventSystems.PointerEventData)translator.GetObject(L, 2, typeof(UnityEngine.EventSystems.PointerEventData)); + + gen_to_be_invoked.OnPointerEnter( _eventData ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_OnPointerExit(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + BF.EliminationTouchEvent gen_to_be_invoked = (BF.EliminationTouchEvent)translator.FastGetCSObj(L, 1); + + + + { + UnityEngine.EventSystems.PointerEventData _eventData = (UnityEngine.EventSystems.PointerEventData)translator.GetObject(L, 2, typeof(UnityEngine.EventSystems.PointerEventData)); + + gen_to_be_invoked.OnPointerExit( _eventData ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_OnPointerUp(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + BF.EliminationTouchEvent gen_to_be_invoked = (BF.EliminationTouchEvent)translator.FastGetCSObj(L, 1); + + + + { + UnityEngine.EventSystems.PointerEventData _eventData = (UnityEngine.EventSystems.PointerEventData)translator.GetObject(L, 2, typeof(UnityEngine.EventSystems.PointerEventData)); + + gen_to_be_invoked.OnPointerUp( _eventData ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + + + + + + + + + + } +} diff --git a/Assets/XLua/Gen/XLuaGenAutoRegister.cs b/Assets/XLua/Gen/XLuaGenAutoRegister.cs index aa3ae4728..c7446fd4b 100644 --- a/Assets/XLua/Gen/XLuaGenAutoRegister.cs +++ b/Assets/XLua/Gen/XLuaGenAutoRegister.cs @@ -1661,6 +1661,9 @@ namespace XLua.CSObjectWrap translator.DelayWrapLoader(typeof(BF.DragEventSync), BFDragEventSyncWrap.__Register); + translator.DelayWrapLoader(typeof(BF.EliminationTouchEvent), BFEliminationTouchEventWrap.__Register); + + translator.DelayWrapLoader(typeof(BF.UIDragEvent), BFUIDragEventWrap.__Register); @@ -1741,14 +1744,14 @@ namespace XLua.CSObjectWrap translator.DelayWrapLoader(typeof(BF.TutorialClickArea), BFTutorialClickAreaWrap.__Register); - - translator.DelayWrapLoader(typeof(BF.UIDynamicBrightEffect), BFUIDynamicBrightEffectWrap.__Register); - } static void wrapInit11(LuaEnv luaenv, ObjectTranslator translator) { + translator.DelayWrapLoader(typeof(BF.UIDynamicBrightEffect), BFUIDynamicBrightEffectWrap.__Register); + + translator.DelayWrapLoader(typeof(BF.UIDynamicShinyEffect), BFUIDynamicShinyEffectWrap.__Register); @@ -1898,14 +1901,14 @@ namespace XLua.CSObjectWrap translator.DelayWrapLoader(typeof(TMPro.TMP_FontUtilities), TMProTMP_FontUtilitiesWrap.__Register); - - translator.DelayWrapLoader(typeof(TMPro.TMP_FontAssetUtilities), TMProTMP_FontAssetUtilitiesWrap.__Register); - } static void wrapInit12(LuaEnv luaenv, ObjectTranslator translator) { + translator.DelayWrapLoader(typeof(TMPro.TMP_FontAssetUtilities), TMProTMP_FontAssetUtilitiesWrap.__Register); + + translator.DelayWrapLoader(typeof(TMPro.TMP_FontFeatureTable), TMProTMP_FontFeatureTableWrap.__Register); @@ -2055,14 +2058,14 @@ namespace XLua.CSObjectWrap translator.DelayWrapLoader(typeof(TMPro.TMP_Dropdown.OptionDataList), TMProTMP_DropdownOptionDataListWrap.__Register); - - translator.DelayWrapLoader(typeof(TMPro.TMP_Dropdown.DropdownEvent), TMProTMP_DropdownDropdownEventWrap.__Register); - } static void wrapInit13(LuaEnv luaenv, ObjectTranslator translator) { + translator.DelayWrapLoader(typeof(TMPro.TMP_Dropdown.DropdownEvent), TMProTMP_DropdownDropdownEventWrap.__Register); + + translator.DelayWrapLoader(typeof(TMPro.TMP_InputField.SubmitEvent), TMProTMP_InputFieldSubmitEventWrap.__Register); @@ -2212,14 +2215,14 @@ namespace XLua.CSObjectWrap translator.DelayWrapLoader(typeof(UnityEngine.UI.Shadow), UnityEngineUIShadowWrap.__Register); - - translator.DelayWrapLoader(typeof(UnityEngine.UI.Button.ButtonClickedEvent), UnityEngineUIButtonButtonClickedEventWrap.__Register); - } static void wrapInit14(LuaEnv luaenv, ObjectTranslator translator) { + translator.DelayWrapLoader(typeof(UnityEngine.UI.Button.ButtonClickedEvent), UnityEngineUIButtonButtonClickedEventWrap.__Register); + + translator.DelayWrapLoader(typeof(UnityEngine.UI.Dropdown.OptionData), UnityEngineUIDropdownOptionDataWrap.__Register); @@ -2369,14 +2372,14 @@ namespace XLua.CSObjectWrap translator.DelayWrapLoader(typeof(FBWindowsA2UNotificationsManager), FBWindowsA2UNotificationsManagerWrap.__Register); - - translator.DelayWrapLoader(typeof(FBWindowsADSManager), FBWindowsADSManagerWrap.__Register); - } static void wrapInit15(LuaEnv luaenv, ObjectTranslator translator) { + translator.DelayWrapLoader(typeof(FBWindowsADSManager), FBWindowsADSManagerWrap.__Register); + + translator.DelayWrapLoader(typeof(FBWindowsExampleTabsManager), FBWindowsExampleTabsManagerWrap.__Register); @@ -2526,14 +2529,14 @@ namespace XLua.CSObjectWrap translator.DelayWrapLoader(typeof(SignInWithAppleTest_Callbacks), SignInWithAppleTest_CallbacksWrap.__Register); - - translator.DelayWrapLoader(typeof(SignInWithAppleTest_EventSystem), SignInWithAppleTest_EventSystemWrap.__Register); - } static void wrapInit16(LuaEnv luaenv, ObjectTranslator translator) { + translator.DelayWrapLoader(typeof(SignInWithAppleTest_EventSystem), SignInWithAppleTest_EventSystemWrap.__Register); + + translator.DelayWrapLoader(typeof(LuaAsset), LuaAssetWrap.__Register); @@ -2683,14 +2686,14 @@ namespace XLua.CSObjectWrap translator.DelayWrapLoader(typeof(UIImageSheetAnimation.StartFrameType), UIImageSheetAnimationStartFrameTypeWrap.__Register); - - translator.DelayWrapLoader(typeof(ThinkingAnalytics.ThinkingAnalyticsAPI.Token), ThinkingAnalyticsThinkingAnalyticsAPITokenWrap.__Register); - } static void wrapInit17(LuaEnv luaenv, ObjectTranslator translator) { + translator.DelayWrapLoader(typeof(ThinkingAnalytics.ThinkingAnalyticsAPI.Token), ThinkingAnalyticsThinkingAnalyticsAPITokenWrap.__Register); + + translator.DelayWrapLoader(typeof(object), SystemObjectWrap.__Register); @@ -2840,14 +2843,14 @@ namespace XLua.CSObjectWrap translator.DelayWrapLoader(typeof(UnityEngine.Events.UnityEvent), UnityEngineEventsUnityEvent_1_UnityEngineVector2_Wrap.__Register); - - translator.DelayWrapLoader(typeof(UnityEngine.Events.UnityEvent), UnityEngineEventsUnityEvent_1_SystemInt32_Wrap.__Register); - } static void wrapInit18(LuaEnv luaenv, ObjectTranslator translator) { + translator.DelayWrapLoader(typeof(UnityEngine.Events.UnityEvent), UnityEngineEventsUnityEvent_1_SystemInt32_Wrap.__Register); + + translator.DelayWrapLoader(typeof(UnityEngine.Events.UnityEvent), UnityEngineEventsUnityEvent_1_SystemInt64_Wrap.__Register); @@ -2997,14 +3000,14 @@ namespace XLua.CSObjectWrap translator.DelayWrapLoader(typeof(Spine.Unity.MeshGenerator.Settings), SpineUnityMeshGeneratorSettingsWrap.__Register); - - translator.DelayWrapLoader(typeof(Spine.Unity.SkeletonRenderer), SpineUnitySkeletonRendererWrap.__Register); - } static void wrapInit19(LuaEnv luaenv, ObjectTranslator translator) { + translator.DelayWrapLoader(typeof(Spine.Unity.SkeletonRenderer), SpineUnitySkeletonRendererWrap.__Register); + + translator.DelayWrapLoader(typeof(Spine.Unity.SkeletonRenderer.SpriteMaskInteractionMaterials), SpineUnitySkeletonRendererSpriteMaskInteractionMaterialsWrap.__Register); diff --git a/Assets/XLua/Gen/link.xml b/Assets/XLua/Gen/link.xml index 943ed8a56..6fea3f39e 100644 --- a/Assets/XLua/Gen/link.xml +++ b/Assets/XLua/Gen/link.xml @@ -159,6 +159,7 @@ + diff --git a/Assets/arts/atlas/icon.meta b/Assets/arts/atlas/icon.meta index 0200fa3d1..2d7407ec0 100644 --- a/Assets/arts/atlas/icon.meta +++ b/Assets/arts/atlas/icon.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 04df243b2b439cd4e8ac815143de7453 +guid: 0bb7a964830936c45a20c96edd560d4b folderAsset: yes DefaultImporter: externalObjects: {} diff --git a/Assets/arts/atlas/icon/item.asset b/Assets/arts/atlas/icon/item.asset index abfabcfc7..665cd829f 100644 --- a/Assets/arts/atlas/icon/item.asset +++ b/Assets/arts/atlas/icon/item.asset @@ -15,17 +15,95 @@ MonoBehaviour: spriteList: - {fileID: 21300000, guid: ca105ffa7d9ffc347a89f665c9e3c5e5, type: 3} - {fileID: 21300000, guid: adbbd589f3d48db4698ccad650c8adc6, type: 3} + - {fileID: 21300000, guid: 3d679cef10da8db4c9f220c739d2d00c, type: 3} + - {fileID: 21300000, guid: cc781dadc3f9db04ab34bee07fa1bb6d, type: 3} + - {fileID: 21300000, guid: 3cb5d3120778d8f47a0f584a180c0b7a, type: 3} + - {fileID: 21300000, guid: f0305314bc26cb04f9115d72ce16103c, type: 3} + - {fileID: 21300000, guid: e1cb3f6c360c98548bf2c519217d2ce7, type: 3} + - {fileID: 21300000, guid: 58aaaf6ebacb682438db8711fab2b971, type: 3} + - {fileID: 21300000, guid: ea64cef18bd4a5f4cbfc27720e9bb80d, type: 3} + - {fileID: 21300000, guid: 0bd3d6982020759488c2505db592d6ff, type: 3} + - {fileID: 21300000, guid: c2a0ee42994c62b43b26ef168e86a722, type: 3} + - {fileID: 21300000, guid: 64c110626d7aa7d40873e602d20075d7, type: 3} + - {fileID: 21300000, guid: 8f14b84731f810c4a927fbd7e443523b, type: 3} + - {fileID: 21300000, guid: 8ed07eb9f58eb5f4a83e6f36364cfaf9, type: 3} - {fileID: 21300000, guid: 1655d613573433b4581a21b0eddac778, type: 3} + - {fileID: 21300000, guid: c47832a9e0e09404d8449038856450dc, type: 3} + - {fileID: 21300000, guid: 5778a4464acc95544bdf4c1f27f61998, type: 3} + - {fileID: 21300000, guid: beec5ee8ef765534f9a52c4b88556741, type: 3} + - {fileID: 21300000, guid: 51d28caa0b683164288330612c1b73c3, type: 3} + - {fileID: 21300000, guid: 1607adab06371d044ab3d8b13a8071cc, type: 3} + - {fileID: 21300000, guid: c854783da5902c740a43d029ad11b8c4, type: 3} + - {fileID: 21300000, guid: 5c88dd52e582562499d3cee4e5e47db3, type: 3} + - {fileID: 21300000, guid: b27f978fb0900614f8fc44e8aac691a9, type: 3} + - {fileID: 21300000, guid: bb1778cde99f53546944994c631663d2, type: 3} + - {fileID: 21300000, guid: 211e45e00df30c34f8ad04322688bb86, type: 3} - {fileID: 21300000, guid: 1b7e8d51babf43c40bc8f5b85d7cc5c7, type: 3} + - {fileID: 21300000, guid: 3eb335011f50e6146b72dd06ec84a318, type: 3} + - {fileID: 21300000, guid: 0094740eae4b883478a0dd7343eeb895, type: 3} + - {fileID: 21300000, guid: 7668bc9a0a67c924da9406b2feab3aed, type: 3} + - {fileID: 21300000, guid: 9ea13f46ca552b14f81dd43c5438ed04, type: 3} + - {fileID: 21300000, guid: 9585b65425e976c47b4795954d3550cc, type: 3} + - {fileID: 21300000, guid: a5fa25af5369c1e4287cdb1a595b08fc, type: 3} + - {fileID: 21300000, guid: a028ee290e3cd0e44add6d2a0a804cca, type: 3} + - {fileID: 21300000, guid: 66c7d3962879a0d47b0f8eb898f9bb07, type: 3} + - {fileID: 21300000, guid: 2040c02a5bcf2d24fab2637a2a218132, type: 3} - {fileID: 21300000, guid: 92c79d2f10af46a4e9e40076ca06e0a4, type: 3} + - {fileID: 21300000, guid: 1ccd595ff75818b4884bed19b151d8e8, type: 3} + - {fileID: 21300000, guid: d474e96253f4119448c6e3263a46c883, type: 3} + - {fileID: 21300000, guid: cb7f6a69fa65bdf49ab5eadc8b00911e, type: 3} + - {fileID: 21300000, guid: d9efba97d4fa8ed469b4c1e4d42aaefa, type: 3} + - {fileID: 21300000, guid: 9f58ca18732cd7444bb8d1b87bd94006, type: 3} + - {fileID: 21300000, guid: 30b2ffbfc7e850349828624b696cfceb, type: 3} + - {fileID: 21300000, guid: 1ddd63eff80a63e409cdeff1806d9c8a, type: 3} + - {fileID: 21300000, guid: 99cbbdb559c12644181f1ce4c58d26fd, type: 3} + - {fileID: 21300000, guid: 7f0fb9af945fc9648aebd80cbeff172b, type: 3} + - {fileID: 21300000, guid: f3bdfec79f10342488dfc6bb6dd72a71, type: 3} - {fileID: 21300000, guid: 1f5778dd8acbded488351a61cca049e1, type: 3} + - {fileID: 21300000, guid: 75cbac0fb99267247a83b1b28ec499c5, type: 3} + - {fileID: 21300000, guid: 9d1acc59e5ecb3249812ac577bfe4363, type: 3} + - {fileID: 21300000, guid: 4b2173e8ffaf1364e83a587fe3364da0, type: 3} + - {fileID: 21300000, guid: 4bec5e821e7427f40b7028c25e4d1166, type: 3} + - {fileID: 21300000, guid: 87016c72016d1ca44bad5d4e27d56a69, type: 3} + - {fileID: 21300000, guid: 78294e1b4df978b46aa0c5282e459e09, type: 3} + - {fileID: 21300000, guid: bce74f1b6309af84bb3a0441760969cc, type: 3} + - {fileID: 21300000, guid: 6755c31659bd78e42b3ae95e3073ec78, type: 3} - {fileID: 21300000, guid: 826d9447801db4e48beec4d282d8232e, type: 3} + - {fileID: 21300000, guid: 477a846abe66bcf40a1397b05397d7f9, type: 3} + - {fileID: 21300000, guid: cc1875e8c0208fe419465f76fe93045d, type: 3} + - {fileID: 21300000, guid: 260240f6f52033948ae6d0c05a03faae, type: 3} + - {fileID: 21300000, guid: 3ea837dd36293a24392ac761a5d0cb9b, type: 3} + - {fileID: 21300000, guid: fd4558035de3af1469c553678817b8c0, type: 3} + - {fileID: 21300000, guid: ed53ee89e4c925448b6fa8a8179b89c9, type: 3} + - {fileID: 21300000, guid: 336a3531b00e89b45a60cb4d876a6dbb, type: 3} + - {fileID: 21300000, guid: f4a1ada3c74990f42b3cc5968a6aff4e, type: 3} + - {fileID: 21300000, guid: ee7ac6b42329b844b85242d842511536, type: 3} + - {fileID: 21300000, guid: 7cbbceaf52635d54cb52c3aa6822be75, type: 3} - {fileID: 21300000, guid: 076da4f2ec8028d48bdd3dcc70ac4336, type: 3} + - {fileID: 21300000, guid: de1c5896888241944bd36233ded51fb9, type: 3} + - {fileID: 21300000, guid: 3219cdf151aaaa045b4cd564f42c35c3, type: 3} + - {fileID: 21300000, guid: 49c6da1c530ba5245adb20be17b319d8, type: 3} + - {fileID: 21300000, guid: 3f49522c6c0c24c499595d3d07e59fec, type: 3} + - {fileID: 21300000, guid: baf10c0cbb215e94fb40f46f43cee7c5, type: 3} + - {fileID: 21300000, guid: efd53576b2a14974aa1596711c40baba, type: 3} + - {fileID: 21300000, guid: 85a26c48828c7144ca9026c6fc10d812, type: 3} + - {fileID: 21300000, guid: 0f1e2fb94b386104495e89d5f3cb2777, type: 3} + - {fileID: 21300000, guid: 0669ce3ecd5e2254cad7c6f131fb2afa, type: 3} + - {fileID: 21300000, guid: 967699d1de07b8345bbe196d0e7bc862, type: 3} - {fileID: 21300000, guid: 0cc06f1a8f778d140920a251ad12ce7a, type: 3} + - {fileID: 21300000, guid: 2d8d596d07ea4ba4b9925d1f83a4bd2b, type: 3} + - {fileID: 21300000, guid: c6560c4564987ec44b3e42ed8b252623, type: 3} + - {fileID: 21300000, guid: 7e0c326340beeb644a36fdf32c96b83e, type: 3} + - {fileID: 21300000, guid: e069b7d74030fe94e8997969e5dde16d, type: 3} + - {fileID: 21300000, guid: 718144a2f2209a4409d719f8285620a4, type: 3} + - {fileID: 21300000, guid: cd1029fe00fd95a4db3d38297bee5a79, type: 3} + - {fileID: 21300000, guid: e66cedfa0dbae6245bfa579c4fa83ebb, type: 3} + - {fileID: 21300000, guid: d594ddd248365424cb78f1f3cae9e050, type: 3} - {fileID: 21300000, guid: cadc0b4718b53a445a221f49f64c0a13, type: 3} - {fileID: 21300000, guid: 07423ee51ea5a4848af95ff882a55d7a, type: 3} - {fileID: 21300000, guid: 09463a0cb7a8c9c46a9d496fa99ef369, type: 3} - {fileID: 21300000, guid: 29caf9139bd179a43af73888e0ac8a15, type: 3} + - {fileID: 21300000, guid: f05c18542dbec154fabe9417834f8f5b, type: 3} - {fileID: 21300000, guid: 8f90c4f8cd3a1de4d95ff99db9f6db48, type: 3} - {fileID: 21300000, guid: 2d6aed353e1179844b47687865bcd847, type: 3} - {fileID: 21300000, guid: 25e131ef13664e745bd4dd186e3a06fe, type: 3} @@ -34,13 +112,99 @@ MonoBehaviour: - {fileID: 21300000, guid: 7dbd6c4f3da590d478f99ea6376a69ca, type: 3} - {fileID: 21300000, guid: c3262e705aef48e469dac47755c5c65b, type: 3} - {fileID: 21300000, guid: 94f3ae821ecd74248b51652ed109b8a5, type: 3} + - {fileID: 21300000, guid: f6dd43444ecd58e4c82aa8f413b4c158, type: 3} + - {fileID: 21300000, guid: 3c09c3571cc8aff4fbaee4765d7f856f, type: 3} + - {fileID: 21300000, guid: 6f9f6ca604220c4449f0c433867d27b5, type: 3} + - {fileID: 21300000, guid: 3469fbacf5b20a94d884b244822a1fb1, type: 3} + - {fileID: 21300000, guid: d7ee6323d966a3940b3e0684bb7ea31d, type: 3} + - {fileID: 21300000, guid: 71fd1757cb41348488e5c5640b34181d, type: 3} + - {fileID: 21300000, guid: 102d951f189c1b94aa0cee14f692a8cb, type: 3} + - {fileID: 21300000, guid: 0014a8e64aabc484fa75142d046ab4b2, type: 3} + - {fileID: 21300000, guid: 6251306429b888b45a6406b8ee6debc3, type: 3} + - {fileID: 21300000, guid: c42f2d2c89416c54287c7d431c912b72, type: 3} + - {fileID: 21300000, guid: d4788624e57769446af3680cc8966e35, type: 3} + - {fileID: 21300000, guid: e1337e97b3644b548aba9144f5ff4bd3, type: 3} + - {fileID: 21300000, guid: d48bcd55b7fe2b14fb37ba32df125c59, type: 3} - {fileID: 21300000, guid: fea4f86213a880344bcffd2308591e61, type: 3} + - {fileID: 21300000, guid: 026ffab96f96698498fe39232181d2c4, type: 3} + - {fileID: 21300000, guid: b92406627c14e5544af0561fc980b6e9, type: 3} + - {fileID: 21300000, guid: 5fc391cc83ef41a498c3a5734accce04, type: 3} + - {fileID: 21300000, guid: 4ba28507bd9f08d499fc3bbad410c949, type: 3} + - {fileID: 21300000, guid: 76bb000df80d6144598cf662be1f1574, type: 3} + - {fileID: 21300000, guid: 69f245984d27ce94eb1f26eff6194b8e, type: 3} + - {fileID: 21300000, guid: 0245308175a04214ba7c6c8204a21957, type: 3} + - {fileID: 21300000, guid: 923e53be0fd71234e9ba3276fd458cf3, type: 3} + - {fileID: 21300000, guid: 91b338ba6d0b50243a27b671819a0198, type: 3} + - {fileID: 21300000, guid: 1281b2206b5498c42ac40f02b9483f96, type: 3} + - {fileID: 21300000, guid: d7d6d50cf71552d4b902887787352aa9, type: 3} - {fileID: 21300000, guid: 9f6e60819e9e45c41aa56a9e4325a233, type: 3} + - {fileID: 21300000, guid: 9a20887ce93c00c499bfd25c6f6745ce, type: 3} + - {fileID: 21300000, guid: ed3442c7ca4a1fd42a6347457d4a8c16, type: 3} + - {fileID: 21300000, guid: ec359761f3ca21b41b0e2a86dafbcee0, type: 3} + - {fileID: 21300000, guid: da8a65942cb990943a0d7ad6fd92212d, type: 3} + - {fileID: 21300000, guid: 8059ebb548488b24bb6ac727adcf1063, type: 3} + - {fileID: 21300000, guid: 8374d2a4a2ad5334f9d6ed5593d33baa, type: 3} + - {fileID: 21300000, guid: 109f98c4d9f52d446b414a9ee6e98074, type: 3} + - {fileID: 21300000, guid: ccce8094500abd147b3a91ba535f3f2e, type: 3} + - {fileID: 21300000, guid: d60bba3636c789246a92435b345c36c2, type: 3} + - {fileID: 21300000, guid: 0297aad7835830c4693c4e1847c32b9d, type: 3} + - {fileID: 21300000, guid: 974ab75cff065594bbc3ea0aa49632c3, type: 3} - {fileID: 21300000, guid: 584e652bddd74354cbe3373f7e366208, type: 3} + - {fileID: 21300000, guid: 69ad3578659e44e428f387a0b655c577, type: 3} + - {fileID: 21300000, guid: 50a47f8068a311345a29341cff083e01, type: 3} + - {fileID: 21300000, guid: ada16300aec02e24c81f62aaa527b78e, type: 3} + - {fileID: 21300000, guid: 3d7047971269d394ab800ae35d6a91bf, type: 3} + - {fileID: 21300000, guid: 36c66d61716ea854cbb9ac84ebc468e3, type: 3} + - {fileID: 21300000, guid: b0d218d1d5fbb7a43a9bc6ea6c8a6cda, type: 3} + - {fileID: 21300000, guid: 2f1225bc64730a0488aedc6bfdea5ea2, type: 3} + - {fileID: 21300000, guid: f3cd53e5403b41a4ca124a717c961471, type: 3} + - {fileID: 21300000, guid: 71d778078c468914695f8d07876a74df, type: 3} + - {fileID: 21300000, guid: b4ea73de9e7befa48a239096e21279f0, type: 3} + - {fileID: 21300000, guid: 6a6f302bf6f41d041a6cc62ef68529f3, type: 3} - {fileID: 21300000, guid: 19fbb02756575f946851c7c971f4ac51, type: 3} + - {fileID: 21300000, guid: 6dff2488d54f5fe408b49e3e294c7954, type: 3} + - {fileID: 21300000, guid: c5ce01be1d9b3e7408d45450621f02cd, type: 3} + - {fileID: 21300000, guid: 7ce5567163562a84294bccc1dc79c71a, type: 3} + - {fileID: 21300000, guid: ff52a49c1e12a95428aef1d206b11d1a, type: 3} + - {fileID: 21300000, guid: e8a1e7522726032448550556aa654765, type: 3} + - {fileID: 21300000, guid: a092d7c2d3caa964e8328341ce7ae830, type: 3} + - {fileID: 21300000, guid: dd4a5976bebf30a42a5785d5bcacf3cc, type: 3} + - {fileID: 21300000, guid: 51548c792aef250489d1580c7d7bca7c, type: 3} + - {fileID: 21300000, guid: 0aaa9ef6c14171748a8dd89c36b39b14, type: 3} + - {fileID: 21300000, guid: 7942721860dd5674b8fece568fb46e10, type: 3} + - {fileID: 21300000, guid: d881514a1eb4ca04681aad0c9c0d7eaa, type: 3} - {fileID: 21300000, guid: f524b00d62a7cc14fb5454ceda1fe7c3, type: 3} + - {fileID: 21300000, guid: 2912566e3db578f499edce4c3a88e8f9, type: 3} + - {fileID: 21300000, guid: 9bf5e26b9e35bdd48811f790d49d59df, type: 3} + - {fileID: 21300000, guid: ed1b85e02f712664ba3dc142c56d5d55, type: 3} + - {fileID: 21300000, guid: bbaeef1ec59e86149b25fbb1d915ccd5, type: 3} + - {fileID: 21300000, guid: c9cc9721c4a833447a1b2167e41ab3c0, type: 3} + - {fileID: 21300000, guid: bd0ef4aa4c6ada340a9ef3ada97058fc, type: 3} + - {fileID: 21300000, guid: ee7d1fedc4aad7b4c8b19a284f5987d5, type: 3} + - {fileID: 21300000, guid: 730d5b0002b9035428044b1fb49baf9a, type: 3} + - {fileID: 21300000, guid: 0110d30c4f939274dbd327104d604b5b, type: 3} + - {fileID: 21300000, guid: d038ef73f8c29bd49bd37a4ab74cf5fb, type: 3} - {fileID: 21300000, guid: a33a2eccbe55571409e91c934049b53f, type: 3} + - {fileID: 21300000, guid: 41531a6001d3be5479cd9361c19bf105, type: 3} + - {fileID: 21300000, guid: 3d45101e6a19d3c488046b3f86909259, type: 3} + - {fileID: 21300000, guid: ac2ea6f374ea829498aeab6cfcbcb073, type: 3} + - {fileID: 21300000, guid: 6b158f68a8d2af044a9eb14e03e52c06, type: 3} + - {fileID: 21300000, guid: 33e85ae71811dae47a1448ab7f5301f5, type: 3} + - {fileID: 21300000, guid: 0cc0aaee62eff3840a5f37e6066eb878, type: 3} + - {fileID: 21300000, guid: f5aff04e4d27de44b994b0b73a62d5d7, type: 3} + - {fileID: 21300000, guid: cee9b7ab664144a4a89554c06e547b31, type: 3} + - {fileID: 21300000, guid: fd127af80ac6d6543877f6a49b88b0cd, type: 3} + - {fileID: 21300000, guid: 242a5ed593c07ff409083c5ad6f36411, type: 3} - {fileID: 21300000, guid: 2b6d8940c0d20d14ab03aced34e9ceb2, type: 3} + - {fileID: 21300000, guid: f6e082a68016b8b4ea32bf4edf9bba42, type: 3} + - {fileID: 21300000, guid: c6dd28813849c724b9393c5dba8d8932, type: 3} + - {fileID: 21300000, guid: 1c26d77ff4f175f48884f901f60af665, type: 3} + - {fileID: 21300000, guid: 17507965a5b66704cb51bf0be72b64a6, type: 3} + - {fileID: 21300000, guid: ca8e2136954e50e45b6d17cd6e5fc021, type: 3} + - {fileID: 21300000, guid: 3ca0e5365e5b08b419e685722f0a8ef1, type: 3} + - {fileID: 21300000, guid: dfa197b44484f86498f28032c5142626, type: 3} + - {fileID: 21300000, guid: b19d75d96b5ac95439b99cace685acea, type: 3} - {fileID: 21300000, guid: 27ca2b254c606cd47b1599a680b470de, type: 3} - {fileID: 21300000, guid: 2aabeb48a7c79bb4592fd97f648de0bf, type: 3} - spriteNameList: 310000001f060000200600002106000022060000230600002406000025060000260600002706000028060000320000003e0600003f06000040060000410600004206000043060000440600004506000046060000340000003500000036000000370000003800000039000000de0dcedb7ef2dcef0e84dc76 + - {fileID: 21300000, guid: def682e1d59f5e243b33ea1d0ec60137, type: 3} + spriteNameList: 310000001f060000f1bd00005f00170060001700f2bd0000f3bd0000f4bd0000f5bd0000f6bd0000f7bd0000f8bd0000f9bd0000fabd00002006000010be000011be000012be000013be000014be000015be000016be000017be000018be000019be0000210600002fbe000030be000031be000032be000034be000035be000036be000037be000038be0000220600004ebe00004fbe000050be000051be000052be000053be000054be000055be000056be000057be0000230600006dbe00006ebe00006fbe000070be000073be000074be000075be000076be0000240600008cbe00008dbe00008ebe00008fbe000090be000091be000092be000093be000094be000095be000025060000abbe0000acbe0000adbe0000aebe0000afbe0000b0be0000b1be0000b2be0000b3be0000b4be000026060000cabe0000cbbe0000ccbe0000cfbe0000d0be0000d1be0000d2be0000d3be00002706000028060000320000003e060000bf7417003f0600004006000041060000420600004306000044060000450600004606000047060000330000005d0600001ee917005e0600005f06000060060000610600006206000063060000640600006506000066060000340000007c0600007d5d18007d0600007e0600007f060000800600008106000082060000830600008406000085060000350000009b060000dcd118009c0600009d0600009e0600009f060000a0060000a1060000a2060000a3060000a406000036000000ba0600003b461900bb060000bc060000bd060000be060000bf060000c0060000c1060000c2060000c306000037000000d90600009aba1900da060000db060000dc060000dd060000de060000df060000e0060000e1060000e206000038000000f8060000f92e1a00f9060000fa060000fb060000fc060000fd060000ff0600000007000001070000390000001707000018070000190700001a0700001b0700001c0700001d0700001e0700001f07000020070000de0dcedbdf0dcedbe00dcedbe10dcedbe20dcedbe30dcedbe40dcedbe50dcedbe60dcedb7ef2dcef0e84dc76f2131e0c diff --git a/Assets/arts/atlas/icon/item.asset.meta b/Assets/arts/atlas/icon/item.asset.meta index cfcdc4b06..313beeada 100644 --- a/Assets/arts/atlas/icon/item.asset.meta +++ b/Assets/arts/atlas/icon/item.asset.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: f891c082772f2de4e9a3e5ed973ca312 +guid: cfe49cd1018fc2946825ad121b1bdfd7 NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/arts/atlas/icon/item.spriteatlas b/Assets/arts/atlas/icon/item.spriteatlas index b461480d7..5fdad66c6 100644 --- a/Assets/arts/atlas/icon/item.spriteatlas +++ b/Assets/arts/atlas/icon/item.spriteatlas @@ -60,8 +60,396 @@ SpriteAtlas: isAtlasV2: 0 cachedData: {fileID: 0} m_MasterAtlas: {fileID: 0} - m_PackedSprites: [] - m_PackedSpriteNamesToIndex: [] + m_PackedSprites: + - {fileID: 21300000, guid: ada16300aec02e24c81f62aaa527b78e, type: 3} + - {fileID: 21300000, guid: 730d5b0002b9035428044b1fb49baf9a, type: 3} + - {fileID: 21300000, guid: 1281b2206b5498c42ac40f02b9483f96, type: 3} + - {fileID: 21300000, guid: 2b6d8940c0d20d14ab03aced34e9ceb2, type: 3} + - {fileID: 21300000, guid: 41531a6001d3be5479cd9361c19bf105, type: 3} + - {fileID: 21300000, guid: c3262e705aef48e469dac47755c5c65b, type: 3} + - {fileID: 21300000, guid: 50a47f8068a311345a29341cff083e01, type: 3} + - {fileID: 21300000, guid: 211e45e00df30c34f8ad04322688bb86, type: 3} + - {fileID: 21300000, guid: ed1b85e02f712664ba3dc142c56d5d55, type: 3} + - {fileID: 21300000, guid: 3eb335011f50e6146b72dd06ec84a318, type: 3} + - {fileID: 21300000, guid: c9cc9721c4a833447a1b2167e41ab3c0, type: 3} + - {fileID: 21300000, guid: 336a3531b00e89b45a60cb4d876a6dbb, type: 3} + - {fileID: 21300000, guid: 1b7e8d51babf43c40bc8f5b85d7cc5c7, type: 3} + - {fileID: 21300000, guid: ec359761f3ca21b41b0e2a86dafbcee0, type: 3} + - {fileID: 21300000, guid: 36c66d61716ea854cbb9ac84ebc468e3, type: 3} + - {fileID: 21300000, guid: 7ce5567163562a84294bccc1dc79c71a, type: 3} + - {fileID: 21300000, guid: 0245308175a04214ba7c6c8204a21957, type: 3} + - {fileID: 21300000, guid: 9f6e60819e9e45c41aa56a9e4325a233, type: 3} + - {fileID: 21300000, guid: c6dd28813849c724b9393c5dba8d8932, type: 3} + - {fileID: 21300000, guid: b0d218d1d5fbb7a43a9bc6ea6c8a6cda, type: 3} + - {fileID: 21300000, guid: 967699d1de07b8345bbe196d0e7bc862, type: 3} + - {fileID: 21300000, guid: def682e1d59f5e243b33ea1d0ec60137, type: 3} + - {fileID: 21300000, guid: 3219cdf151aaaa045b4cd564f42c35c3, type: 3} + - {fileID: 21300000, guid: ea64cef18bd4a5f4cbfc27720e9bb80d, type: 3} + - {fileID: 21300000, guid: 3cb5d3120778d8f47a0f584a180c0b7a, type: 3} + - {fileID: 21300000, guid: c2a0ee42994c62b43b26ef168e86a722, type: 3} + - {fileID: 21300000, guid: e8a1e7522726032448550556aa654765, type: 3} + - {fileID: 21300000, guid: 5c88dd52e582562499d3cee4e5e47db3, type: 3} + - {fileID: 21300000, guid: 64c110626d7aa7d40873e602d20075d7, type: 3} + - {fileID: 21300000, guid: b92406627c14e5544af0561fc980b6e9, type: 3} + - {fileID: 21300000, guid: fea4f86213a880344bcffd2308591e61, type: 3} + - {fileID: 21300000, guid: d474e96253f4119448c6e3263a46c883, type: 3} + - {fileID: 21300000, guid: 87016c72016d1ca44bad5d4e27d56a69, type: 3} + - {fileID: 21300000, guid: 4bec5e821e7427f40b7028c25e4d1166, type: 3} + - {fileID: 21300000, guid: 94f3ae821ecd74248b51652ed109b8a5, type: 3} + - {fileID: 21300000, guid: 718144a2f2209a4409d719f8285620a4, type: 3} + - {fileID: 21300000, guid: a092d7c2d3caa964e8328341ce7ae830, type: 3} + - {fileID: 21300000, guid: d594ddd248365424cb78f1f3cae9e050, type: 3} + - {fileID: 21300000, guid: 076da4f2ec8028d48bdd3dcc70ac4336, type: 3} + - {fileID: 21300000, guid: fd4558035de3af1469c553678817b8c0, type: 3} + - {fileID: 21300000, guid: 1655d613573433b4581a21b0eddac778, type: 3} + - {fileID: 21300000, guid: 29caf9139bd179a43af73888e0ac8a15, type: 3} + - {fileID: 21300000, guid: d7ee6323d966a3940b3e0684bb7ea31d, type: 3} + - {fileID: 21300000, guid: 7e0c326340beeb644a36fdf32c96b83e, type: 3} + - {fileID: 21300000, guid: d038ef73f8c29bd49bd37a4ab74cf5fb, type: 3} + - {fileID: 21300000, guid: f4a1ada3c74990f42b3cc5968a6aff4e, type: 3} + - {fileID: 21300000, guid: ac2ea6f374ea829498aeab6cfcbcb073, type: 3} + - {fileID: 21300000, guid: f0305314bc26cb04f9115d72ce16103c, type: 3} + - {fileID: 21300000, guid: d4788624e57769446af3680cc8966e35, type: 3} + - {fileID: 21300000, guid: f6dd43444ecd58e4c82aa8f413b4c158, type: 3} + - {fileID: 21300000, guid: 9585b65425e976c47b4795954d3550cc, type: 3} + - {fileID: 21300000, guid: f05c18542dbec154fabe9417834f8f5b, type: 3} + - {fileID: 21300000, guid: 6251306429b888b45a6406b8ee6debc3, type: 3} + - {fileID: 21300000, guid: ccce8094500abd147b3a91ba535f3f2e, type: 3} + - {fileID: 21300000, guid: da8a65942cb990943a0d7ad6fd92212d, type: 3} + - {fileID: 21300000, guid: 8374d2a4a2ad5334f9d6ed5593d33baa, type: 3} + - {fileID: 21300000, guid: ee7ac6b42329b844b85242d842511536, type: 3} + - {fileID: 21300000, guid: dfa197b44484f86498f28032c5142626, type: 3} + - {fileID: 21300000, guid: 109f98c4d9f52d446b414a9ee6e98074, type: 3} + - {fileID: 21300000, guid: 27ca2b254c606cd47b1599a680b470de, type: 3} + - {fileID: 21300000, guid: 2d6aed353e1179844b47687865bcd847, type: 3} + - {fileID: 21300000, guid: c6560c4564987ec44b3e42ed8b252623, type: 3} + - {fileID: 21300000, guid: d48bcd55b7fe2b14fb37ba32df125c59, type: 3} + - {fileID: 21300000, guid: 17507965a5b66704cb51bf0be72b64a6, type: 3} + - {fileID: 21300000, guid: 8059ebb548488b24bb6ac727adcf1063, type: 3} + - {fileID: 21300000, guid: 99cbbdb559c12644181f1ce4c58d26fd, type: 3} + - {fileID: 21300000, guid: 242a5ed593c07ff409083c5ad6f36411, type: 3} + - {fileID: 21300000, guid: f3cd53e5403b41a4ca124a717c961471, type: 3} + - {fileID: 21300000, guid: 07423ee51ea5a4848af95ff882a55d7a, type: 3} + - {fileID: 21300000, guid: 6755c31659bd78e42b3ae95e3073ec78, type: 3} + - {fileID: 21300000, guid: ca8e2136954e50e45b6d17cd6e5fc021, type: 3} + - {fileID: 21300000, guid: 3ca0e5365e5b08b419e685722f0a8ef1, type: 3} + - {fileID: 21300000, guid: d60bba3636c789246a92435b345c36c2, type: 3} + - {fileID: 21300000, guid: 5778a4464acc95544bdf4c1f27f61998, type: 3} + - {fileID: 21300000, guid: 9ea13f46ca552b14f81dd43c5438ed04, type: 3} + - {fileID: 21300000, guid: efd53576b2a14974aa1596711c40baba, type: 3} + - {fileID: 21300000, guid: dd4a5976bebf30a42a5785d5bcacf3cc, type: 3} + - {fileID: 21300000, guid: 66c7d3962879a0d47b0f8eb898f9bb07, type: 3} + - {fileID: 21300000, guid: de1c5896888241944bd36233ded51fb9, type: 3} + - {fileID: 21300000, guid: f6e082a68016b8b4ea32bf4edf9bba42, type: 3} + - {fileID: 21300000, guid: 6f9f6ca604220c4449f0c433867d27b5, type: 3} + - {fileID: 21300000, guid: 0014a8e64aabc484fa75142d046ab4b2, type: 3} + - {fileID: 21300000, guid: 260240f6f52033948ae6d0c05a03faae, type: 3} + - {fileID: 21300000, guid: 0aaa9ef6c14171748a8dd89c36b39b14, type: 3} + - {fileID: 21300000, guid: 4ba28507bd9f08d499fc3bbad410c949, type: 3} + - {fileID: 21300000, guid: 71d778078c468914695f8d07876a74df, type: 3} + - {fileID: 21300000, guid: 19fbb02756575f946851c7c971f4ac51, type: 3} + - {fileID: 21300000, guid: 826d9447801db4e48beec4d282d8232e, type: 3} + - {fileID: 21300000, guid: 8f14b84731f810c4a927fbd7e443523b, type: 3} + - {fileID: 21300000, guid: cadc0b4718b53a445a221f49f64c0a13, type: 3} + - {fileID: 21300000, guid: 3c09c3571cc8aff4fbaee4765d7f856f, type: 3} + - {fileID: 21300000, guid: 71fd1757cb41348488e5c5640b34181d, type: 3} + - {fileID: 21300000, guid: 3d7047971269d394ab800ae35d6a91bf, type: 3} + - {fileID: 21300000, guid: d9efba97d4fa8ed469b4c1e4d42aaefa, type: 3} + - {fileID: 21300000, guid: e1337e97b3644b548aba9144f5ff4bd3, type: 3} + - {fileID: 21300000, guid: ed3442c7ca4a1fd42a6347457d4a8c16, type: 3} + - {fileID: 21300000, guid: f3bdfec79f10342488dfc6bb6dd72a71, type: 3} + - {fileID: 21300000, guid: e069b7d74030fe94e8997969e5dde16d, type: 3} + - {fileID: 21300000, guid: 0297aad7835830c4693c4e1847c32b9d, type: 3} + - {fileID: 21300000, guid: 33e85ae71811dae47a1448ab7f5301f5, type: 3} + - {fileID: 21300000, guid: 7942721860dd5674b8fece568fb46e10, type: 3} + - {fileID: 21300000, guid: 9f58ca18732cd7444bb8d1b87bd94006, type: 3} + - {fileID: 21300000, guid: 2aabeb48a7c79bb4592fd97f648de0bf, type: 3} + - {fileID: 21300000, guid: 85a26c48828c7144ca9026c6fc10d812, type: 3} + - {fileID: 21300000, guid: 6b158f68a8d2af044a9eb14e03e52c06, type: 3} + - {fileID: 21300000, guid: 69ad3578659e44e428f387a0b655c577, type: 3} + - {fileID: 21300000, guid: 6dff2488d54f5fe408b49e3e294c7954, type: 3} + - {fileID: 21300000, guid: 69f245984d27ce94eb1f26eff6194b8e, type: 3} + - {fileID: 21300000, guid: 0bd3d6982020759488c2505db592d6ff, type: 3} + - {fileID: 21300000, guid: 4b2173e8ffaf1364e83a587fe3364da0, type: 3} + - {fileID: 21300000, guid: cc1875e8c0208fe419465f76fe93045d, type: 3} + - {fileID: 21300000, guid: beec5ee8ef765534f9a52c4b88556741, type: 3} + - {fileID: 21300000, guid: 8f90c4f8cd3a1de4d95ff99db9f6db48, type: 3} + - {fileID: 21300000, guid: fd127af80ac6d6543877f6a49b88b0cd, type: 3} + - {fileID: 21300000, guid: c17c592918ad1a3488a53085be1cea2f, type: 3} + - {fileID: 21300000, guid: a028ee290e3cd0e44add6d2a0a804cca, type: 3} + - {fileID: 21300000, guid: 9d1acc59e5ecb3249812ac577bfe4363, type: 3} + - {fileID: 21300000, guid: cb7f6a69fa65bdf49ab5eadc8b00911e, type: 3} + - {fileID: 21300000, guid: 51548c792aef250489d1580c7d7bca7c, type: 3} + - {fileID: 21300000, guid: adbbd589f3d48db4698ccad650c8adc6, type: 3} + - {fileID: 21300000, guid: ed53ee89e4c925448b6fa8a8179b89c9, type: 3} + - {fileID: 21300000, guid: c47832a9e0e09404d8449038856450dc, type: 3} + - {fileID: 21300000, guid: 026ffab96f96698498fe39232181d2c4, type: 3} + - {fileID: 21300000, guid: 8ed07eb9f58eb5f4a83e6f36364cfaf9, type: 3} + - {fileID: 21300000, guid: 0f1e2fb94b386104495e89d5f3cb2777, type: 3} + - {fileID: 21300000, guid: b19d75d96b5ac95439b99cace685acea, type: 3} + - {fileID: 21300000, guid: 67eafcd945cb8004b9f156db6ff637c3, type: 3} + - {fileID: 21300000, guid: 0cc06f1a8f778d140920a251ad12ce7a, type: 3} + - {fileID: 21300000, guid: 2040c02a5bcf2d24fab2637a2a218132, type: 3} + - {fileID: 21300000, guid: d881514a1eb4ca04681aad0c9c0d7eaa, type: 3} + - {fileID: 21300000, guid: 477a846abe66bcf40a1397b05397d7f9, type: 3} + - {fileID: 21300000, guid: 7668bc9a0a67c924da9406b2feab3aed, type: 3} + - {fileID: 21300000, guid: bd0ef4aa4c6ada340a9ef3ada97058fc, type: 3} + - {fileID: 21300000, guid: 51d28caa0b683164288330612c1b73c3, type: 3} + - {fileID: 21300000, guid: 91b338ba6d0b50243a27b671819a0198, type: 3} + - {fileID: 21300000, guid: e66cedfa0dbae6245bfa579c4fa83ebb, type: 3} + - {fileID: 21300000, guid: ca105ffa7d9ffc347a89f665c9e3c5e5, type: 3} + - {fileID: 21300000, guid: 78294e1b4df978b46aa0c5282e459e09, type: 3} + - {fileID: 21300000, guid: bce74f1b6309af84bb3a0441760969cc, type: 3} + - {fileID: 21300000, guid: 6a6f302bf6f41d041a6cc62ef68529f3, type: 3} + - {fileID: 21300000, guid: 584e652bddd74354cbe3373f7e366208, type: 3} + - {fileID: 21300000, guid: 9bf5e26b9e35bdd48811f790d49d59df, type: 3} + - {fileID: 21300000, guid: cee9b7ab664144a4a89554c06e547b31, type: 3} + - {fileID: 21300000, guid: 1607adab06371d044ab3d8b13a8071cc, type: 3} + - {fileID: 21300000, guid: 0110d30c4f939274dbd327104d604b5b, type: 3} + - {fileID: 21300000, guid: d7d6d50cf71552d4b902887787352aa9, type: 3} + - {fileID: 21300000, guid: 09463a0cb7a8c9c46a9d496fa99ef369, type: 3} + - {fileID: 21300000, guid: baf10c0cbb215e94fb40f46f43cee7c5, type: 3} + - {fileID: 21300000, guid: 49c6da1c530ba5245adb20be17b319d8, type: 3} + - {fileID: 21300000, guid: 3f49522c6c0c24c499595d3d07e59fec, type: 3} + - {fileID: 21300000, guid: c42f2d2c89416c54287c7d431c912b72, type: 3} + - {fileID: 21300000, guid: 974ab75cff065594bbc3ea0aa49632c3, type: 3} + - {fileID: 21300000, guid: e1cb3f6c360c98548bf2c519217d2ce7, type: 3} + - {fileID: 21300000, guid: 9a20887ce93c00c499bfd25c6f6745ce, type: 3} + - {fileID: 21300000, guid: ff52a49c1e12a95428aef1d206b11d1a, type: 3} + - {fileID: 21300000, guid: 3469fbacf5b20a94d884b244822a1fb1, type: 3} + - {fileID: 21300000, guid: 2f1225bc64730a0488aedc6bfdea5ea2, type: 3} + - {fileID: 21300000, guid: 5fc391cc83ef41a498c3a5734accce04, type: 3} + - {fileID: 21300000, guid: a33a2eccbe55571409e91c934049b53f, type: 3} + - {fileID: 21300000, guid: 76bb000df80d6144598cf662be1f1574, type: 3} + - {fileID: 21300000, guid: f524b00d62a7cc14fb5454ceda1fe7c3, type: 3} + - {fileID: 21300000, guid: c854783da5902c740a43d029ad11b8c4, type: 3} + - {fileID: 21300000, guid: 2d8d596d07ea4ba4b9925d1f83a4bd2b, type: 3} + - {fileID: 21300000, guid: cc781dadc3f9db04ab34bee07fa1bb6d, type: 3} + - {fileID: 21300000, guid: bb1778cde99f53546944994c631663d2, type: 3} + - {fileID: 21300000, guid: 3ea837dd36293a24392ac761a5d0cb9b, type: 3} + - {fileID: 21300000, guid: 1f5778dd8acbded488351a61cca049e1, type: 3} + - {fileID: 21300000, guid: ee7d1fedc4aad7b4c8b19a284f5987d5, type: 3} + - {fileID: 21300000, guid: 0094740eae4b883478a0dd7343eeb895, type: 3} + - {fileID: 21300000, guid: 3d45101e6a19d3c488046b3f86909259, type: 3} + - {fileID: 21300000, guid: bbaeef1ec59e86149b25fbb1d915ccd5, type: 3} + - {fileID: 21300000, guid: 0669ce3ecd5e2254cad7c6f131fb2afa, type: 3} + - {fileID: 21300000, guid: f5aff04e4d27de44b994b0b73a62d5d7, type: 3} + - {fileID: 21300000, guid: 2912566e3db578f499edce4c3a88e8f9, type: 3} + - {fileID: 21300000, guid: 58aaaf6ebacb682438db8711fab2b971, type: 3} + - {fileID: 21300000, guid: c5ce01be1d9b3e7408d45450621f02cd, type: 3} + - {fileID: 21300000, guid: 923e53be0fd71234e9ba3276fd458cf3, type: 3} + - {fileID: 21300000, guid: b4ea73de9e7befa48a239096e21279f0, type: 3} + - {fileID: 21300000, guid: 0cc0aaee62eff3840a5f37e6066eb878, type: 3} + - {fileID: 21300000, guid: cd1029fe00fd95a4db3d38297bee5a79, type: 3} + - {fileID: 21300000, guid: 75cbac0fb99267247a83b1b28ec499c5, type: 3} + - {fileID: 21300000, guid: 102d951f189c1b94aa0cee14f692a8cb, type: 3} + - {fileID: 21300000, guid: 92c79d2f10af46a4e9e40076ca06e0a4, type: 3} + - {fileID: 21300000, guid: 7dbd6c4f3da590d478f99ea6376a69ca, type: 3} + - {fileID: 21300000, guid: 1ccd595ff75818b4884bed19b151d8e8, type: 3} + - {fileID: 21300000, guid: 1c26d77ff4f175f48884f901f60af665, type: 3} + - {fileID: 21300000, guid: b27f978fb0900614f8fc44e8aac691a9, type: 3} + - {fileID: 21300000, guid: a5fa25af5369c1e4287cdb1a595b08fc, type: 3} + - {fileID: 21300000, guid: 7f0fb9af945fc9648aebd80cbeff172b, type: 3} + - {fileID: 21300000, guid: 7cbbceaf52635d54cb52c3aa6822be75, type: 3} + - {fileID: 21300000, guid: 30b2ffbfc7e850349828624b696cfceb, type: 3} + - {fileID: 21300000, guid: 25e131ef13664e745bd4dd186e3a06fe, type: 3} + - {fileID: 21300000, guid: 1ddd63eff80a63e409cdeff1806d9c8a, type: 3} + - {fileID: 21300000, guid: 3d679cef10da8db4c9f220c739d2d00c, type: 3} + m_PackedSpriteNamesToIndex: + - 61 + - 87 + - 48 + - frame_0 + - 90 + - 27 + - 6001 + - 119 + - 81 + - 120 + - 83 + - 156 + - 12 + - 51 + - 63 + - 71 + - 45 + - 5 + - frame_2 + - 64 + - 169 + - frame_ssr_1 + - 161 + - 104 + - 1001 + - 106 + - 73 + - 116 + - 107 + - 4001 + - 4 + - 131 + - 146 + - 143 + - 28 + - 176 + - 74 + - 179 + - 16 + - 154 + - 11 + - 20 + - 31 + - 172 + - 89 + - 157 + - 92 + - 101 + - 37 + - 29 + - 125 + - 2001 + - 35 + - 56 + - 52 + - 54 + - 158 + - frame_7 + - 55 + - frame_mask + - 22 + - 171 + - 39 + - frame_4 + - 53 + - 137 + - 99 + - 66 + - 19 + - 149 + - frame_5 + - frame_6 + - 57 + - 111 + - 123 + - 165 + - 75 + - 128 + - 160 + - frame_1 + - 30 + - 34 + - 152 + - 77 + - 42 + - 67 + - 7 + - 15 + - 108 + - 18 + - 3 + - 32 + - 62 + - 133 + - 38 + - 5001 + - 139 + - 175 + - 58 + - 94 + - 78 + - 134 + - frame_select + - 166 + - 93 + - 60 + - 70 + - 44 + - 105 + - 142 + - 151 + - 112 + - 21 + - 98 + - 24 + - 127 + - 141 + - 132 + - 76 + - 10 + - 155 + - 110 + - 40 + - 109 + - 167 + - frame_8 + - 25 + - 17 + - 129 + - 79 + - 150 + - 122 + - 84 + - 113 + - 47 + - 178 + - 1 + - 147 + - 148 + - 69 + - 6 + - 8001 + - 97 + - 114 + - 88 + - 49 + - 2 + - 164 + - 162 + - 163 + - 36 + - 59 + - 102 + - 50 + - 72 + - 3001 + - 65 + - 41 + - 9 + - 43 + - 8 + - 115 + - 170 + - 1000 + - 118 + - 153 + - 14 + - 85 + - 121 + - 91 + - 82 + - 168 + - 96 + - 80 + - 103 + - 7001 + - 46 + - 68 + - 95 + - 177 + - 140 + - 33 + - 13 + - 26 + - 130 + - frame_3 + - 117 + - 126 + - 138 + - 159 + - 135 + - 23 + - 136 + - 100 m_RenderDataMap: {} m_Tag: item m_IsVariant: 0 diff --git a/Assets/arts/atlas/icon/item.spriteatlas.meta b/Assets/arts/atlas/icon/item.spriteatlas.meta index 885c183ed..26f1da996 100644 --- a/Assets/arts/atlas/icon/item.spriteatlas.meta +++ b/Assets/arts/atlas/icon/item.spriteatlas.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: b53c7e7f0440e1e4a87997b7ec26c6f3 +guid: ad16d0b4849fec74fb66f8596c9da0f8 NativeFormatImporter: externalObjects: {} mainObjectFileID: 4343727234628468602 diff --git a/Assets/arts/atlas/ui.meta b/Assets/arts/atlas/ui.meta index c96f6848b..e1115e0c0 100644 --- a/Assets/arts/atlas/ui.meta +++ b/Assets/arts/atlas/ui.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 4e774ec9966760d4ba1a47a1f5766ef7 +guid: 2ef47edccbd53a143959b97cb143579f folderAsset: yes DefaultImporter: externalObjects: {} diff --git a/Assets/arts/atlas/ui/battle.asset b/Assets/arts/atlas/ui/battle.asset index 40ad38e1e..e73d30cb9 100644 --- a/Assets/arts/atlas/ui/battle.asset +++ b/Assets/arts/atlas/ui/battle.asset @@ -13,39 +13,10 @@ MonoBehaviour: m_Name: battle m_EditorClassIdentifier: spriteList: - - {fileID: 21300000, guid: 6654a043f79f44943989077d3f6b67bd, type: 3} - - {fileID: 21300000, guid: 9b04a302ee9845046a414332102c3595, type: 3} - - {fileID: 21300000, guid: 2179db863539f854bb4be474b32295a8, type: 3} - - {fileID: 21300000, guid: a2066257f5dc81e4c8516ea891df7915, type: 3} - - {fileID: 21300000, guid: cf41f2999295d764fa7fdef391b54d3f, type: 3} - - {fileID: 21300000, guid: 6c3b2af79dedde84195379be70be26df, type: 3} - - {fileID: 21300000, guid: 947026bf44292434da361b91dc63a414, type: 3} - - {fileID: 21300000, guid: 47bde67f4ab74e249a2efb9f055fae60, type: 3} - - {fileID: 21300000, guid: c48012b273539f640a3478de24a8e3f0, type: 3} - - {fileID: 21300000, guid: 2733c658ca3caa24795b397d15e2712e, type: 3} - - {fileID: 21300000, guid: d1cc059771789ff4e9d5067e06c2d489, type: 3} - - {fileID: 21300000, guid: 93073adf528c5b341ab595f949a009f4, type: 3} - - {fileID: 21300000, guid: 2617bec0144c22b4faca6ad3c5aec44b, type: 3} - - {fileID: 21300000, guid: 0eb2921e2e2d3b544b2f6ef55a9fb99e, type: 3} - - {fileID: 21300000, guid: 4fbcff23176961b46b6899af3f82584c, type: 3} - - {fileID: 21300000, guid: f9f45f24d28440f4180d80d60f44b59b, type: 3} - - {fileID: 21300000, guid: c4f4be5986df5834c80184167807b7d2, type: 3} - - {fileID: 21300000, guid: b9090a57660d874418825ee54393876c, type: 3} - - {fileID: 21300000, guid: 6e1911e351324024d8f1268d5303661e, type: 3} - - {fileID: 21300000, guid: b21b3216e18d4cc4c8dfa8ff164eedc8, type: 3} - - {fileID: 21300000, guid: 207cc0d79c429f34bb56eee89b78e646, type: 3} - - {fileID: 21300000, guid: adca04ca0aaf73145ac3a20604e584aa, type: 3} - - {fileID: 21300000, guid: a457b4101510c1d41a1407939d159db0, type: 3} - - {fileID: 21300000, guid: d5c45af4a3cf21445a4604e6015b135d, type: 3} - - {fileID: 21300000, guid: ca33a9f2d445f424db5f1e4c1ca208c4, type: 3} - - {fileID: 21300000, guid: 77a01b893c0fca240a772c67412944f7, type: 3} - - {fileID: 21300000, guid: 83e28291b71db5f4fbc9110cea846f28, type: 3} - - {fileID: 21300000, guid: 90fe8f36cdd3ac74299f118bb75fadb5, type: 3} - - {fileID: 21300000, guid: 99d26c7a050f37941bb1cd15870f9496, type: 3} - - {fileID: 21300000, guid: 7e94966cb8ff1024f97cd77256ae41f9, type: 3} - - {fileID: 21300000, guid: 4a352042cfba9ab45a81df71e9f95fcf, type: 3} - - {fileID: 21300000, guid: dc406f8e88b38c540b895226e5440edf, type: 3} - - {fileID: 21300000, guid: 00899a7c91a7b6d488a6d77fcc26ec0d, type: 3} - - {fileID: 21300000, guid: d393538d2c669944bbd62df3f0d0d846, type: 3} - - {fileID: 21300000, guid: 51c5c5f1a0f7cc6499b3659fa7398221, type: 3} - spriteNameList: d6f84dd34ec0b1bede354ed3df354ed3e0354ed3e1354ed3c7ac7e9694fb22f995fb22f996fb22f997fb22f998fb22f999fb22f99afb22f9ede09396eee09396efe09396f0e09396f1e09396f2e09396b8cce53caf6f3b9786d89f5487d89f5488d89f5442e685d543e685d56e3336b26f3336b27fc4e45780c4e45781c4e45782c4e457a6cc7257156f3d28 + - {fileID: 21300000, guid: 306205473d3cf1f4a9d821c3e2971092, type: 3} + - {fileID: 21300000, guid: 9bb2f10b15aa44a4fa22ec0655146511, type: 3} + - {fileID: 21300000, guid: 634f8eff83cb4cd4780e6afae3bc6c65, type: 3} + - {fileID: 21300000, guid: 4883eddf5771c424c964bc2e32f2cb09, type: 3} + - {fileID: 21300000, guid: 90cd8a98ab36f5f429ca27d808dc664f, type: 3} + - {fileID: 21300000, guid: 9f4d825138b34164cb6e9e64406dd12a, type: 3} + spriteNameList: 667213658c8d63adf525e9106e14a26803e475062623b5b6 diff --git a/Assets/arts/atlas/ui/battle.asset.meta b/Assets/arts/atlas/ui/battle.asset.meta index fd87cc6bd..4fe7ea2c1 100644 --- a/Assets/arts/atlas/ui/battle.asset.meta +++ b/Assets/arts/atlas/ui/battle.asset.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: b75ab70c9da1284499e5487d80d8c9ca +guid: 99f938e613deb5544b7c1e68b3211d1d NativeFormatImporter: externalObjects: {} mainObjectFileID: 11400000 diff --git a/Assets/arts/atlas/ui/battle.spriteatlas b/Assets/arts/atlas/ui/battle.spriteatlas index 1fdafca3e..cd606396b 100644 --- a/Assets/arts/atlas/ui/battle.spriteatlas +++ b/Assets/arts/atlas/ui/battle.spriteatlas @@ -60,8 +60,20 @@ SpriteAtlas: isAtlasV2: 0 cachedData: {fileID: 0} m_MasterAtlas: {fileID: 0} - m_PackedSprites: [] - m_PackedSpriteNamesToIndex: [] + m_PackedSprites: + - {fileID: 21300000, guid: 9f4d825138b34164cb6e9e64406dd12a, type: 3} + - {fileID: 21300000, guid: 306205473d3cf1f4a9d821c3e2971092, type: 3} + - {fileID: 21300000, guid: 90cd8a98ab36f5f429ca27d808dc664f, type: 3} + - {fileID: 21300000, guid: 9bb2f10b15aa44a4fa22ec0655146511, type: 3} + - {fileID: 21300000, guid: 4883eddf5771c424c964bc2e32f2cb09, type: 3} + - {fileID: 21300000, guid: 634f8eff83cb4cd4780e6afae3bc6c65, type: 3} + m_PackedSpriteNamesToIndex: + - yellow_1 + - battle_btn_setting + - red_1 + - blue_1 + - purple_1 + - green_1 m_RenderDataMap: {} m_Tag: battle m_IsVariant: 0 diff --git a/Assets/arts/atlas/ui/battle.spriteatlas.meta b/Assets/arts/atlas/ui/battle.spriteatlas.meta index f2f0e5ceb..a6c7d93ff 100644 --- a/Assets/arts/atlas/ui/battle.spriteatlas.meta +++ b/Assets/arts/atlas/ui/battle.spriteatlas.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 681a9ed3b5215e64aa0a7b6d55bf0f1e +guid: 85e070479ad738d48b8e4d219785b87d NativeFormatImporter: externalObjects: {} mainObjectFileID: 4343727234628468602 diff --git a/Assets/arts/atlas/ui/common.asset b/Assets/arts/atlas/ui/common.asset deleted file mode 100644 index deab5b6b5..000000000 --- a/Assets/arts/atlas/ui/common.asset +++ /dev/null @@ -1,183 +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 - m_EditorClassIdentifier: - spriteList: - - {fileID: 21300000, guid: be81a11c67ec88f4694215b3e5f174ab, type: 3} - - {fileID: 21300000, guid: 18e2e819ce0511544ab0ad0f12586712, type: 3} - - {fileID: 21300000, guid: 24b274efbfb2ae84ba560e4a9cdc9e5d, type: 3} - - {fileID: 21300000, guid: cdb4be69fbe88f0429ef751ff33132ca, type: 3} - - {fileID: 21300000, guid: e99c98bbd7686c54fb6c295fa2fd1cb1, type: 3} - - {fileID: 21300000, guid: 514dec6ed3fa7264c97f62bf29d1a88f, type: 3} - - {fileID: 21300000, guid: a70289eca986ce142b027934f6cdd63c, type: 3} - - {fileID: 21300000, guid: af2468e67b69b3647afb863604c01d03, type: 3} - - {fileID: 21300000, guid: 5f346dc7868983e47b71b7ad384d6f14, type: 3} - - {fileID: 21300000, guid: ceafd681a299a7143863fadce6a1982f, type: 3} - - {fileID: 21300000, guid: d24a33146f71efb4d9a92e729968aa43, type: 3} - - {fileID: 21300000, guid: ecbfe2c6ee57e284bb88c09709a895bd, type: 3} - - {fileID: 21300000, guid: d9c23e0c2fdbcda4ab03e9917f66a4d8, type: 3} - - {fileID: 21300000, guid: 1bf9c73960324d3439e0db7c0390d805, type: 3} - - {fileID: 21300000, guid: 46fabf7a8e3b28241938df44c789c9f7, type: 3} - - {fileID: 21300000, guid: 8134f7f400bdbb24d92b28eac4ba2493, type: 3} - - {fileID: 21300000, guid: 15a0111a5ee4bb044b07098fc2271136, type: 3} - - {fileID: 21300000, guid: 19fd27cd4703ce9458d08557023ac5b9, type: 3} - - {fileID: 21300000, guid: 2ad22a4ab5b0f8147ac85d915b684596, type: 3} - - {fileID: 21300000, guid: 4c8f9db6b4c3d474ebacc7496c8a9693, type: 3} - - {fileID: 21300000, guid: 335846187d90ab94aaf3e9a542afdbd1, type: 3} - - {fileID: 21300000, guid: 7df6038f3dd0b6749a1c1a08afca2976, type: 3} - - {fileID: 21300000, guid: f2a80efef59f515499efc5b65c7d03e8, type: 3} - - {fileID: 21300000, guid: 9356bcda9d0551949800ed240641de63, type: 3} - - {fileID: 21300000, guid: 5bd3d30cbe4c6fc458490bd45cb4edd7, type: 3} - - {fileID: 21300000, guid: 8a1d49a4e7460034ba4f450805fbce0e, type: 3} - - {fileID: 21300000, guid: 2f649bd2ffe8b7a48b06e8666276c9c3, type: 3} - - {fileID: 21300000, guid: ad840263256761a45b4023eddc239e29, type: 3} - - {fileID: 21300000, guid: d261ace8102d2874ebca5ee9e57e2275, type: 3} - - {fileID: 21300000, guid: b6ad8f5dc88fcb542b51f4a168b7ab40, type: 3} - - {fileID: 21300000, guid: 1a3eea633d6dc9249b5caf2aee32cdfa, type: 3} - - {fileID: 21300000, guid: b1a583e52c244fd48886ba8a8db92ca8, type: 3} - - {fileID: 21300000, guid: b304f5e0f1596d449adf03b581583a85, type: 3} - - {fileID: 21300000, guid: 2c89a61bf37a2734cb871bdfb3d99da8, type: 3} - - {fileID: 21300000, guid: 702ad8dbbd77e214dbedec7a00f04bf7, type: 3} - - {fileID: 21300000, guid: 8108e915a6827034c9151a87ed467fc5, type: 3} - - {fileID: 21300000, guid: 798d8daa4fd25b84da030ed08328422d, type: 3} - - {fileID: 21300000, guid: 06972c2fce4feaa45b1a44272c6813a0, type: 3} - - {fileID: 21300000, guid: bbf763f5932970d4eb28294bafe8008a, type: 3} - - {fileID: 21300000, guid: 80cc8b9fbe87fc8468cb9a5d97864fc2, type: 3} - - {fileID: 21300000, guid: 565a23700978626408991d959a2ab3db, type: 3} - - {fileID: 21300000, guid: dc05a38a7a24b1e46be66fd07ad92ef8, type: 3} - - {fileID: 21300000, guid: b7b37f470f823cf438299d4d686c7c67, type: 3} - - {fileID: 21300000, guid: 41481c542af36b642acfc0667a6d0c93, type: 3} - - {fileID: 21300000, guid: eb55075836bd7fe43aeb202bb413476b, type: 3} - - {fileID: 21300000, guid: bf635bf3802e5554fab4b194d2e7f242, type: 3} - - {fileID: 21300000, guid: 128982c3ffd68014bbe715ebcebd49ef, type: 3} - - {fileID: 21300000, guid: a30f3d562a75ba446868564d96bcce16, type: 3} - - {fileID: 21300000, guid: a5ebbd287de5e074e86432de714d78a6, type: 3} - - {fileID: 21300000, guid: c1516e1668d80a346a89778dfa8c532f, type: 3} - - {fileID: 21300000, guid: 5d775c9c379797648ae65383bd3e110e, type: 3} - - {fileID: 21300000, guid: 871eebab741a88242a254dd144c5bdb7, type: 3} - - {fileID: 21300000, guid: dd9f53f83308a3a4799e84f5ccc9fd79, type: 3} - - {fileID: 21300000, guid: cfc803f19886425488b4559c1914e7d8, type: 3} - - {fileID: 21300000, guid: 431631fd731a12d49a778bddfc89b16b, type: 3} - - {fileID: 21300000, guid: 37d7219b1c4ec4c4797c2d2d9d1c3426, type: 3} - - {fileID: 21300000, guid: 9ff6a584bf7e4514dbed0886c6b97d91, type: 3} - - {fileID: 21300000, guid: 288d4fb3f8a106e449a56e0c844c46cc, type: 3} - - {fileID: 21300000, guid: 71f27e5059be71045868c7491ff62360, type: 3} - - {fileID: 21300000, guid: a8b2d2d220e45fb46bb47ff17aa247d1, type: 3} - - {fileID: 21300000, guid: a5cdf83ab2ff4ed4fa3f1cf210d8eeaf, type: 3} - - {fileID: 21300000, guid: 47ec6e04a1885a641b56cda6a12c4e6f, type: 3} - - {fileID: 21300000, guid: 8f54e3e3912cd524e8785b840587765e, type: 3} - - {fileID: 21300000, guid: 7cc4f1e808d2d6c45a721ee91ea63866, type: 3} - - {fileID: 21300000, guid: fbcd21ab13025364eb2dfe87b11bd864, type: 3} - - {fileID: 21300000, guid: 5ee82470ff87fba4aa046d00badb9532, type: 3} - - {fileID: 21300000, guid: d2af671d1b083824a801bb0548f51c6a, type: 3} - - {fileID: 21300000, guid: a3329b35d44e45444b63f7999a86d2c3, type: 3} - - {fileID: 21300000, guid: daef4d90228e98b4d85718e4201c56f7, type: 3} - - {fileID: 21300000, guid: e63190a0a5b6c6648bd3723f13409208, type: 3} - - {fileID: 21300000, guid: 8e875ccd35d87be4ba313e7ecf5ab615, type: 3} - - {fileID: 21300000, guid: 8f12415e09d26b0499cd176f4b73deb7, type: 3} - - {fileID: 21300000, guid: 8cf24968cbab4d5419e0f6ba8ff973cb, type: 3} - - {fileID: 21300000, guid: 15bb7098aa44bdc4480a2faf8e7c5619, type: 3} - - {fileID: 21300000, guid: 09f9c16e1cfc25c49a29ff0c74978b2e, type: 3} - - {fileID: 21300000, guid: dc7985933db62084285a14f6e7e902f7, type: 3} - - {fileID: 21300000, guid: d31ab4bae352c3d4481cb54328c5f3c2, type: 3} - - {fileID: 21300000, guid: be8272c4470f3844abd3428cf6039859, type: 3} - - {fileID: 21300000, guid: 6a982f9d1eb783548b95f52741c367fd, type: 3} - - {fileID: 21300000, guid: 2c10dcfbc15220d48a8f7786aac76c9c, type: 3} - - {fileID: 21300000, guid: 312ed5161cee1a145a160402c96b15ea, type: 3} - - {fileID: 21300000, guid: 016757af2509d2544811570e9f7d0104, type: 3} - - {fileID: 21300000, guid: 5505016c3748cc447985fcf511b04eb4, type: 3} - - {fileID: 21300000, guid: 9b7cf25f2caeab64298cfb1bb9e7cdbf, type: 3} - - {fileID: 21300000, guid: c36e2967a14543d4e967a5dc6e24fab4, type: 3} - - {fileID: 21300000, guid: d98a6ecff7df83149a1ed4257f9f18b5, type: 3} - - {fileID: 21300000, guid: ee3ce01eff76a354cb2eb5830289466f, type: 3} - - {fileID: 21300000, guid: be5d3ef418a14994f84e6d82a0754cb8, type: 3} - - {fileID: 21300000, guid: ff2b25bfd721e54448fd65bc8c233e02, type: 3} - - {fileID: 21300000, guid: 70fefe2dcc489334fa39b926a0214fba, type: 3} - - {fileID: 21300000, guid: 1e96fa5e7f0744c49a33e0b4d8c20d50, type: 3} - - {fileID: 21300000, guid: a3e18e0ffb96a7249ac39a5edf69b469, type: 3} - - {fileID: 21300000, guid: 86579ad14361de54d8d2aa80d24e739b, type: 3} - - {fileID: 21300000, guid: fcae37e8bfbd6064cb3585ff22fe752e, type: 3} - - {fileID: 21300000, guid: 8d756e912608fbe4e8b4bdb50cd4bf0f, type: 3} - - {fileID: 21300000, guid: bbc8dc8d2ae3e364990b159c9a7ef3df, type: 3} - - {fileID: 21300000, guid: c1fdeb112b745194f87d92ff5f2aa346, type: 3} - - {fileID: 21300000, guid: e5df790aa316fe741a78b26d4b598f18, type: 3} - - {fileID: 21300000, guid: e06231dab1aab6f4faf41caefe38e46f, type: 3} - - {fileID: 21300000, guid: 115f26d16db83bf409d630b9013e05f9, type: 3} - - {fileID: 21300000, guid: aee3ad5770171354298692de0fa9068c, type: 3} - - {fileID: 21300000, guid: b85bafa30d8c1c340a1e51f9e8e39429, type: 3} - - {fileID: 21300000, guid: 110cf356ed2492f46a6280025c377f61, type: 3} - - {fileID: 21300000, guid: a3c2c4d6a22e66142813f313fd9c2627, type: 3} - - {fileID: 21300000, guid: 7e9c0788fba4a824f9213b892c30a542, type: 3} - - {fileID: 21300000, guid: 7fd4f0c3c01d5b74da31ef5c8844b95d, type: 3} - - {fileID: 21300000, guid: 1dedff3e909ee054b874a2fbaff044c0, type: 3} - - {fileID: 21300000, guid: 70658f5f22e6038469c551a1665ae009, type: 3} - - {fileID: 21300000, guid: 330be4d1490173b4a8a049003427d8fb, type: 3} - - {fileID: 21300000, guid: 427cc077e72ef9845b30f6d2c986f585, type: 3} - - {fileID: 21300000, guid: 0ece99041742b3542831ccffe6c5a575, type: 3} - - {fileID: 21300000, guid: 374abdc8e87ac1d43bf3c4c2a17530c8, type: 3} - - {fileID: 21300000, guid: 17edc6fa765a48d408861e37bb1edf6c, type: 3} - - {fileID: 21300000, guid: 3034def257853aa42851bd7d2be0d820, type: 3} - - {fileID: 21300000, guid: 3c781b8c862f6c446a1140e49569d54a, type: 3} - - {fileID: 21300000, guid: 2abdb9af100665143ae110cf06e9d639, type: 3} - - {fileID: 21300000, guid: 58337aabd3784574e94373a5e9b9d03a, type: 3} - - {fileID: 21300000, guid: e6c3d8e6337e8e34e8f81bbeb63621cf, type: 3} - - {fileID: 21300000, guid: bbe8123cae5344f47a68b50731b0b3b3, type: 3} - - {fileID: 21300000, guid: 57966b9f15675fc4bb13ac781945ff41, type: 3} - - {fileID: 21300000, guid: 7f49685d1ba91314bb4e55a8d0d5a87e, type: 3} - - {fileID: 21300000, guid: b74e0c77395dd4646aaeb75266221407, type: 3} - - {fileID: 21300000, guid: 8a72adb42754a1c45b048cec65631289, type: 3} - - {fileID: 21300000, guid: 87380a4a7e2412d4291e397cb00450f5, type: 3} - - {fileID: 21300000, guid: 25271616af1414e41a75e4f8696a23dc, type: 3} - - {fileID: 21300000, guid: 322670d5cf3031549a940b8a9f795b59, type: 3} - - {fileID: 21300000, guid: bb74eebb04f1dac4eaf00290d13ebaa3, type: 3} - - {fileID: 21300000, guid: 6be4996b962d75c4c959cc18d5cb36bb, type: 3} - - {fileID: 21300000, guid: 8f493617c00341c4987d5383c144a239, type: 3} - - {fileID: 21300000, guid: 3ff0613cebea3994b8f575ca6cb710de, type: 3} - - {fileID: 21300000, guid: 607416321cf156a479c9b46ce46b2a42, type: 3} - - {fileID: 21300000, guid: 6c1ddd009054eb44787d724f46373a7e, type: 3} - - {fileID: 21300000, guid: 2897dc729d36b4046967de4b9bd848d1, type: 3} - - {fileID: 21300000, guid: da6053de3f9f2ad4787f92a00f411554, type: 3} - - {fileID: 21300000, guid: 6b3e17a9084005441bbabd97659cfba4, type: 3} - - {fileID: 21300000, guid: 8fbd657bc97904745ba61f94f8c9bca3, type: 3} - - {fileID: 21300000, guid: a6984c156bf0ee54fb19fb7de88a6488, type: 3} - - {fileID: 21300000, guid: a1aafe05adfa313428b00fd48bb49d54, type: 3} - - {fileID: 21300000, guid: fb73e2c214529fa41a3e10d418a57be8, type: 3} - - {fileID: 21300000, guid: b4d02ef7a7192d6408497eabd171ae11, type: 3} - - {fileID: 21300000, guid: a08ecce191407f2458331ec8046766df, type: 3} - - {fileID: 21300000, guid: 77492aece4267bb4cb623f0bcc4253de, type: 3} - - {fileID: 21300000, guid: 3b14bc3747e2c3248b47a3ac14d44d6d, type: 3} - - {fileID: 21300000, guid: 31c5ffb6550fe564ab9f5159f4e9a1a6, type: 3} - - {fileID: 21300000, guid: d375738329fc0b24eba9adec4900cd65, type: 3} - - {fileID: 21300000, guid: a463800eafbda1243bdd9d0d2a7737a1, type: 3} - - {fileID: 21300000, guid: a54ea6786bf96f54f807d1300fb6ff96, type: 3} - - {fileID: 21300000, guid: 60ec8c24465bfca4781083710975a225, type: 3} - - {fileID: 21300000, guid: ff604a18fbb77694a833d9b4fb867854, type: 3} - - {fileID: 21300000, guid: d9d1f28d32f0b994788432b2f57ac18f, type: 3} - - {fileID: 21300000, guid: c1c674720882aa14bbfa27efe47bd455, type: 3} - - {fileID: 21300000, guid: d263b2957e64c0140b3dfd314eb5de2a, type: 3} - - {fileID: 21300000, guid: 45ba3eb0efd37b44dbfa73e164ff475c, type: 3} - - {fileID: 21300000, guid: 25cfc892b91dc6a4998318b87d80b807, type: 3} - - {fileID: 21300000, guid: a385ed9fb2abeff4f8a7ef6d1579287b, type: 3} - - {fileID: 21300000, guid: e86b3825bf47110428a0e4648a3312e4, type: 3} - - {fileID: 21300000, guid: a2f67855b878a794e8d52d33cdc4c23b, type: 3} - - {fileID: 21300000, guid: 3df1f1c0900d28e48958abf63b77fd5e, type: 3} - - {fileID: 21300000, guid: a806bb907d2075d44a8ea0a190a92c52, type: 3} - - {fileID: 21300000, guid: 66f7e9bcf829fc04d816daa40ffaad77, type: 3} - - {fileID: 21300000, guid: 1f0e6d68246796849961cb0680d4f226, type: 3} - - {fileID: 21300000, guid: 61fbfac1b3606d443b9e1323283cf721, type: 3} - - {fileID: 21300000, guid: b52f96a93af896d42be3f2480fbf151f, type: 3} - - {fileID: 21300000, guid: facf7bde42942c445bb03a5a1e9c9c31, type: 3} - - {fileID: 21300000, guid: 7522d12ea20725348ae713fa0ad38568, type: 3} - - {fileID: 21300000, guid: e4d5e6bdb87725140838dd3b235c0169, type: 3} - - {fileID: 21300000, guid: 68d1634b9f54cc34eb7436a79bc1b9db, type: 3} - spriteNameList: e9a43d8deaa43d8deba43d8deca43d8deda43d8deea43d8d0ae27a1a2757a7712857a7712957a7712a57a7718a243e8d8b243e8d8c243e8d8d243e8d8e243e8d8f243e8d90243e8d91243e8dc48e80a0ec49916fed49916fee49916fef49916ff049916ff149916ff249916ff349916ff449916ff549916fc58e80a00b4a916f0c4a916f0d4a916f0e4a916f0f4a916f104a916f114a916f124a916f134a916f144a916fc68e80a02a4a916f2b4a916f2c4a916f2d4a916f2e4a916f2f4a916f304a916f314a916f324a916f334a916fc78e80a0494a916f4a4a916f4b4a916f4c4a916f4d4a916f4e4a916f4f4a916f504a916f514a916f524a916fc88e80a0684a916f694a916f6a4a916f6b4a916f6c4a916f6d4a916f6e4a916f6f4a916f704a916f714a916fc98e80a0874a916fca8e80a0cb8e80a0cc8e80a0ba938c1abb938c1abc938c1abd938c1abe938c1abf938c1ac0938c1ac1938c1acf53b7a901853b19b65e358d6684a6c91fecadc920ecadc921ecadc9a4a12138e0c7a11a5034973951349739523497395334973954349739553497395634973957349739e1c7a11ae2c7a11ae3c7a11ae4c7a11ae5c7a11ae6c7a11ae7c7a11ae8c7a11a871250f9beb8ba3032a73f8d33a73f8d34a73f8d35513740dc7b70a78d039f460060ec1a7a737b477b737b477c737b477d737b477e737b477f737b4780737b4781737b47f116cb47f216cb47252af848262af848272af848282af848292af8482a2af8482b2af848433c4887443c4887453c48873c864f1b7351fb697451fb697551fb697651fb697751fb697851fb69352a4335362a4335372a4335382a4335392a4335b2e14751b3e14751b4e14751f85578c6b6ad7c4fb7ad7c4fb8ad7c4fb9ad7c4fbaad7c4fbbad7c4fbcad7c4fbdad7c4fd3c6871b24671cdc diff --git a/Assets/arts/atlas/ui/common.asset.meta b/Assets/arts/atlas/ui/common.asset.meta deleted file mode 100644 index d1778234d..000000000 --- a/Assets/arts/atlas/ui/common.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 1e69347f924997e4f9e7e6eacadab459 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/arts/atlas/ui/common.spriteatlas b/Assets/arts/atlas/ui/common.spriteatlas deleted file mode 100644 index d195a070d..000000000 --- a/Assets/arts/atlas/ui/common.spriteatlas +++ /dev/null @@ -1,67 +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 - 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: 9df8d25b54d843046a649757595482c9, type: 3} - bindAsDefault: 1 - isAtlasV2: 0 - cachedData: {fileID: 0} - m_MasterAtlas: {fileID: 0} - m_PackedSprites: [] - m_PackedSpriteNamesToIndex: [] - m_RenderDataMap: {} - m_Tag: common - m_IsVariant: 0 diff --git a/Assets/arts/atlas/ui/common.spriteatlas.meta b/Assets/arts/atlas/ui/common.spriteatlas.meta deleted file mode 100644 index 2247be63e..000000000 --- a/Assets/arts/atlas/ui/common.spriteatlas.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 4e4b596711abc4f47b5cc888f2291f59 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 4343727234628468602 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/arts/atlas/ui/login.asset b/Assets/arts/atlas/ui/login.asset deleted file mode 100644 index bc8faf655..000000000 --- a/Assets/arts/atlas/ui/login.asset +++ /dev/null @@ -1,19 +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: login - m_EditorClassIdentifier: - spriteList: - - {fileID: 21300000, guid: acdf294cbd7f8d54b94fa693b91a34ae, type: 3} - - {fileID: 21300000, guid: 1c6e013354e99e841b7b7f5be294a6e7, type: 3} - - {fileID: 21300000, guid: 0467ebe2d6abd8741b4de176ef36e93d, type: 3} - spriteNameList: 01dd90783fdd9078c4df9078 diff --git a/Assets/arts/atlas/ui/login.asset.meta b/Assets/arts/atlas/ui/login.asset.meta deleted file mode 100644 index ad359ca24..000000000 --- a/Assets/arts/atlas/ui/login.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: b98e060508c1d6645a68c6a4deff630d -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/arts/atlas/ui/login.spriteatlas b/Assets/arts/atlas/ui/login.spriteatlas deleted file mode 100644 index 8535fb21f..000000000 --- a/Assets/arts/atlas/ui/login.spriteatlas +++ /dev/null @@ -1,67 +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: login - 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: a2ecc7f011a2c5642933348ed8962a22, type: 3} - bindAsDefault: 1 - isAtlasV2: 0 - cachedData: {fileID: 0} - m_MasterAtlas: {fileID: 0} - m_PackedSprites: [] - m_PackedSpriteNamesToIndex: [] - m_RenderDataMap: {} - m_Tag: login - m_IsVariant: 0 diff --git a/Assets/arts/atlas/ui/login.spriteatlas.meta b/Assets/arts/atlas/ui/login.spriteatlas.meta deleted file mode 100644 index 2693f52c6..000000000 --- a/Assets/arts/atlas/ui/login.spriteatlas.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: ab9dff22bed0f5b4fb0a14e0d99701f3 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 4343727234628468602 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/arts/atlas/ui/main.asset b/Assets/arts/atlas/ui/main.asset deleted file mode 100644 index 37148b6fa..000000000 --- a/Assets/arts/atlas/ui/main.asset +++ /dev/null @@ -1,51 +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: main - m_EditorClassIdentifier: - spriteList: - - {fileID: 21300000, guid: 9013520d64f90f34aacba77d722b2437, type: 3} - - {fileID: 21300000, guid: 93f125100e3ef1d4a9a9811b8b425000, type: 3} - - {fileID: 21300000, guid: f1196dac3882f2a439b3fe5fb94682d9, type: 3} - - {fileID: 21300000, guid: a5b4dd82d4cb1304c9153886e68773c5, type: 3} - - {fileID: 21300000, guid: 34f18226bcfd065408c37f11782bd537, type: 3} - - {fileID: 21300000, guid: 9d6ad29a02165c5439257a7acd3c8ebb, type: 3} - - {fileID: 21300000, guid: fc8e3140b83e0d548ac1d5c9b07903f3, type: 3} - - {fileID: 21300000, guid: 7735d0267f3eab74581365793d41e273, type: 3} - - {fileID: 21300000, guid: a620f5a64995ff046a33fbb33ce224f4, type: 3} - - {fileID: 21300000, guid: b9c3b304210b5174aa4d6f93efa22822, type: 3} - - {fileID: 21300000, guid: f2f820cb6f69cc84493dbcd3f12f0a1b, type: 3} - - {fileID: 21300000, guid: 79b02731b4160574d98cfa5688de5caf, type: 3} - - {fileID: 21300000, guid: e338d0cd5ee255247bc75edaca98a289, type: 3} - - {fileID: 21300000, guid: 27997ca86dd76ec469a45226e3a36035, type: 3} - - {fileID: 21300000, guid: d216ce040d00b9346b630d92484931c2, type: 3} - - {fileID: 21300000, guid: a1a4ba7b61bb84d4997f8839002764c9, type: 3} - - {fileID: 21300000, guid: fe83b0629bc80134abc9345e93f59567, type: 3} - - {fileID: 21300000, guid: d0953357bd23d1d41b6b3570b1f27e63, type: 3} - - {fileID: 21300000, guid: 43f1c9e3c82ecb040a38d34a784fbcbc, type: 3} - - {fileID: 21300000, guid: 49bab40417050bc4b836bcc3edcb2b0d, type: 3} - - {fileID: 21300000, guid: 58f78b556b5836040b0d5bb26502737e, type: 3} - - {fileID: 21300000, guid: 4f9e50ba09ba7e347af162dccf0fd0a1, type: 3} - - {fileID: 21300000, guid: 145d385a318b2be4bb9b12239fb122c5, type: 3} - - {fileID: 21300000, guid: 376b91d6716a41343a4fb16210d5debb, type: 3} - - {fileID: 21300000, guid: e72b20c4a52ad2f4b96cb31bee56392f, type: 3} - - {fileID: 21300000, guid: 5120af892a7a8464787537fca87c74c2, type: 3} - - {fileID: 21300000, guid: 17faf7cc6f599ec499b3601213861833, type: 3} - - {fileID: 21300000, guid: e84ccd9a410651246b4fe6c04492d327, type: 3} - - {fileID: 21300000, guid: 47d26e355d7ff8d468c68180fedada44, type: 3} - - {fileID: 21300000, guid: 05348de432e91a142ae7db0779feba24, type: 3} - - {fileID: 21300000, guid: bc5a4ff8c6c9ed54494fb72805923cd8, type: 3} - - {fileID: 21300000, guid: 45ea40c9cf3165c41a48ac18d7c920ad, type: 3} - - {fileID: 21300000, guid: 3d7458dd9d3d8004ab4bcb760544a614, type: 3} - - {fileID: 21300000, guid: dc4985268de75b145aca7a4528af2725, type: 3} - - {fileID: 21300000, guid: 12ab29ecbf0d5bb44a8c12e85e68dee7, type: 3} - spriteNameList: 52da141f53da141f54da141f55da141f56da141f7d7901f17e7901f108dd332fbac6b03109dd332f7bcab0310add332f3cceb0310bdd332ffdd1b0310cdd332fbed5b03131bc0b9c5846653fc1a5925fc2a5925fe0a5925fe1a5925f82a9925f83a9925fa1a9925fa2a9925f348a45dfa75347199d9f810480658304b87f34fa4e9586042e11492f2f11492f diff --git a/Assets/arts/atlas/ui/main.asset.meta b/Assets/arts/atlas/ui/main.asset.meta deleted file mode 100644 index c4a0608f1..000000000 --- a/Assets/arts/atlas/ui/main.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: cd7c58f91a7c30548b3f71cb82d808f7 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/arts/atlas/ui/main.spriteatlas b/Assets/arts/atlas/ui/main.spriteatlas deleted file mode 100644 index c4171e032..000000000 --- a/Assets/arts/atlas/ui/main.spriteatlas +++ /dev/null @@ -1,67 +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: main - 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: 8cce075eabab377429e1649eed73cedf, type: 3} - bindAsDefault: 1 - isAtlasV2: 0 - cachedData: {fileID: 0} - m_MasterAtlas: {fileID: 0} - m_PackedSprites: [] - m_PackedSpriteNamesToIndex: [] - m_RenderDataMap: {} - m_Tag: main - m_IsVariant: 0 diff --git a/Assets/arts/atlas/ui/main.spriteatlas.meta b/Assets/arts/atlas/ui/main.spriteatlas.meta deleted file mode 100644 index 0891482d5..000000000 --- a/Assets/arts/atlas/ui/main.spriteatlas.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 150b22e4b6eeb174191aa019dbbc4623 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 4343727234628468602 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/arts/atlas/ui/tutorial.asset b/Assets/arts/atlas/ui/tutorial.asset deleted file mode 100644 index 98802fc7e..000000000 --- a/Assets/arts/atlas/ui/tutorial.asset +++ /dev/null @@ -1,18 +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: tutorial - m_EditorClassIdentifier: - spriteList: - - {fileID: 21300000, guid: d98460a1198de6d4390ca9da424d5d42, type: 3} - - {fileID: 21300000, guid: 76b4356e609315a44bfdb2b26213f46b, type: 3} - spriteNameList: d1a86f2c13a70f54 diff --git a/Assets/arts/atlas/ui/tutorial.asset.meta b/Assets/arts/atlas/ui/tutorial.asset.meta deleted file mode 100644 index 8091553f2..000000000 --- a/Assets/arts/atlas/ui/tutorial.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 6848a5749510c2b4587480ee93d1a923 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/arts/atlas/ui/tutorial.spriteatlas b/Assets/arts/atlas/ui/tutorial.spriteatlas deleted file mode 100644 index 610b4663c..000000000 --- a/Assets/arts/atlas/ui/tutorial.spriteatlas +++ /dev/null @@ -1,67 +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: tutorial - 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: 4422a03f5a96988458e8b29c82f9bf6a, type: 3} - bindAsDefault: 1 - isAtlasV2: 0 - cachedData: {fileID: 0} - m_MasterAtlas: {fileID: 0} - m_PackedSprites: [] - m_PackedSpriteNamesToIndex: [] - m_RenderDataMap: {} - m_Tag: tutorial - m_IsVariant: 0 diff --git a/Assets/arts/atlas/ui/tutorial.spriteatlas.meta b/Assets/arts/atlas/ui/tutorial.spriteatlas.meta deleted file mode 100644 index 841bbed6f..000000000 --- a/Assets/arts/atlas/ui/tutorial.spriteatlas.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: cce960d06e163554784a8a7040835548 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 4343727234628468602 - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/arts/models/maps/stage/materials/main_bg.mat b/Assets/arts/models/maps/stage/materials/main_bg.mat deleted file mode 100644 index d96702881..000000000 --- a/Assets/arts/models/maps/stage/materials/main_bg.mat +++ /dev/null @@ -1,28 +0,0 @@ -%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: main_bg - m_Shader: {fileID: 10752, guid: 0000000000000000f000000000000000, type: 0} - m_ShaderKeywords: - 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: 8bc256b94f1ba204586764c5cb8f4748, type: 3} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - m_Floats: [] - m_Colors: [] - m_BuildTextureStacks: [] diff --git a/Assets/arts/models/maps/stage/materials/main_bg.mat.meta b/Assets/arts/models/maps/stage/materials/main_bg.mat.meta deleted file mode 100644 index 9344a106e..000000000 --- a/Assets/arts/models/maps/stage/materials/main_bg.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: ec04499b95480444cac5f143d6fa083f -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 2100000 - userData: - assetBundleName: arts/models/maps/stage.ab - assetBundleVariant: diff --git a/Assets/arts/models/maps/stage/materials/main_bg_1.mat b/Assets/arts/models/maps/stage/materials/main_bg_1.mat deleted file mode 100644 index 9f95c2484..000000000 --- a/Assets/arts/models/maps/stage/materials/main_bg_1.mat +++ /dev/null @@ -1,28 +0,0 @@ -%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: main_bg_1 - m_Shader: {fileID: 10752, guid: 0000000000000000f000000000000000, type: 0} - m_ShaderKeywords: - 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: 8bc256b94f1ba204586764c5cb8f4748, type: 3} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - m_Floats: [] - m_Colors: [] - m_BuildTextureStacks: [] diff --git a/Assets/arts/models/maps/stage/materials/main_bg_1.mat.meta b/Assets/arts/models/maps/stage/materials/main_bg_1.mat.meta deleted file mode 100644 index 949b5c40f..000000000 --- a/Assets/arts/models/maps/stage/materials/main_bg_1.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 7fd471a3a70b629479995010c6bbc2e0 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 2100000 - userData: - assetBundleName: arts/models/maps/stage.ab - assetBundleVariant: diff --git a/Assets/arts/models/maps/stage/materials/main_bg_2.mat b/Assets/arts/models/maps/stage/materials/main_bg_2.mat deleted file mode 100644 index d9154c903..000000000 --- a/Assets/arts/models/maps/stage/materials/main_bg_2.mat +++ /dev/null @@ -1,28 +0,0 @@ -%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: main_bg_2 - m_Shader: {fileID: 10752, guid: 0000000000000000f000000000000000, type: 0} - m_ShaderKeywords: - 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: 8bc256b94f1ba204586764c5cb8f4748, type: 3} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - m_Floats: [] - m_Colors: [] - m_BuildTextureStacks: [] diff --git a/Assets/arts/models/maps/stage/materials/main_bg_2.mat.meta b/Assets/arts/models/maps/stage/materials/main_bg_2.mat.meta deleted file mode 100644 index fc29a25f3..000000000 --- a/Assets/arts/models/maps/stage/materials/main_bg_2.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: f467612a9ba362f49972262a8c499cdc -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 2100000 - userData: - assetBundleName: arts/models/maps/stage.ab - assetBundleVariant: diff --git a/Assets/arts/models/maps/stage/textures/bg.png b/Assets/arts/models/maps/stage/textures/bg.png deleted file mode 100644 index c9a1c0402..000000000 Binary files a/Assets/arts/models/maps/stage/textures/bg.png and /dev/null differ diff --git a/Assets/arts/shaders/spine/spine_skeleton_graphic.shader b/Assets/arts/shaders/spine/spine_skeleton_graphic.shader new file mode 100644 index 000000000..0d2c66244 --- /dev/null +++ b/Assets/arts/shaders/spine/spine_skeleton_graphic.shader @@ -0,0 +1,141 @@ +// This is a premultiply-alpha adaptation of the built-in Unity shader "UI/Default" in Unity 5.6.2 to allow Unity UI stencil masking. + +Shader "BF/Spine/SkeletonGraphic" +{ + Properties + { + [PerRendererData] _MainTex ("Sprite Texture", 2D) = "white" {} + [Toggle(_STRAIGHT_ALPHA_INPUT)] _StraightAlphaInput("Straight Alpha Texture", Int) = 0 + [Toggle(_CANVAS_GROUP_COMPATIBLE)] _CanvasGroupCompatible("CanvasGroup Compatible", Int) = 0 + _Color ("Tint", Color) = (1,1,1,1) + + [HideInInspector][Enum(UnityEngine.Rendering.CompareFunction)] _StencilComp ("Stencil Comparison", Float) = 8 + [HideInInspector] _Stencil ("Stencil ID", Float) = 0 + [HideInInspector][Enum(UnityEngine.Rendering.StencilOp)] _StencilOp ("Stencil Operation", Float) = 0 + [HideInInspector] _StencilWriteMask ("Stencil Write Mask", Float) = 255 + [HideInInspector] _StencilReadMask ("Stencil Read Mask", Float) = 255 + + [HideInInspector] _ColorMask ("Color Mask", Float) = 15 + + [Toggle(UNITY_UI_ALPHACLIP)] _UseUIAlphaClip ("Use Alpha Clip", Float) = 0 + + // Outline properties are drawn via custom editor. + [HideInInspector] _OutlineWidth("Outline Width", Range(0,8)) = 3.0 + [HideInInspector] _OutlineColor("Outline Color", Color) = (1,1,0,1) + [HideInInspector] _OutlineReferenceTexWidth("Reference Texture Width", Int) = 1024 + [HideInInspector] _ThresholdEnd("Outline Threshold", Range(0,1)) = 0.25 + [HideInInspector] _OutlineSmoothness("Outline Smoothness", Range(0,1)) = 1.0 + [HideInInspector][MaterialToggle(_USE8NEIGHBOURHOOD_ON)] _Use8Neighbourhood("Sample 8 Neighbours", Float) = 1 + [HideInInspector] _OutlineMipLevel("Outline Mip Level", Range(0,3)) = 0 + } + + SubShader + { + Tags + { + "Queue"="Transparent" + "IgnoreProjector"="True" + "RenderType"="Transparent" + "PreviewType"="Plane" + "CanUseSpriteAtlas"="True" + } + + Stencil + { + Ref [_Stencil] + Comp [_StencilComp] + Pass [_StencilOp] + ReadMask [_StencilReadMask] + WriteMask [_StencilWriteMask] + } + + Cull Off + Lighting Off + ZWrite Off + ZTest [unity_GUIZTestMode] + Fog { Mode Off } + Blend One OneMinusSrcAlpha + ColorMask [_ColorMask] + + Pass + { + Name "Normal" + + CGPROGRAM + #pragma shader_feature _ _STRAIGHT_ALPHA_INPUT + #pragma shader_feature _ _CANVAS_GROUP_COMPATIBLE + #pragma vertex vert + #pragma fragment frag + #pragma target 2.0 + + #include "UnityCG.cginc" + #include "UnityUI.cginc" + + #pragma multi_compile __ UNITY_UI_ALPHACLIP + + struct VertexInput { + float4 vertex : POSITION; + float4 color : COLOR; + float2 texcoord : TEXCOORD0; + UNITY_VERTEX_INPUT_INSTANCE_ID + }; + + struct VertexOutput { + float4 vertex : SV_POSITION; + fixed4 color : COLOR; + half2 texcoord : TEXCOORD0; + float4 worldPosition : TEXCOORD1; + UNITY_VERTEX_OUTPUT_STEREO + }; + + fixed4 _Color; + fixed4 _TextureSampleAdd; + float4 _ClipRect; + + VertexOutput vert (VertexInput IN) { + VertexOutput OUT; + + UNITY_SETUP_INSTANCE_ID(IN); + UNITY_INITIALIZE_VERTEX_OUTPUT_STEREO(OUT); + + OUT.worldPosition = IN.vertex; + OUT.vertex = UnityObjectToClipPos(OUT.worldPosition); + OUT.texcoord = IN.texcoord; + + #ifdef UNITY_HALF_TEXEL_OFFSET + OUT.vertex.xy += (_ScreenParams.zw-1.0) * float2(-1,1); + #endif + + OUT.color = IN.color * float4(_Color.rgb * _Color.a, _Color.a); // Combine a PMA version of _Color with vertexColor. + return OUT; + } + + sampler2D _MainTex; + + fixed4 frag (VertexOutput IN) : SV_Target + { + half4 texColor = tex2D(_MainTex, IN.texcoord); + + #if defined(_STRAIGHT_ALPHA_INPUT) + texColor.rgb *= texColor.a; + #endif + + half4 color = (texColor + _TextureSampleAdd) * IN.color; + #ifdef _CANVAS_GROUP_COMPATIBLE + // CanvasGroup alpha sets vertex color alpha, but does not premultiply it to rgb components. + color.rgb *= IN.color.a; + #endif + + color *= UnityGet2DClipping(IN.worldPosition.xy, _ClipRect); + + #ifdef UNITY_UI_ALPHACLIP + clip (color.a - 0.001); + #endif + + return color; + } + ENDCG + } + } + CustomEditor "SpineShaderWithOutlineGUI" +} diff --git a/Assets/arts/shaders/spine/spine_skeleton_graphic.shader.meta b/Assets/arts/shaders/spine/spine_skeleton_graphic.shader.meta new file mode 100644 index 000000000..d696328ab --- /dev/null +++ b/Assets/arts/shaders/spine/spine_skeleton_graphic.shader.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 377c42a8605c04b4faa9648bb2f4e269 +ShaderImporter: + externalObjects: {} + defaultTextures: + - _MainTex: {instanceID: 0} + nonModifiableTextures: [] + preprocessorOverride: 0 + userData: + assetBundleName: arts/shaders.ab + assetBundleVariant: diff --git a/Assets/arts/sounds/music/bgm_main.wav b/Assets/arts/sounds/music/bgm_main.wav deleted file mode 100644 index 112762df4..000000000 Binary files a/Assets/arts/sounds/music/bgm_main.wav and /dev/null differ diff --git a/Assets/arts/sounds/music/bgm_main.wav.meta b/Assets/arts/sounds/music/bgm_main.wav.meta deleted file mode 100644 index ad65dcc62..000000000 --- a/Assets/arts/sounds/music/bgm_main.wav.meta +++ /dev/null @@ -1,22 +0,0 @@ -fileFormatVersion: 2 -guid: 7b5b8cf39bc420245a0982f14d730df2 -AudioImporter: - externalObjects: {} - serializedVersion: 6 - defaultSettings: - loadType: 1 - sampleRateSetting: 0 - sampleRateOverride: 0 - compressionFormat: 1 - quality: 0.7 - conversionMode: 0 - platformSettingOverrides: {} - forceToMono: 1 - normalize: 1 - preloadAudioData: 0 - loadInBackground: 0 - ambisonic: 0 - 3D: 1 - userData: - assetBundleName: arts/sounds/music/bgm_main.wav.ab - assetBundleVariant: diff --git a/Assets/arts/models/maps.meta b/Assets/arts/sounds/sfx/battle.meta similarity index 77% rename from Assets/arts/models/maps.meta rename to Assets/arts/sounds/sfx/battle.meta index 1035ed7c0..32eedd81f 100644 --- a/Assets/arts/models/maps.meta +++ b/Assets/arts/sounds/sfx/battle.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 37dc5ddf03fe502488178978621cf93a +guid: 54474330870d6b441b8088fb272aed75 folderAsset: yes DefaultImporter: externalObjects: {} diff --git a/Assets/arts/models/maps/stage.meta b/Assets/arts/textures/background/act_accessories.meta similarity index 77% rename from Assets/arts/models/maps/stage.meta rename to Assets/arts/textures/background/act_accessories.meta index 7bbd89e61..36e14e38e 100644 --- a/Assets/arts/models/maps/stage.meta +++ b/Assets/arts/textures/background/act_accessories.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: d273d9fa9ee83e041ae61d5d5c8eb4b4 +guid: 1dd5303e6d2210848951a2fcdadfc792 folderAsset: yes DefaultImporter: externalObjects: {} diff --git a/Assets/arts/models/maps/stage/materials.meta b/Assets/arts/textures/background/act_black_friday.meta similarity index 77% rename from Assets/arts/models/maps/stage/materials.meta rename to Assets/arts/textures/background/act_black_friday.meta index 7614583f0..7bb543560 100644 --- a/Assets/arts/models/maps/stage/materials.meta +++ b/Assets/arts/textures/background/act_black_friday.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 16e0c78cf389e454f9f132f9aadcf9b2 +guid: 8a24b7b30d4067543bc0cb5471e2cba8 folderAsset: yes DefaultImporter: externalObjects: {} diff --git a/Assets/arts/models/maps/stage/textures.meta b/Assets/arts/textures/background/act_chinese_newyear.meta similarity index 77% rename from Assets/arts/models/maps/stage/textures.meta rename to Assets/arts/textures/background/act_chinese_newyear.meta index 2d1468844..e77eb9b36 100644 --- a/Assets/arts/models/maps/stage/textures.meta +++ b/Assets/arts/textures/background/act_chinese_newyear.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 93dbda71c9f03a2449f0d36f184f5d78 +guid: 90d9d492e9210f247a72399c4d607f7a folderAsset: yes DefaultImporter: externalObjects: {} diff --git a/Assets/arts/textures/background/act_coffee.meta b/Assets/arts/textures/background/act_coffee.meta new file mode 100644 index 000000000..382e0be81 --- /dev/null +++ b/Assets/arts/textures/background/act_coffee.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fc55ff0c66cdaed49b996d26f3fc9614 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/arts/textures/background/act_dragon.meta b/Assets/arts/textures/background/act_dragon.meta new file mode 100644 index 000000000..f8e96f5e7 --- /dev/null +++ b/Assets/arts/textures/background/act_dragon.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 185d19dd0879b694e955095925162e21 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/arts/textures/background/act_early_month.meta b/Assets/arts/textures/background/act_early_month.meta new file mode 100644 index 000000000..256648b70 --- /dev/null +++ b/Assets/arts/textures/background/act_early_month.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f6cc467b36f8e594ea7d5ae59b4c3256 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/arts/textures/background/act_easter.meta b/Assets/arts/textures/background/act_easter.meta new file mode 100644 index 000000000..19ea207c9 --- /dev/null +++ b/Assets/arts/textures/background/act_easter.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8c03c31e0bddac94787eb9642d0b01ce +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/arts/textures/background/act_goblin.meta b/Assets/arts/textures/background/act_goblin.meta new file mode 100644 index 000000000..02fa8fee3 --- /dev/null +++ b/Assets/arts/textures/background/act_goblin.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fc5aa0d16f1aa4645beec2d0474474a5 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/arts/textures/background/act_icebrawl.meta b/Assets/arts/textures/background/act_icebrawl.meta new file mode 100644 index 000000000..b4dca8b67 --- /dev/null +++ b/Assets/arts/textures/background/act_icebrawl.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bac16ac27baea0e4ca6b70810484e538 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/arts/textures/background/act_longash.meta b/Assets/arts/textures/background/act_longash.meta new file mode 100644 index 000000000..5085fc71d --- /dev/null +++ b/Assets/arts/textures/background/act_longash.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: eb5ca709260ef114ab8340b640851166 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/arts/textures/background/act_magicherbs.meta b/Assets/arts/textures/background/act_magicherbs.meta new file mode 100644 index 000000000..edade0b94 --- /dev/null +++ b/Assets/arts/textures/background/act_magicherbs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5c0d9d6f629e25643b321190aae68134 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/arts/textures/background/act_monopoly.meta b/Assets/arts/textures/background/act_monopoly.meta new file mode 100644 index 000000000..e91c9c0ec --- /dev/null +++ b/Assets/arts/textures/background/act_monopoly.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cd173e3bb65b1954484086c9464be2ae +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/arts/textures/background/act_newyear.meta b/Assets/arts/textures/background/act_newyear.meta new file mode 100644 index 000000000..20d2d9244 --- /dev/null +++ b/Assets/arts/textures/background/act_newyear.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f6f86eaf7d8dea94fb49f8b92de03b99 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/arts/textures/background/act_newyeardiary.meta b/Assets/arts/textures/background/act_newyeardiary.meta new file mode 100644 index 000000000..29b3afafc --- /dev/null +++ b/Assets/arts/textures/background/act_newyeardiary.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d4ecbca043bc4de4baddd0ba4376eecb +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/arts/textures/background/act_return.meta b/Assets/arts/textures/background/act_return.meta new file mode 100644 index 000000000..28a755781 --- /dev/null +++ b/Assets/arts/textures/background/act_return.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 91cfe052087c81c449f86449507ea69c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/arts/textures/background/act_sevendaynew.meta b/Assets/arts/textures/background/act_sevendaynew.meta new file mode 100644 index 000000000..d8c799434 --- /dev/null +++ b/Assets/arts/textures/background/act_sevendaynew.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 48863809bef0d9c48aba3b61ee69615a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/arts/textures/background/act_snowmonster.meta b/Assets/arts/textures/background/act_snowmonster.meta new file mode 100644 index 000000000..c0ae12099 --- /dev/null +++ b/Assets/arts/textures/background/act_snowmonster.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e7d965552d193554c896892c236ab637 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/arts/textures/background/act_superturntable.meta b/Assets/arts/textures/background/act_superturntable.meta new file mode 100644 index 000000000..839ef2379 --- /dev/null +++ b/Assets/arts/textures/background/act_superturntable.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b5e33b49f088f1346bdb6817568504e7 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/arts/textures/background/act_turntable_gift.meta b/Assets/arts/textures/background/act_turntable_gift.meta new file mode 100644 index 000000000..f12d32e5f --- /dev/null +++ b/Assets/arts/textures/background/act_turntable_gift.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4bcc7001ecd07144794569b532e92ce3 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/arts/textures/background/act_valentine.meta b/Assets/arts/textures/background/act_valentine.meta new file mode 100644 index 000000000..f236b8b2b --- /dev/null +++ b/Assets/arts/textures/background/act_valentine.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bc964a723ddec6940ac439d89a519f8c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/arts/textures/background/act_winteriscoming.meta b/Assets/arts/textures/background/act_winteriscoming.meta new file mode 100644 index 000000000..a11eaa427 --- /dev/null +++ b/Assets/arts/textures/background/act_winteriscoming.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 19ac0a554d8df114fa9c2657b7665931 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/arts/textures/background/act_world_cup_guess.meta b/Assets/arts/textures/background/act_world_cup_guess.meta new file mode 100644 index 000000000..036db5347 --- /dev/null +++ b/Assets/arts/textures/background/act_world_cup_guess.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a38b7f5cb65a9ab4e9c4f5633809f438 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/arts/textures/background/act_world_cup_sign.meta b/Assets/arts/textures/background/act_world_cup_sign.meta new file mode 100644 index 000000000..a879907c5 --- /dev/null +++ b/Assets/arts/textures/background/act_world_cup_sign.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 33661ef29dc2b5f43ae7ae7dd2239d8a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/arts/textures/background/activity.meta b/Assets/arts/textures/background/activity.meta new file mode 100644 index 000000000..a53256f40 --- /dev/null +++ b/Assets/arts/textures/background/activity.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ad4c9e3c368dfbb448c037d735264b09 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/arts/textures/background/activity_lv_card.meta b/Assets/arts/textures/background/activity_lv_card.meta new file mode 100644 index 000000000..249a2fd0a --- /dev/null +++ b/Assets/arts/textures/background/activity_lv_card.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 523243bcf2d5a0141b03c8fe7db8e697 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/arts/textures/background/arena.meta b/Assets/arts/textures/background/arena.meta new file mode 100644 index 000000000..b39db1d5b --- /dev/null +++ b/Assets/arts/textures/background/arena.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 180b0782b88fd0d4996c1b79130a38b0 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/arts/textures/background/battle.meta b/Assets/arts/textures/background/battle.meta new file mode 100644 index 000000000..e1636f394 --- /dev/null +++ b/Assets/arts/textures/background/battle.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b4ccb51e7c53f6645baedc42f1148648 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/arts/textures/background/battle/bg_1.png b/Assets/arts/textures/background/battle/bg_1.png new file mode 100644 index 000000000..1531d3f0f Binary files /dev/null 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 new file mode 100644 index 000000000..ccc007828 --- /dev/null +++ b/Assets/arts/textures/background/battle/bg_1.png.meta @@ -0,0 +1,120 @@ +fileFormatVersion: 2 +guid: a588f737b35bbe841ad2437be111429e +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: + assetBundleVariant: diff --git a/Assets/arts/textures/background/battle/bg_2.png b/Assets/arts/textures/background/battle/bg_2.png new file mode 100644 index 000000000..df3502deb Binary files /dev/null and b/Assets/arts/textures/background/battle/bg_2.png differ diff --git a/Assets/arts/models/maps/stage/textures/bg.png.meta b/Assets/arts/textures/background/battle/bg_2.png.meta similarity index 96% rename from Assets/arts/models/maps/stage/textures/bg.png.meta rename to Assets/arts/textures/background/battle/bg_2.png.meta index 72801dba3..f356b1a20 100644 --- a/Assets/arts/models/maps/stage/textures/bg.png.meta +++ b/Assets/arts/textures/background/battle/bg_2.png.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 4f3a9b948cb4c8a4496974e7725af6c8 +guid: 629b982e5340cf24bad1d8701330d3c8 TextureImporter: internalIDToNameTable: [] externalObjects: {} @@ -116,5 +116,5 @@ TextureImporter: pSDRemoveMatte: 0 pSDShowRemoveMatteOption: 0 userData: - assetBundleName: arts/models/maps/stage.ab + assetBundleName: assetBundleVariant: diff --git a/Assets/arts/textures/background/bounty.meta b/Assets/arts/textures/background/bounty.meta new file mode 100644 index 000000000..1e9f01673 --- /dev/null +++ b/Assets/arts/textures/background/bounty.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ba3f6791d74705c4296b2fc45ac1c65b +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/arts/textures/background/cel.meta b/Assets/arts/textures/background/cel.meta new file mode 100644 index 000000000..dec8267a8 --- /dev/null +++ b/Assets/arts/textures/background/cel.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7fcf2aeffddfd1a459b8604d38176563 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/arts/textures/background/hero.meta b/Assets/arts/textures/background/hero.meta new file mode 100644 index 000000000..45cc7c46e --- /dev/null +++ b/Assets/arts/textures/background/hero.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f11c078ce89908245995f8b389eed673 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/arts/textures/background/loading.meta b/Assets/arts/textures/background/loading.meta new file mode 100644 index 000000000..5873d4e94 --- /dev/null +++ b/Assets/arts/textures/background/loading.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5c807b3bd82aa1a41aad164e4c6eb470 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/arts/textures/background/loading/cloud_1.png b/Assets/arts/textures/background/loading/cloud_1.png new file mode 100644 index 000000000..caff5f523 Binary files /dev/null and b/Assets/arts/textures/background/loading/cloud_1.png differ diff --git a/Assets/arts/textures/battle/shadow.png.meta b/Assets/arts/textures/background/loading/cloud_1.png.meta similarity index 93% rename from Assets/arts/textures/battle/shadow.png.meta rename to Assets/arts/textures/background/loading/cloud_1.png.meta index 94df08bcb..3f7ec783e 100644 --- a/Assets/arts/textures/battle/shadow.png.meta +++ b/Assets/arts/textures/background/loading/cloud_1.png.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 759b24393658d8049b4ca3ad7f10d0e3 +guid: 51b4f939fc8384a43b0fb08ef598871e TextureImporter: internalIDToNameTable: [] externalObjects: {} @@ -38,21 +38,21 @@ 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 spritePivot: {x: 0.5, y: 0.5} spritePixelsToUnits: 100 spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 0 + spriteGenerateFallbackPhysicsShape: 1 alphaUsage: 1 alphaIsTransparency: 1 spriteTessellationDetail: -1 - textureType: 8 + textureType: 0 textureShape: 1 singleChannelComponent: 0 flipbookRows: 1 @@ -117,7 +117,7 @@ TextureImporter: outline: [] physicsShape: [] bones: [] - spriteID: 5e97eb03825dee720800000000000000 + spriteID: internalID: 0 vertices: [] indices: @@ -128,5 +128,5 @@ TextureImporter: pSDRemoveMatte: 0 pSDShowRemoveMatteOption: 0 userData: - assetBundleName: arts/textures/battle.ab + assetBundleName: arts/textures/background/loading/cloud_1.png.ab assetBundleVariant: diff --git a/Assets/arts/textures/background/loading/cloud_2.png b/Assets/arts/textures/background/loading/cloud_2.png new file mode 100644 index 000000000..277300072 Binary files /dev/null and b/Assets/arts/textures/background/loading/cloud_2.png differ diff --git a/Assets/arts/textures/background/loading/cloud_2.png.meta b/Assets/arts/textures/background/loading/cloud_2.png.meta new file mode 100644 index 000000000..71d3cdcdf --- /dev/null +++ b/Assets/arts/textures/background/loading/cloud_2.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 97b52667f8c802548a17cf2474ef169b +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/loading/cloud_2.png.ab + assetBundleVariant: diff --git a/Assets/arts/textures/background/loading/cloud_3.png b/Assets/arts/textures/background/loading/cloud_3.png new file mode 100644 index 000000000..58135b054 Binary files /dev/null and b/Assets/arts/textures/background/loading/cloud_3.png differ diff --git a/Assets/arts/textures/background/loading/cloud_3.png.meta b/Assets/arts/textures/background/loading/cloud_3.png.meta new file mode 100644 index 000000000..7ca3e2bb5 --- /dev/null +++ b/Assets/arts/textures/background/loading/cloud_3.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: a282dc7318ad0764697cebd8eb705caa +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/loading/cloud_3.png.ab + assetBundleVariant: diff --git a/Assets/arts/textures/background/loading/cloud_4.png b/Assets/arts/textures/background/loading/cloud_4.png new file mode 100644 index 000000000..26ea32e37 Binary files /dev/null and b/Assets/arts/textures/background/loading/cloud_4.png differ diff --git a/Assets/arts/textures/background/loading/cloud_4.png.meta b/Assets/arts/textures/background/loading/cloud_4.png.meta new file mode 100644 index 000000000..97ecf1ad7 --- /dev/null +++ b/Assets/arts/textures/background/loading/cloud_4.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 492c2187aac92d547afa67240377ed95 +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/loading/cloud_4.png.ab + assetBundleVariant: diff --git a/Assets/arts/textures/background/login/login_bg.png b/Assets/arts/textures/background/login/login_bg.png new file mode 100644 index 000000000..4437c0e6d Binary files /dev/null and b/Assets/arts/textures/background/login/login_bg.png differ diff --git a/Assets/arts/textures/background/login/login_bg.png.meta b/Assets/arts/textures/background/login/login_bg.png.meta new file mode 100644 index 000000000..48fee3197 --- /dev/null +++ b/Assets/arts/textures/background/login/login_bg.png.meta @@ -0,0 +1,120 @@ +fileFormatVersion: 2 +guid: 93a6b9bd2f3cf9449b48873395267b91 +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/login/login_bg.png.ab + assetBundleVariant: diff --git a/Assets/arts/textures/ui/main.meta b/Assets/arts/textures/background/main.meta similarity index 77% rename from Assets/arts/textures/ui/main.meta rename to Assets/arts/textures/background/main.meta index 7e2b03ce4..4521b51d4 100644 --- a/Assets/arts/textures/ui/main.meta +++ b/Assets/arts/textures/background/main.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 8cce075eabab377429e1649eed73cedf +guid: 73896d9bec435b84d967591fa8e3628c folderAsset: yes DefaultImporter: externalObjects: {} diff --git a/Assets/arts/textures/background/main/bg_2.png b/Assets/arts/textures/background/main/bg_2.png new file mode 100644 index 000000000..a6600194b Binary files /dev/null and b/Assets/arts/textures/background/main/bg_2.png differ diff --git a/Assets/arts/textures/background/main/bg_2.png.meta b/Assets/arts/textures/background/main/bg_2.png.meta new file mode 100644 index 000000000..7894a081b --- /dev/null +++ b/Assets/arts/textures/background/main/bg_2.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 72637400b2611fe4b9eaf7d0bcf37df3 +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 + - 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/main/bg_2.png.ab + assetBundleVariant: diff --git a/Assets/arts/textures/background/main/bingchuan_m.png b/Assets/arts/textures/background/main/bingchuan_m.png new file mode 100644 index 000000000..8c165614c Binary files /dev/null and b/Assets/arts/textures/background/main/bingchuan_m.png differ diff --git a/Assets/arts/textures/background/main/bingchuan_m.png.meta b/Assets/arts/textures/background/main/bingchuan_m.png.meta new file mode 100644 index 000000000..eefc28a8f --- /dev/null +++ b/Assets/arts/textures/background/main/bingchuan_m.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 974b66073afc85a42a2dd9751c05c860 +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: arts/textures/background/main/bingchuan_m.png.ab + assetBundleVariant: diff --git a/Assets/arts/textures/background/main/huangye_m.png b/Assets/arts/textures/background/main/huangye_m.png new file mode 100644 index 000000000..6f1948f0c Binary files /dev/null and b/Assets/arts/textures/background/main/huangye_m.png differ diff --git a/Assets/arts/textures/background/main/huangye_m.png.meta b/Assets/arts/textures/background/main/huangye_m.png.meta new file mode 100644 index 000000000..4fe2118b7 --- /dev/null +++ b/Assets/arts/textures/background/main/huangye_m.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 5f33bddba173928488b96901553df6fa +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: arts/textures/background/main/huangye_m.png.ab + assetBundleVariant: diff --git a/Assets/arts/textures/background/main/main_bg.png b/Assets/arts/textures/background/main/main_bg.png new file mode 100644 index 000000000..f8ca205da Binary files /dev/null and b/Assets/arts/textures/background/main/main_bg.png differ diff --git a/Assets/arts/textures/background/main/main_bg.png.meta b/Assets/arts/textures/background/main/main_bg.png.meta new file mode 100644 index 000000000..f1da4bdc8 --- /dev/null +++ b/Assets/arts/textures/background/main/main_bg.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 381a131569f7c564bacb8be210b6c715 +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 + - 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/main/main_bg.png.ab + assetBundleVariant: diff --git a/Assets/arts/textures/background/main/main_bg_1.png b/Assets/arts/textures/background/main/main_bg_1.png new file mode 100644 index 000000000..a6d32a780 Binary files /dev/null and b/Assets/arts/textures/background/main/main_bg_1.png differ diff --git a/Assets/arts/textures/ui/main/main_bg_1.png.meta b/Assets/arts/textures/background/main/main_bg_1.png.meta similarity index 83% rename from Assets/arts/textures/ui/main/main_bg_1.png.meta rename to Assets/arts/textures/background/main/main_bg_1.png.meta index 152a03462..3dcaaef04 100644 --- a/Assets/arts/textures/ui/main/main_bg_1.png.meta +++ b/Assets/arts/textures/background/main/main_bg_1.png.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 9d6ad29a02165c5439257a7acd3c8ebb +guid: f3881601d60483e4aaf974471a587e96 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/main.ab + assetBundleName: arts/textures/background/main/main_bg_1.png.ab assetBundleVariant: diff --git a/Assets/arts/textures/background/main/main_bg_2.png b/Assets/arts/textures/background/main/main_bg_2.png new file mode 100644 index 000000000..af9d615d7 Binary files /dev/null and b/Assets/arts/textures/background/main/main_bg_2.png differ diff --git a/Assets/arts/textures/ui/main/main_bg_2.png.meta b/Assets/arts/textures/background/main/main_bg_2.png.meta similarity index 83% rename from Assets/arts/textures/ui/main/main_bg_2.png.meta rename to Assets/arts/textures/background/main/main_bg_2.png.meta index ddddfe660..ab972dd69 100644 --- a/Assets/arts/textures/ui/main/main_bg_2.png.meta +++ b/Assets/arts/textures/background/main/main_bg_2.png.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: fc8e3140b83e0d548ac1d5c9b07903f3 +guid: 198ebd0a63babc44d841d085b941eb46 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/main.ab + assetBundleName: arts/textures/background/main/main_bg_2.png.ab assetBundleVariant: diff --git a/Assets/arts/textures/background/main/main_bg_3.png b/Assets/arts/textures/background/main/main_bg_3.png new file mode 100644 index 000000000..fe586d579 Binary files /dev/null and b/Assets/arts/textures/background/main/main_bg_3.png differ diff --git a/Assets/arts/textures/background/main/main_bg_3.png.meta b/Assets/arts/textures/background/main/main_bg_3.png.meta new file mode 100644 index 000000000..171ea7abf --- /dev/null +++ b/Assets/arts/textures/background/main/main_bg_3.png.meta @@ -0,0 +1,120 @@ +fileFormatVersion: 2 +guid: d95c0adec52f3274690b46d2ca170fab +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/main/main_bg_3.png.ab + assetBundleVariant: diff --git a/Assets/arts/textures/background/main/main_bingchuan.png b/Assets/arts/textures/background/main/main_bingchuan.png new file mode 100644 index 000000000..abde03afe Binary files /dev/null and b/Assets/arts/textures/background/main/main_bingchuan.png differ diff --git a/Assets/arts/textures/background/main/main_bingchuan.png.meta b/Assets/arts/textures/background/main/main_bingchuan.png.meta new file mode 100644 index 000000000..aad557101 --- /dev/null +++ b/Assets/arts/textures/background/main/main_bingchuan.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: fb158931fa576174cb3379e1df6cd656 +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/main/main_bingchuan.png.ab + assetBundleVariant: diff --git a/Assets/arts/textures/background/main/main_huangye.png b/Assets/arts/textures/background/main/main_huangye.png new file mode 100644 index 000000000..df843ac36 Binary files /dev/null and b/Assets/arts/textures/background/main/main_huangye.png differ diff --git a/Assets/arts/textures/background/main/main_huangye.png.meta b/Assets/arts/textures/background/main/main_huangye.png.meta new file mode 100644 index 000000000..2a314744e --- /dev/null +++ b/Assets/arts/textures/background/main/main_huangye.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 66114fea65a17704da475cceb6cf308b +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/main/main_huangye.png.ab + assetBundleVariant: diff --git a/Assets/arts/textures/background/main/main_pingyuan.png b/Assets/arts/textures/background/main/main_pingyuan.png new file mode 100644 index 000000000..27d0a650e Binary files /dev/null and b/Assets/arts/textures/background/main/main_pingyuan.png differ diff --git a/Assets/arts/textures/background/main/main_pingyuan.png.meta b/Assets/arts/textures/background/main/main_pingyuan.png.meta new file mode 100644 index 000000000..124e8b893 --- /dev/null +++ b/Assets/arts/textures/background/main/main_pingyuan.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 987c59cb21a65e346a9dfc5727583feb +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/main/main_pingyuan.png.ab + assetBundleVariant: diff --git a/Assets/arts/textures/background/main/main_shamo.png b/Assets/arts/textures/background/main/main_shamo.png new file mode 100644 index 000000000..def347ccd Binary files /dev/null and b/Assets/arts/textures/background/main/main_shamo.png differ diff --git a/Assets/arts/textures/background/main/main_shamo.png.meta b/Assets/arts/textures/background/main/main_shamo.png.meta new file mode 100644 index 000000000..0fb02ffbe --- /dev/null +++ b/Assets/arts/textures/background/main/main_shamo.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 8170058d75008b84a8f965aa0c4b2989 +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/main/main_shamo.png.ab + assetBundleVariant: diff --git a/Assets/arts/textures/background/main/main_shenjing.png b/Assets/arts/textures/background/main/main_shenjing.png new file mode 100644 index 000000000..b77cf2d3b Binary files /dev/null and b/Assets/arts/textures/background/main/main_shenjing.png differ diff --git a/Assets/arts/textures/background/main/main_shenjing.png.meta b/Assets/arts/textures/background/main/main_shenjing.png.meta new file mode 100644 index 000000000..785f88d0c --- /dev/null +++ b/Assets/arts/textures/background/main/main_shenjing.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 61b4eedb3cd23a04298d5b3407b40371 +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/main/main_shenjing.png.ab + assetBundleVariant: diff --git a/Assets/arts/textures/background/main/main_shenmiao.png b/Assets/arts/textures/background/main/main_shenmiao.png new file mode 100644 index 000000000..efc121bf2 Binary files /dev/null and b/Assets/arts/textures/background/main/main_shenmiao.png differ diff --git a/Assets/arts/textures/background/main/main_shenmiao.png.meta b/Assets/arts/textures/background/main/main_shenmiao.png.meta new file mode 100644 index 000000000..ef7199f87 --- /dev/null +++ b/Assets/arts/textures/background/main/main_shenmiao.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 9af0af5839d05af41aa752adb7d3e51d +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/main/main_shenmiao.png.ab + assetBundleVariant: diff --git a/Assets/arts/textures/background/main/main_shenzhao.png b/Assets/arts/textures/background/main/main_shenzhao.png new file mode 100644 index 000000000..da813cfc2 Binary files /dev/null and b/Assets/arts/textures/background/main/main_shenzhao.png differ diff --git a/Assets/arts/textures/background/main/main_shenzhao.png.meta b/Assets/arts/textures/background/main/main_shenzhao.png.meta new file mode 100644 index 000000000..31585ac9f --- /dev/null +++ b/Assets/arts/textures/background/main/main_shenzhao.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 6f29c573ec9caa94abc645a458d43f65 +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/main/main_shenzhao.png.ab + assetBundleVariant: diff --git a/Assets/arts/textures/background/main/main_yiji.png b/Assets/arts/textures/background/main/main_yiji.png new file mode 100644 index 000000000..1cfce23a2 Binary files /dev/null and b/Assets/arts/textures/background/main/main_yiji.png differ diff --git a/Assets/arts/textures/background/main/main_yiji.png.meta b/Assets/arts/textures/background/main/main_yiji.png.meta new file mode 100644 index 000000000..19e970e02 --- /dev/null +++ b/Assets/arts/textures/background/main/main_yiji.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: c243d88c999b761409022d8c83084660 +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/main/main_yiji.png.ab + assetBundleVariant: diff --git a/Assets/arts/textures/background/main/main_yiyu.png b/Assets/arts/textures/background/main/main_yiyu.png new file mode 100644 index 000000000..9afba09ae Binary files /dev/null and b/Assets/arts/textures/background/main/main_yiyu.png differ diff --git a/Assets/arts/textures/background/main/main_yiyu.png.meta b/Assets/arts/textures/background/main/main_yiyu.png.meta new file mode 100644 index 000000000..c1979883f --- /dev/null +++ b/Assets/arts/textures/background/main/main_yiyu.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: fa98031156d274f46acfc58a4d4006f3 +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/main/main_yiyu.png.ab + assetBundleVariant: diff --git a/Assets/arts/textures/background/main/main_zhaoze.png b/Assets/arts/textures/background/main/main_zhaoze.png new file mode 100644 index 000000000..2c1c511b6 Binary files /dev/null and b/Assets/arts/textures/background/main/main_zhaoze.png differ diff --git a/Assets/arts/textures/background/main/main_zhaoze.png.meta b/Assets/arts/textures/background/main/main_zhaoze.png.meta new file mode 100644 index 000000000..ac8c0cb89 --- /dev/null +++ b/Assets/arts/textures/background/main/main_zhaoze.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 68e8f7051c97c8e47a8e0d30076d74c3 +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/main/main_zhaoze.png.ab + assetBundleVariant: diff --git a/Assets/arts/textures/background/main/pingyuan_m.png b/Assets/arts/textures/background/main/pingyuan_m.png new file mode 100644 index 000000000..3e6b9c6e2 Binary files /dev/null and b/Assets/arts/textures/background/main/pingyuan_m.png differ diff --git a/Assets/arts/textures/background/main/pingyuan_m.png.meta b/Assets/arts/textures/background/main/pingyuan_m.png.meta new file mode 100644 index 000000000..037ee90ea --- /dev/null +++ b/Assets/arts/textures/background/main/pingyuan_m.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 84331b1ca86562d4cb7d00ae7c9bb4ab +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: arts/textures/background/main/pingyuan_m.png.ab + assetBundleVariant: diff --git a/Assets/arts/textures/background/main/shamo_m.png b/Assets/arts/textures/background/main/shamo_m.png new file mode 100644 index 000000000..9228785c7 Binary files /dev/null and b/Assets/arts/textures/background/main/shamo_m.png differ diff --git a/Assets/arts/textures/background/main/shamo_m.png.meta b/Assets/arts/textures/background/main/shamo_m.png.meta new file mode 100644 index 000000000..fb853cbb3 --- /dev/null +++ b/Assets/arts/textures/background/main/shamo_m.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 44043f82c9575e847b1fc566df5d14cf +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: arts/textures/background/main/shamo_m.png.ab + assetBundleVariant: diff --git a/Assets/arts/textures/background/main/shenjing_m.png b/Assets/arts/textures/background/main/shenjing_m.png new file mode 100644 index 000000000..7894750a0 Binary files /dev/null and b/Assets/arts/textures/background/main/shenjing_m.png differ diff --git a/Assets/arts/textures/background/main/shenjing_m.png.meta b/Assets/arts/textures/background/main/shenjing_m.png.meta new file mode 100644 index 000000000..240ad8c3c --- /dev/null +++ b/Assets/arts/textures/background/main/shenjing_m.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 3251accb6368c7b49874234a63a93076 +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: arts/textures/background/main/shenjing_m.png.ab + assetBundleVariant: diff --git a/Assets/arts/textures/background/main/shenmiao_m.png b/Assets/arts/textures/background/main/shenmiao_m.png new file mode 100644 index 000000000..4134e76ca Binary files /dev/null and b/Assets/arts/textures/background/main/shenmiao_m.png differ diff --git a/Assets/arts/textures/background/main/shenmiao_m.png.meta b/Assets/arts/textures/background/main/shenmiao_m.png.meta new file mode 100644 index 000000000..e45a814ab --- /dev/null +++ b/Assets/arts/textures/background/main/shenmiao_m.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 38ba7386f816af24093e49f0761b9056 +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/main/shenmiao_m.png.ab + assetBundleVariant: diff --git a/Assets/arts/textures/background/main/shenzhao_m.png b/Assets/arts/textures/background/main/shenzhao_m.png new file mode 100644 index 000000000..cee1bb4d5 Binary files /dev/null and b/Assets/arts/textures/background/main/shenzhao_m.png differ diff --git a/Assets/arts/textures/background/main/shenzhao_m.png.meta b/Assets/arts/textures/background/main/shenzhao_m.png.meta new file mode 100644 index 000000000..ae0ada63a --- /dev/null +++ b/Assets/arts/textures/background/main/shenzhao_m.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: d9d2dcf1ff7ac6249a67eded379523ef +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: arts/textures/background/main/shenzhao_m.png.ab + assetBundleVariant: diff --git a/Assets/arts/textures/background/main/yiji_m.png b/Assets/arts/textures/background/main/yiji_m.png new file mode 100644 index 000000000..554f8c244 Binary files /dev/null and b/Assets/arts/textures/background/main/yiji_m.png differ diff --git a/Assets/arts/textures/background/main/yiji_m.png.meta b/Assets/arts/textures/background/main/yiji_m.png.meta new file mode 100644 index 000000000..7d1a1e8dc --- /dev/null +++ b/Assets/arts/textures/background/main/yiji_m.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 767236776820dc8468214c8925a556e7 +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: arts/textures/background/main/yiji_m.png.ab + assetBundleVariant: diff --git a/Assets/arts/textures/background/main/yiyu_m.png b/Assets/arts/textures/background/main/yiyu_m.png new file mode 100644 index 000000000..096ea0a3d Binary files /dev/null and b/Assets/arts/textures/background/main/yiyu_m.png differ diff --git a/Assets/arts/textures/background/main/yiyu_m.png.meta b/Assets/arts/textures/background/main/yiyu_m.png.meta new file mode 100644 index 000000000..49fea19eb --- /dev/null +++ b/Assets/arts/textures/background/main/yiyu_m.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: e759d3bb5d8401945948dcc595999e0c +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: arts/textures/background/main/yiyu_m.png.ab + assetBundleVariant: diff --git a/Assets/arts/textures/background/main/zhaoze_m.png b/Assets/arts/textures/background/main/zhaoze_m.png new file mode 100644 index 000000000..c1c19dcee Binary files /dev/null and b/Assets/arts/textures/background/main/zhaoze_m.png differ diff --git a/Assets/arts/textures/background/main/zhaoze_m.png.meta b/Assets/arts/textures/background/main/zhaoze_m.png.meta new file mode 100644 index 000000000..518e408d4 --- /dev/null +++ b/Assets/arts/textures/background/main/zhaoze_m.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: fd2c15b66996ce5479abfe63b4bfcfb0 +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/main/zhaoze_m.png.ab + assetBundleVariant: diff --git a/Assets/arts/textures/background/rate.meta b/Assets/arts/textures/background/rate.meta new file mode 100644 index 000000000..d9aee54a9 --- /dev/null +++ b/Assets/arts/textures/background/rate.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: aab5c9902f599ed458259afbc9eca44d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/arts/textures/background/recharge.meta b/Assets/arts/textures/background/recharge.meta new file mode 100644 index 000000000..6d1804b1d --- /dev/null +++ b/Assets/arts/textures/background/recharge.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 33cce73961088d240a6338fa58e6cdb6 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/arts/textures/background/smash.meta b/Assets/arts/textures/background/smash.meta new file mode 100644 index 000000000..80512b203 --- /dev/null +++ b/Assets/arts/textures/background/smash.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a8430dfd92a65a54f9731595a0f7cfe6 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/arts/textures/background/tower.meta b/Assets/arts/textures/background/tower.meta new file mode 100644 index 000000000..d9f79ac0f --- /dev/null +++ b/Assets/arts/textures/background/tower.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ec2187bd82296b14cb496a8f7e53d3c1 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/arts/textures/background/tutorial/tutorial_hero_1.png b/Assets/arts/textures/background/tutorial/tutorial_hero_1.png new file mode 100644 index 000000000..213a68570 Binary files /dev/null and b/Assets/arts/textures/background/tutorial/tutorial_hero_1.png differ diff --git a/Assets/arts/textures/background/tutorial/tutorial_hero_1.png.meta b/Assets/arts/textures/background/tutorial/tutorial_hero_1.png.meta new file mode 100644 index 000000000..c038778e7 --- /dev/null +++ b/Assets/arts/textures/background/tutorial/tutorial_hero_1.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 1e73c8317450f384c9ab5008a135fc51 +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/tutorial/tutorial_hero_1.png.ab + assetBundleVariant: diff --git a/Assets/arts/textures/background/valentine.meta b/Assets/arts/textures/background/valentine.meta new file mode 100644 index 000000000..6391ac9cf --- /dev/null +++ b/Assets/arts/textures/background/valentine.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3ef738890cadaa941bb33b789d8aaf00 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/arts/textures/battle/shadow.png b/Assets/arts/textures/battle/shadow.png deleted file mode 100644 index 41b53f8fc..000000000 Binary files a/Assets/arts/textures/battle/shadow.png and /dev/null differ diff --git a/Assets/arts/textures/ui/common.meta b/Assets/arts/textures/common.meta similarity index 77% rename from Assets/arts/textures/ui/common.meta rename to Assets/arts/textures/common.meta index 4402214bc..dc889d938 100644 --- a/Assets/arts/textures/ui/common.meta +++ b/Assets/arts/textures/common.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 9df8d25b54d843046a649757595482c9 +guid: c06ee5163b9fafc4ea217d0c93bcac36 folderAsset: yes DefaultImporter: externalObjects: {} diff --git a/Assets/arts/textures/ui/common/common_ad_1.png b/Assets/arts/textures/common/common_ad_1.png similarity index 100% rename from Assets/arts/textures/ui/common/common_ad_1.png rename to Assets/arts/textures/common/common_ad_1.png diff --git a/Assets/arts/textures/ui/common/common_ad_1.png.meta b/Assets/arts/textures/common/common_ad_1.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_ad_1.png.meta rename to Assets/arts/textures/common/common_ad_1.png.meta diff --git a/Assets/arts/textures/ui/common/common_ad_2.png b/Assets/arts/textures/common/common_ad_2.png similarity index 100% rename from Assets/arts/textures/ui/common/common_ad_2.png rename to Assets/arts/textures/common/common_ad_2.png diff --git a/Assets/arts/textures/ui/common/common_ad_2.png.meta b/Assets/arts/textures/common/common_ad_2.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_ad_2.png.meta rename to Assets/arts/textures/common/common_ad_2.png.meta diff --git a/Assets/arts/textures/ui/common/common_ad_3.png b/Assets/arts/textures/common/common_ad_3.png similarity index 100% rename from Assets/arts/textures/ui/common/common_ad_3.png rename to Assets/arts/textures/common/common_ad_3.png diff --git a/Assets/arts/textures/ui/common/common_ad_3.png.meta b/Assets/arts/textures/common/common_ad_3.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_ad_3.png.meta rename to Assets/arts/textures/common/common_ad_3.png.meta diff --git a/Assets/arts/textures/ui/common/common_ad_4.png b/Assets/arts/textures/common/common_ad_4.png similarity index 100% rename from Assets/arts/textures/ui/common/common_ad_4.png rename to Assets/arts/textures/common/common_ad_4.png diff --git a/Assets/arts/textures/ui/common/common_ad_4.png.meta b/Assets/arts/textures/common/common_ad_4.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_ad_4.png.meta rename to Assets/arts/textures/common/common_ad_4.png.meta diff --git a/Assets/arts/textures/ui/common/common_ad_5.png b/Assets/arts/textures/common/common_ad_5.png similarity index 100% rename from Assets/arts/textures/ui/common/common_ad_5.png rename to Assets/arts/textures/common/common_ad_5.png diff --git a/Assets/arts/textures/ui/common/common_ad_5.png.meta b/Assets/arts/textures/common/common_ad_5.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_ad_5.png.meta rename to Assets/arts/textures/common/common_ad_5.png.meta diff --git a/Assets/arts/textures/ui/common/common_ad_6.png b/Assets/arts/textures/common/common_ad_6.png similarity index 100% rename from Assets/arts/textures/ui/common/common_ad_6.png rename to Assets/arts/textures/common/common_ad_6.png diff --git a/Assets/arts/textures/ui/common/common_ad_6.png.meta b/Assets/arts/textures/common/common_ad_6.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_ad_6.png.meta rename to Assets/arts/textures/common/common_ad_6.png.meta diff --git a/Assets/arts/textures/ui/common/common_alpha.png b/Assets/arts/textures/common/common_alpha.png similarity index 100% rename from Assets/arts/textures/ui/common/common_alpha.png rename to Assets/arts/textures/common/common_alpha.png diff --git a/Assets/arts/textures/ui/common/common_alpha.png.meta b/Assets/arts/textures/common/common_alpha.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_alpha.png.meta rename to Assets/arts/textures/common/common_alpha.png.meta diff --git a/Assets/arts/textures/ui/common/common_arrow_1.png b/Assets/arts/textures/common/common_arrow_1.png similarity index 100% rename from Assets/arts/textures/ui/common/common_arrow_1.png rename to Assets/arts/textures/common/common_arrow_1.png diff --git a/Assets/arts/textures/ui/common/common_arrow_1.png.meta b/Assets/arts/textures/common/common_arrow_1.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_arrow_1.png.meta rename to Assets/arts/textures/common/common_arrow_1.png.meta diff --git a/Assets/arts/textures/ui/common/common_arrow_2.png b/Assets/arts/textures/common/common_arrow_2.png similarity index 100% rename from Assets/arts/textures/ui/common/common_arrow_2.png rename to Assets/arts/textures/common/common_arrow_2.png diff --git a/Assets/arts/textures/ui/common/common_arrow_2.png.meta b/Assets/arts/textures/common/common_arrow_2.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_arrow_2.png.meta rename to Assets/arts/textures/common/common_arrow_2.png.meta diff --git a/Assets/arts/textures/ui/common/common_arrow_3.png b/Assets/arts/textures/common/common_arrow_3.png similarity index 100% rename from Assets/arts/textures/ui/common/common_arrow_3.png rename to Assets/arts/textures/common/common_arrow_3.png diff --git a/Assets/arts/textures/ui/common/common_arrow_3.png.meta b/Assets/arts/textures/common/common_arrow_3.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_arrow_3.png.meta rename to Assets/arts/textures/common/common_arrow_3.png.meta diff --git a/Assets/arts/textures/ui/common/common_arrow_4.png b/Assets/arts/textures/common/common_arrow_4.png similarity index 100% rename from Assets/arts/textures/ui/common/common_arrow_4.png rename to Assets/arts/textures/common/common_arrow_4.png diff --git a/Assets/arts/textures/ui/common/common_arrow_4.png.meta b/Assets/arts/textures/common/common_arrow_4.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_arrow_4.png.meta rename to Assets/arts/textures/common/common_arrow_4.png.meta diff --git a/Assets/arts/textures/ui/common/common_bg_0.png b/Assets/arts/textures/common/common_bg_0.png similarity index 100% rename from Assets/arts/textures/ui/common/common_bg_0.png rename to Assets/arts/textures/common/common_bg_0.png diff --git a/Assets/arts/textures/ui/common/common_bg_0.png.meta b/Assets/arts/textures/common/common_bg_0.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_bg_0.png.meta rename to Assets/arts/textures/common/common_bg_0.png.meta diff --git a/Assets/arts/textures/ui/common/common_bg_1.png b/Assets/arts/textures/common/common_bg_1.png similarity index 100% rename from Assets/arts/textures/ui/common/common_bg_1.png rename to Assets/arts/textures/common/common_bg_1.png diff --git a/Assets/arts/textures/ui/common/common_bg_1.png.meta b/Assets/arts/textures/common/common_bg_1.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_bg_1.png.meta rename to Assets/arts/textures/common/common_bg_1.png.meta diff --git a/Assets/arts/textures/ui/common/common_bg_2.png b/Assets/arts/textures/common/common_bg_2.png similarity index 100% rename from Assets/arts/textures/ui/common/common_bg_2.png rename to Assets/arts/textures/common/common_bg_2.png diff --git a/Assets/arts/textures/ui/common/common_bg_2.png.meta b/Assets/arts/textures/common/common_bg_2.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_bg_2.png.meta rename to Assets/arts/textures/common/common_bg_2.png.meta diff --git a/Assets/arts/textures/ui/common/common_bg_3.png b/Assets/arts/textures/common/common_bg_3.png similarity index 100% rename from Assets/arts/textures/ui/common/common_bg_3.png rename to Assets/arts/textures/common/common_bg_3.png diff --git a/Assets/arts/textures/ui/common/common_bg_3.png.meta b/Assets/arts/textures/common/common_bg_3.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_bg_3.png.meta rename to Assets/arts/textures/common/common_bg_3.png.meta diff --git a/Assets/arts/textures/ui/common/common_bg_4.png b/Assets/arts/textures/common/common_bg_4.png similarity index 100% rename from Assets/arts/textures/ui/common/common_bg_4.png rename to Assets/arts/textures/common/common_bg_4.png diff --git a/Assets/arts/textures/ui/common/common_bg_4.png.meta b/Assets/arts/textures/common/common_bg_4.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_bg_4.png.meta rename to Assets/arts/textures/common/common_bg_4.png.meta diff --git a/Assets/arts/textures/ui/common/common_bg_5.png b/Assets/arts/textures/common/common_bg_5.png similarity index 100% rename from Assets/arts/textures/ui/common/common_bg_5.png rename to Assets/arts/textures/common/common_bg_5.png diff --git a/Assets/arts/textures/ui/common/common_bg_5.png.meta b/Assets/arts/textures/common/common_bg_5.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_bg_5.png.meta rename to Assets/arts/textures/common/common_bg_5.png.meta diff --git a/Assets/arts/textures/ui/common/common_bg_6.png b/Assets/arts/textures/common/common_bg_6.png similarity index 100% rename from Assets/arts/textures/ui/common/common_bg_6.png rename to Assets/arts/textures/common/common_bg_6.png diff --git a/Assets/arts/textures/ui/common/common_bg_6.png.meta b/Assets/arts/textures/common/common_bg_6.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_bg_6.png.meta rename to Assets/arts/textures/common/common_bg_6.png.meta diff --git a/Assets/arts/textures/ui/common/common_bg_7.png b/Assets/arts/textures/common/common_bg_7.png similarity index 100% rename from Assets/arts/textures/ui/common/common_bg_7.png rename to Assets/arts/textures/common/common_bg_7.png diff --git a/Assets/arts/textures/ui/common/common_bg_7.png.meta b/Assets/arts/textures/common/common_bg_7.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_bg_7.png.meta rename to Assets/arts/textures/common/common_bg_7.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_1.png b/Assets/arts/textures/common/common_board_1.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_1.png rename to Assets/arts/textures/common/common_board_1.png diff --git a/Assets/arts/textures/ui/common/common_board_1.png.meta b/Assets/arts/textures/common/common_board_1.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_1.png.meta rename to Assets/arts/textures/common/common_board_1.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_10.png b/Assets/arts/textures/common/common_board_10.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_10.png rename to Assets/arts/textures/common/common_board_10.png diff --git a/Assets/arts/textures/ui/common/common_board_10.png.meta b/Assets/arts/textures/common/common_board_10.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_10.png.meta rename to Assets/arts/textures/common/common_board_10.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_11.png b/Assets/arts/textures/common/common_board_11.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_11.png rename to Assets/arts/textures/common/common_board_11.png diff --git a/Assets/arts/textures/ui/common/common_board_11.png.meta b/Assets/arts/textures/common/common_board_11.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_11.png.meta rename to Assets/arts/textures/common/common_board_11.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_12.png b/Assets/arts/textures/common/common_board_12.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_12.png rename to Assets/arts/textures/common/common_board_12.png diff --git a/Assets/arts/textures/ui/common/common_board_12.png.meta b/Assets/arts/textures/common/common_board_12.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_12.png.meta rename to Assets/arts/textures/common/common_board_12.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_13.png b/Assets/arts/textures/common/common_board_13.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_13.png rename to Assets/arts/textures/common/common_board_13.png diff --git a/Assets/arts/textures/ui/common/common_board_13.png.meta b/Assets/arts/textures/common/common_board_13.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_13.png.meta rename to Assets/arts/textures/common/common_board_13.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_14.png b/Assets/arts/textures/common/common_board_14.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_14.png rename to Assets/arts/textures/common/common_board_14.png diff --git a/Assets/arts/textures/ui/common/common_board_14.png.meta b/Assets/arts/textures/common/common_board_14.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_14.png.meta rename to Assets/arts/textures/common/common_board_14.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_15.png b/Assets/arts/textures/common/common_board_15.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_15.png rename to Assets/arts/textures/common/common_board_15.png diff --git a/Assets/arts/textures/ui/common/common_board_15.png.meta b/Assets/arts/textures/common/common_board_15.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_15.png.meta rename to Assets/arts/textures/common/common_board_15.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_16.png b/Assets/arts/textures/common/common_board_16.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_16.png rename to Assets/arts/textures/common/common_board_16.png diff --git a/Assets/arts/textures/ui/common/common_board_16.png.meta b/Assets/arts/textures/common/common_board_16.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_16.png.meta rename to Assets/arts/textures/common/common_board_16.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_17.png b/Assets/arts/textures/common/common_board_17.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_17.png rename to Assets/arts/textures/common/common_board_17.png diff --git a/Assets/arts/textures/ui/common/common_board_17.png.meta b/Assets/arts/textures/common/common_board_17.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_17.png.meta rename to Assets/arts/textures/common/common_board_17.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_18.png b/Assets/arts/textures/common/common_board_18.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_18.png rename to Assets/arts/textures/common/common_board_18.png diff --git a/Assets/arts/textures/ui/common/common_board_18.png.meta b/Assets/arts/textures/common/common_board_18.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_18.png.meta rename to Assets/arts/textures/common/common_board_18.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_19.png b/Assets/arts/textures/common/common_board_19.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_19.png rename to Assets/arts/textures/common/common_board_19.png diff --git a/Assets/arts/textures/ui/common/common_board_19.png.meta b/Assets/arts/textures/common/common_board_19.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_19.png.meta rename to Assets/arts/textures/common/common_board_19.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_2.png b/Assets/arts/textures/common/common_board_2.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_2.png rename to Assets/arts/textures/common/common_board_2.png diff --git a/Assets/arts/textures/ui/common/common_board_2.png.meta b/Assets/arts/textures/common/common_board_2.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_2.png.meta rename to Assets/arts/textures/common/common_board_2.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_20.png b/Assets/arts/textures/common/common_board_20.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_20.png rename to Assets/arts/textures/common/common_board_20.png diff --git a/Assets/arts/textures/ui/common/common_board_20.png.meta b/Assets/arts/textures/common/common_board_20.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_20.png.meta rename to Assets/arts/textures/common/common_board_20.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_21.png b/Assets/arts/textures/common/common_board_21.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_21.png rename to Assets/arts/textures/common/common_board_21.png diff --git a/Assets/arts/textures/ui/common/common_board_21.png.meta b/Assets/arts/textures/common/common_board_21.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_21.png.meta rename to Assets/arts/textures/common/common_board_21.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_22.png b/Assets/arts/textures/common/common_board_22.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_22.png rename to Assets/arts/textures/common/common_board_22.png diff --git a/Assets/arts/textures/ui/common/common_board_22.png.meta b/Assets/arts/textures/common/common_board_22.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_22.png.meta rename to Assets/arts/textures/common/common_board_22.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_23.png b/Assets/arts/textures/common/common_board_23.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_23.png rename to Assets/arts/textures/common/common_board_23.png diff --git a/Assets/arts/textures/ui/common/common_board_23.png.meta b/Assets/arts/textures/common/common_board_23.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_23.png.meta rename to Assets/arts/textures/common/common_board_23.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_24.png b/Assets/arts/textures/common/common_board_24.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_24.png rename to Assets/arts/textures/common/common_board_24.png diff --git a/Assets/arts/textures/ui/common/common_board_24.png.meta b/Assets/arts/textures/common/common_board_24.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_24.png.meta rename to Assets/arts/textures/common/common_board_24.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_25.png b/Assets/arts/textures/common/common_board_25.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_25.png rename to Assets/arts/textures/common/common_board_25.png diff --git a/Assets/arts/textures/ui/common/common_board_25.png.meta b/Assets/arts/textures/common/common_board_25.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_25.png.meta rename to Assets/arts/textures/common/common_board_25.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_26.png b/Assets/arts/textures/common/common_board_26.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_26.png rename to Assets/arts/textures/common/common_board_26.png diff --git a/Assets/arts/textures/ui/common/common_board_26.png.meta b/Assets/arts/textures/common/common_board_26.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_26.png.meta rename to Assets/arts/textures/common/common_board_26.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_27.png b/Assets/arts/textures/common/common_board_27.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_27.png rename to Assets/arts/textures/common/common_board_27.png diff --git a/Assets/arts/textures/ui/common/common_board_27.png.meta b/Assets/arts/textures/common/common_board_27.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_27.png.meta rename to Assets/arts/textures/common/common_board_27.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_28.png b/Assets/arts/textures/common/common_board_28.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_28.png rename to Assets/arts/textures/common/common_board_28.png diff --git a/Assets/arts/textures/ui/common/common_board_28.png.meta b/Assets/arts/textures/common/common_board_28.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_28.png.meta rename to Assets/arts/textures/common/common_board_28.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_29.png b/Assets/arts/textures/common/common_board_29.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_29.png rename to Assets/arts/textures/common/common_board_29.png diff --git a/Assets/arts/textures/ui/common/common_board_29.png.meta b/Assets/arts/textures/common/common_board_29.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_29.png.meta rename to Assets/arts/textures/common/common_board_29.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_3.png b/Assets/arts/textures/common/common_board_3.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_3.png rename to Assets/arts/textures/common/common_board_3.png diff --git a/Assets/arts/textures/ui/common/common_board_3.png.meta b/Assets/arts/textures/common/common_board_3.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_3.png.meta rename to Assets/arts/textures/common/common_board_3.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_30.png b/Assets/arts/textures/common/common_board_30.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_30.png rename to Assets/arts/textures/common/common_board_30.png diff --git a/Assets/arts/textures/ui/common/common_board_30.png.meta b/Assets/arts/textures/common/common_board_30.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_30.png.meta rename to Assets/arts/textures/common/common_board_30.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_31.png b/Assets/arts/textures/common/common_board_31.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_31.png rename to Assets/arts/textures/common/common_board_31.png diff --git a/Assets/arts/textures/ui/common/common_board_31.png.meta b/Assets/arts/textures/common/common_board_31.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_31.png.meta rename to Assets/arts/textures/common/common_board_31.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_32.png b/Assets/arts/textures/common/common_board_32.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_32.png rename to Assets/arts/textures/common/common_board_32.png diff --git a/Assets/arts/textures/ui/common/common_board_32.png.meta b/Assets/arts/textures/common/common_board_32.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_32.png.meta rename to Assets/arts/textures/common/common_board_32.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_33.png b/Assets/arts/textures/common/common_board_33.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_33.png rename to Assets/arts/textures/common/common_board_33.png diff --git a/Assets/arts/textures/ui/common/common_board_33.png.meta b/Assets/arts/textures/common/common_board_33.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_33.png.meta rename to Assets/arts/textures/common/common_board_33.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_34.png b/Assets/arts/textures/common/common_board_34.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_34.png rename to Assets/arts/textures/common/common_board_34.png diff --git a/Assets/arts/textures/ui/common/common_board_34.png.meta b/Assets/arts/textures/common/common_board_34.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_34.png.meta rename to Assets/arts/textures/common/common_board_34.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_35.png b/Assets/arts/textures/common/common_board_35.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_35.png rename to Assets/arts/textures/common/common_board_35.png diff --git a/Assets/arts/textures/ui/common/common_board_35.png.meta b/Assets/arts/textures/common/common_board_35.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_35.png.meta rename to Assets/arts/textures/common/common_board_35.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_36.png b/Assets/arts/textures/common/common_board_36.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_36.png rename to Assets/arts/textures/common/common_board_36.png diff --git a/Assets/arts/textures/ui/common/common_board_36.png.meta b/Assets/arts/textures/common/common_board_36.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_36.png.meta rename to Assets/arts/textures/common/common_board_36.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_37.png b/Assets/arts/textures/common/common_board_37.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_37.png rename to Assets/arts/textures/common/common_board_37.png diff --git a/Assets/arts/textures/ui/common/common_board_37.png.meta b/Assets/arts/textures/common/common_board_37.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_37.png.meta rename to Assets/arts/textures/common/common_board_37.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_38.png b/Assets/arts/textures/common/common_board_38.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_38.png rename to Assets/arts/textures/common/common_board_38.png diff --git a/Assets/arts/textures/ui/common/common_board_38.png.meta b/Assets/arts/textures/common/common_board_38.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_38.png.meta rename to Assets/arts/textures/common/common_board_38.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_39.png b/Assets/arts/textures/common/common_board_39.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_39.png rename to Assets/arts/textures/common/common_board_39.png diff --git a/Assets/arts/textures/ui/common/common_board_39.png.meta b/Assets/arts/textures/common/common_board_39.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_39.png.meta rename to Assets/arts/textures/common/common_board_39.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_4.png b/Assets/arts/textures/common/common_board_4.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_4.png rename to Assets/arts/textures/common/common_board_4.png diff --git a/Assets/arts/textures/ui/common/common_board_4.png.meta b/Assets/arts/textures/common/common_board_4.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_4.png.meta rename to Assets/arts/textures/common/common_board_4.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_40.png b/Assets/arts/textures/common/common_board_40.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_40.png rename to Assets/arts/textures/common/common_board_40.png diff --git a/Assets/arts/textures/ui/common/common_board_40.png.meta b/Assets/arts/textures/common/common_board_40.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_40.png.meta rename to Assets/arts/textures/common/common_board_40.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_41.png b/Assets/arts/textures/common/common_board_41.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_41.png rename to Assets/arts/textures/common/common_board_41.png diff --git a/Assets/arts/textures/ui/common/common_board_41.png.meta b/Assets/arts/textures/common/common_board_41.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_41.png.meta rename to Assets/arts/textures/common/common_board_41.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_42.png b/Assets/arts/textures/common/common_board_42.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_42.png rename to Assets/arts/textures/common/common_board_42.png diff --git a/Assets/arts/textures/ui/common/common_board_42.png.meta b/Assets/arts/textures/common/common_board_42.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_42.png.meta rename to Assets/arts/textures/common/common_board_42.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_43.png b/Assets/arts/textures/common/common_board_43.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_43.png rename to Assets/arts/textures/common/common_board_43.png diff --git a/Assets/arts/textures/ui/common/common_board_43.png.meta b/Assets/arts/textures/common/common_board_43.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_43.png.meta rename to Assets/arts/textures/common/common_board_43.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_44.png b/Assets/arts/textures/common/common_board_44.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_44.png rename to Assets/arts/textures/common/common_board_44.png diff --git a/Assets/arts/textures/ui/common/common_board_44.png.meta b/Assets/arts/textures/common/common_board_44.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_44.png.meta rename to Assets/arts/textures/common/common_board_44.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_45.png b/Assets/arts/textures/common/common_board_45.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_45.png rename to Assets/arts/textures/common/common_board_45.png diff --git a/Assets/arts/textures/ui/common/common_board_45.png.meta b/Assets/arts/textures/common/common_board_45.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_45.png.meta rename to Assets/arts/textures/common/common_board_45.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_46.png b/Assets/arts/textures/common/common_board_46.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_46.png rename to Assets/arts/textures/common/common_board_46.png diff --git a/Assets/arts/textures/ui/common/common_board_46.png.meta b/Assets/arts/textures/common/common_board_46.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_46.png.meta rename to Assets/arts/textures/common/common_board_46.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_47.png b/Assets/arts/textures/common/common_board_47.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_47.png rename to Assets/arts/textures/common/common_board_47.png diff --git a/Assets/arts/textures/ui/common/common_board_47.png.meta b/Assets/arts/textures/common/common_board_47.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_47.png.meta rename to Assets/arts/textures/common/common_board_47.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_48.png b/Assets/arts/textures/common/common_board_48.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_48.png rename to Assets/arts/textures/common/common_board_48.png diff --git a/Assets/arts/textures/ui/common/common_board_48.png.meta b/Assets/arts/textures/common/common_board_48.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_48.png.meta rename to Assets/arts/textures/common/common_board_48.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_49.png b/Assets/arts/textures/common/common_board_49.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_49.png rename to Assets/arts/textures/common/common_board_49.png diff --git a/Assets/arts/textures/ui/common/common_board_49.png.meta b/Assets/arts/textures/common/common_board_49.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_49.png.meta rename to Assets/arts/textures/common/common_board_49.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_5.png b/Assets/arts/textures/common/common_board_5.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_5.png rename to Assets/arts/textures/common/common_board_5.png diff --git a/Assets/arts/textures/ui/common/common_board_5.png.meta b/Assets/arts/textures/common/common_board_5.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_5.png.meta rename to Assets/arts/textures/common/common_board_5.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_50.png b/Assets/arts/textures/common/common_board_50.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_50.png rename to Assets/arts/textures/common/common_board_50.png diff --git a/Assets/arts/textures/ui/common/common_board_50.png.meta b/Assets/arts/textures/common/common_board_50.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_50.png.meta rename to Assets/arts/textures/common/common_board_50.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_51.png b/Assets/arts/textures/common/common_board_51.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_51.png rename to Assets/arts/textures/common/common_board_51.png diff --git a/Assets/arts/textures/ui/common/common_board_51.png.meta b/Assets/arts/textures/common/common_board_51.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_51.png.meta rename to Assets/arts/textures/common/common_board_51.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_52.png b/Assets/arts/textures/common/common_board_52.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_52.png rename to Assets/arts/textures/common/common_board_52.png diff --git a/Assets/arts/textures/ui/common/common_board_52.png.meta b/Assets/arts/textures/common/common_board_52.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_52.png.meta rename to Assets/arts/textures/common/common_board_52.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_53.png b/Assets/arts/textures/common/common_board_53.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_53.png rename to Assets/arts/textures/common/common_board_53.png diff --git a/Assets/arts/textures/ui/common/common_board_53.png.meta b/Assets/arts/textures/common/common_board_53.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_53.png.meta rename to Assets/arts/textures/common/common_board_53.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_54.png b/Assets/arts/textures/common/common_board_54.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_54.png rename to Assets/arts/textures/common/common_board_54.png diff --git a/Assets/arts/textures/ui/common/common_board_54.png.meta b/Assets/arts/textures/common/common_board_54.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_54.png.meta rename to Assets/arts/textures/common/common_board_54.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_55.png b/Assets/arts/textures/common/common_board_55.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_55.png rename to Assets/arts/textures/common/common_board_55.png diff --git a/Assets/arts/textures/ui/common/common_board_55.png.meta b/Assets/arts/textures/common/common_board_55.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_55.png.meta rename to Assets/arts/textures/common/common_board_55.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_56.png b/Assets/arts/textures/common/common_board_56.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_56.png rename to Assets/arts/textures/common/common_board_56.png diff --git a/Assets/arts/textures/ui/common/common_board_56.png.meta b/Assets/arts/textures/common/common_board_56.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_56.png.meta rename to Assets/arts/textures/common/common_board_56.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_57.png b/Assets/arts/textures/common/common_board_57.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_57.png rename to Assets/arts/textures/common/common_board_57.png diff --git a/Assets/arts/textures/ui/common/common_board_57.png.meta b/Assets/arts/textures/common/common_board_57.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_57.png.meta rename to Assets/arts/textures/common/common_board_57.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_58.png b/Assets/arts/textures/common/common_board_58.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_58.png rename to Assets/arts/textures/common/common_board_58.png diff --git a/Assets/arts/textures/ui/common/common_board_58.png.meta b/Assets/arts/textures/common/common_board_58.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_58.png.meta rename to Assets/arts/textures/common/common_board_58.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_59.png b/Assets/arts/textures/common/common_board_59.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_59.png rename to Assets/arts/textures/common/common_board_59.png diff --git a/Assets/arts/textures/ui/common/common_board_59.png.meta b/Assets/arts/textures/common/common_board_59.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_59.png.meta rename to Assets/arts/textures/common/common_board_59.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_6.png b/Assets/arts/textures/common/common_board_6.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_6.png rename to Assets/arts/textures/common/common_board_6.png diff --git a/Assets/arts/textures/ui/common/common_board_6.png.meta b/Assets/arts/textures/common/common_board_6.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_6.png.meta rename to Assets/arts/textures/common/common_board_6.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_60.png b/Assets/arts/textures/common/common_board_60.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_60.png rename to Assets/arts/textures/common/common_board_60.png diff --git a/Assets/arts/textures/ui/common/common_board_60.png.meta b/Assets/arts/textures/common/common_board_60.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_60.png.meta rename to Assets/arts/textures/common/common_board_60.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_7.png b/Assets/arts/textures/common/common_board_7.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_7.png rename to Assets/arts/textures/common/common_board_7.png diff --git a/Assets/arts/textures/ui/common/common_board_7.png.meta b/Assets/arts/textures/common/common_board_7.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_7.png.meta rename to Assets/arts/textures/common/common_board_7.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_8.png b/Assets/arts/textures/common/common_board_8.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_8.png rename to Assets/arts/textures/common/common_board_8.png diff --git a/Assets/arts/textures/ui/common/common_board_8.png.meta b/Assets/arts/textures/common/common_board_8.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_8.png.meta rename to Assets/arts/textures/common/common_board_8.png.meta diff --git a/Assets/arts/textures/ui/common/common_board_9.png b/Assets/arts/textures/common/common_board_9.png similarity index 100% rename from Assets/arts/textures/ui/common/common_board_9.png rename to Assets/arts/textures/common/common_board_9.png diff --git a/Assets/arts/textures/ui/common/common_board_9.png.meta b/Assets/arts/textures/common/common_board_9.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_board_9.png.meta rename to Assets/arts/textures/common/common_board_9.png.meta diff --git a/Assets/arts/textures/ui/common/common_btn_1.png b/Assets/arts/textures/common/common_btn_1.png similarity index 100% rename from Assets/arts/textures/ui/common/common_btn_1.png rename to Assets/arts/textures/common/common_btn_1.png diff --git a/Assets/arts/textures/ui/common/common_btn_1.png.meta b/Assets/arts/textures/common/common_btn_1.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_btn_1.png.meta rename to Assets/arts/textures/common/common_btn_1.png.meta diff --git a/Assets/arts/textures/ui/common/common_btn_2.png b/Assets/arts/textures/common/common_btn_2.png similarity index 100% rename from Assets/arts/textures/ui/common/common_btn_2.png rename to Assets/arts/textures/common/common_btn_2.png diff --git a/Assets/arts/textures/ui/common/common_btn_2.png.meta b/Assets/arts/textures/common/common_btn_2.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_btn_2.png.meta rename to Assets/arts/textures/common/common_btn_2.png.meta diff --git a/Assets/arts/textures/ui/common/common_btn_3.png b/Assets/arts/textures/common/common_btn_3.png similarity index 100% rename from Assets/arts/textures/ui/common/common_btn_3.png rename to Assets/arts/textures/common/common_btn_3.png diff --git a/Assets/arts/textures/ui/common/common_btn_3.png.meta b/Assets/arts/textures/common/common_btn_3.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_btn_3.png.meta rename to Assets/arts/textures/common/common_btn_3.png.meta diff --git a/Assets/arts/textures/ui/common/common_btn_4.png b/Assets/arts/textures/common/common_btn_4.png similarity index 100% rename from Assets/arts/textures/ui/common/common_btn_4.png rename to Assets/arts/textures/common/common_btn_4.png diff --git a/Assets/arts/textures/ui/common/common_btn_4.png.meta b/Assets/arts/textures/common/common_btn_4.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_btn_4.png.meta rename to Assets/arts/textures/common/common_btn_4.png.meta diff --git a/Assets/arts/textures/ui/common/common_btn_5.png b/Assets/arts/textures/common/common_btn_5.png similarity index 100% rename from Assets/arts/textures/ui/common/common_btn_5.png rename to Assets/arts/textures/common/common_btn_5.png diff --git a/Assets/arts/textures/ui/common/common_btn_5.png.meta b/Assets/arts/textures/common/common_btn_5.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_btn_5.png.meta rename to Assets/arts/textures/common/common_btn_5.png.meta diff --git a/Assets/arts/textures/ui/common/common_btn_6.png b/Assets/arts/textures/common/common_btn_6.png similarity index 100% rename from Assets/arts/textures/ui/common/common_btn_6.png rename to Assets/arts/textures/common/common_btn_6.png diff --git a/Assets/arts/textures/ui/common/common_btn_6.png.meta b/Assets/arts/textures/common/common_btn_6.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_btn_6.png.meta rename to Assets/arts/textures/common/common_btn_6.png.meta diff --git a/Assets/arts/textures/ui/common/common_btn_7.png b/Assets/arts/textures/common/common_btn_7.png similarity index 100% rename from Assets/arts/textures/ui/common/common_btn_7.png rename to Assets/arts/textures/common/common_btn_7.png diff --git a/Assets/arts/textures/ui/common/common_btn_7.png.meta b/Assets/arts/textures/common/common_btn_7.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_btn_7.png.meta rename to Assets/arts/textures/common/common_btn_7.png.meta diff --git a/Assets/arts/textures/ui/common/common_btn_8.png b/Assets/arts/textures/common/common_btn_8.png similarity index 100% rename from Assets/arts/textures/ui/common/common_btn_8.png rename to Assets/arts/textures/common/common_btn_8.png diff --git a/Assets/arts/textures/ui/common/common_btn_8.png.meta b/Assets/arts/textures/common/common_btn_8.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_btn_8.png.meta rename to Assets/arts/textures/common/common_btn_8.png.meta diff --git a/Assets/arts/textures/ui/common/common_btn_buy.png b/Assets/arts/textures/common/common_btn_buy.png similarity index 100% rename from Assets/arts/textures/ui/common/common_btn_buy.png rename to Assets/arts/textures/common/common_btn_buy.png diff --git a/Assets/arts/textures/ui/common/common_btn_buy.png.meta b/Assets/arts/textures/common/common_btn_buy.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_btn_buy.png.meta rename to Assets/arts/textures/common/common_btn_buy.png.meta diff --git a/Assets/arts/textures/ui/common/common_btn_close.png b/Assets/arts/textures/common/common_btn_close.png similarity index 100% rename from Assets/arts/textures/ui/common/common_btn_close.png rename to Assets/arts/textures/common/common_btn_close.png diff --git a/Assets/arts/textures/ui/common/common_btn_close.png.meta b/Assets/arts/textures/common/common_btn_close.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_btn_close.png.meta rename to Assets/arts/textures/common/common_btn_close.png.meta diff --git a/Assets/arts/textures/ui/common/common_btn_grey.png b/Assets/arts/textures/common/common_btn_grey.png similarity index 100% rename from Assets/arts/textures/ui/common/common_btn_grey.png rename to Assets/arts/textures/common/common_btn_grey.png diff --git a/Assets/arts/textures/ui/common/common_btn_grey.png.meta b/Assets/arts/textures/common/common_btn_grey.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_btn_grey.png.meta rename to Assets/arts/textures/common/common_btn_grey.png.meta diff --git a/Assets/arts/textures/ui/common/common_check_1.png b/Assets/arts/textures/common/common_check_1.png similarity index 100% rename from Assets/arts/textures/ui/common/common_check_1.png rename to Assets/arts/textures/common/common_check_1.png diff --git a/Assets/arts/textures/ui/common/common_check_1.png.meta b/Assets/arts/textures/common/common_check_1.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_check_1.png.meta rename to Assets/arts/textures/common/common_check_1.png.meta diff --git a/Assets/arts/textures/ui/common/common_chest_1.png b/Assets/arts/textures/common/common_chest_1.png similarity index 100% rename from Assets/arts/textures/ui/common/common_chest_1.png rename to Assets/arts/textures/common/common_chest_1.png diff --git a/Assets/arts/textures/ui/common/common_chest_1.png.meta b/Assets/arts/textures/common/common_chest_1.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_chest_1.png.meta rename to Assets/arts/textures/common/common_chest_1.png.meta diff --git a/Assets/arts/textures/ui/common/common_chest_2.png b/Assets/arts/textures/common/common_chest_2.png similarity index 100% rename from Assets/arts/textures/ui/common/common_chest_2.png rename to Assets/arts/textures/common/common_chest_2.png diff --git a/Assets/arts/textures/ui/common/common_chest_2.png.meta b/Assets/arts/textures/common/common_chest_2.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_chest_2.png.meta rename to Assets/arts/textures/common/common_chest_2.png.meta diff --git a/Assets/arts/textures/ui/common/common_chest_3.png b/Assets/arts/textures/common/common_chest_3.png similarity index 100% rename from Assets/arts/textures/ui/common/common_chest_3.png rename to Assets/arts/textures/common/common_chest_3.png diff --git a/Assets/arts/textures/ui/common/common_chest_3.png.meta b/Assets/arts/textures/common/common_chest_3.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_chest_3.png.meta rename to Assets/arts/textures/common/common_chest_3.png.meta diff --git a/Assets/arts/textures/ui/common/common_circle.png b/Assets/arts/textures/common/common_circle.png similarity index 100% rename from Assets/arts/textures/ui/common/common_circle.png rename to Assets/arts/textures/common/common_circle.png diff --git a/Assets/arts/textures/ui/common/common_circle.png.meta b/Assets/arts/textures/common/common_circle.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_circle.png.meta rename to Assets/arts/textures/common/common_circle.png.meta diff --git a/Assets/arts/textures/ui/common/common_dec_1.png b/Assets/arts/textures/common/common_dec_1.png similarity index 100% rename from Assets/arts/textures/ui/common/common_dec_1.png rename to Assets/arts/textures/common/common_dec_1.png diff --git a/Assets/arts/textures/ui/common/common_dec_1.png.meta b/Assets/arts/textures/common/common_dec_1.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_dec_1.png.meta rename to Assets/arts/textures/common/common_dec_1.png.meta diff --git a/Assets/arts/textures/ui/common/common_dec_10.png b/Assets/arts/textures/common/common_dec_10.png similarity index 100% rename from Assets/arts/textures/ui/common/common_dec_10.png rename to Assets/arts/textures/common/common_dec_10.png diff --git a/Assets/arts/textures/ui/common/common_dec_10.png.meta b/Assets/arts/textures/common/common_dec_10.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_dec_10.png.meta rename to Assets/arts/textures/common/common_dec_10.png.meta diff --git a/Assets/arts/textures/ui/common/common_dec_11.png b/Assets/arts/textures/common/common_dec_11.png similarity index 100% rename from Assets/arts/textures/ui/common/common_dec_11.png rename to Assets/arts/textures/common/common_dec_11.png diff --git a/Assets/arts/textures/ui/common/common_dec_11.png.meta b/Assets/arts/textures/common/common_dec_11.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_dec_11.png.meta rename to Assets/arts/textures/common/common_dec_11.png.meta diff --git a/Assets/arts/textures/ui/common/common_dec_12.png b/Assets/arts/textures/common/common_dec_12.png similarity index 100% rename from Assets/arts/textures/ui/common/common_dec_12.png rename to Assets/arts/textures/common/common_dec_12.png diff --git a/Assets/arts/textures/ui/common/common_dec_12.png.meta b/Assets/arts/textures/common/common_dec_12.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_dec_12.png.meta rename to Assets/arts/textures/common/common_dec_12.png.meta diff --git a/Assets/arts/textures/ui/common/common_dec_13.png b/Assets/arts/textures/common/common_dec_13.png similarity index 100% rename from Assets/arts/textures/ui/common/common_dec_13.png rename to Assets/arts/textures/common/common_dec_13.png diff --git a/Assets/arts/textures/ui/common/common_dec_13.png.meta b/Assets/arts/textures/common/common_dec_13.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_dec_13.png.meta rename to Assets/arts/textures/common/common_dec_13.png.meta diff --git a/Assets/arts/textures/ui/common/common_dec_14.png b/Assets/arts/textures/common/common_dec_14.png similarity index 100% rename from Assets/arts/textures/ui/common/common_dec_14.png rename to Assets/arts/textures/common/common_dec_14.png diff --git a/Assets/arts/textures/ui/common/common_dec_14.png.meta b/Assets/arts/textures/common/common_dec_14.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_dec_14.png.meta rename to Assets/arts/textures/common/common_dec_14.png.meta diff --git a/Assets/arts/textures/ui/common/common_dec_15.png b/Assets/arts/textures/common/common_dec_15.png similarity index 100% rename from Assets/arts/textures/ui/common/common_dec_15.png rename to Assets/arts/textures/common/common_dec_15.png diff --git a/Assets/arts/textures/ui/common/common_dec_15.png.meta b/Assets/arts/textures/common/common_dec_15.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_dec_15.png.meta rename to Assets/arts/textures/common/common_dec_15.png.meta diff --git a/Assets/arts/textures/ui/common/common_dec_16.png b/Assets/arts/textures/common/common_dec_16.png similarity index 100% rename from Assets/arts/textures/ui/common/common_dec_16.png rename to Assets/arts/textures/common/common_dec_16.png diff --git a/Assets/arts/textures/ui/common/common_dec_16.png.meta b/Assets/arts/textures/common/common_dec_16.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_dec_16.png.meta rename to Assets/arts/textures/common/common_dec_16.png.meta diff --git a/Assets/arts/textures/ui/common/common_dec_17.png b/Assets/arts/textures/common/common_dec_17.png similarity index 100% rename from Assets/arts/textures/ui/common/common_dec_17.png rename to Assets/arts/textures/common/common_dec_17.png diff --git a/Assets/arts/textures/ui/common/common_dec_17.png.meta b/Assets/arts/textures/common/common_dec_17.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_dec_17.png.meta rename to Assets/arts/textures/common/common_dec_17.png.meta diff --git a/Assets/arts/textures/ui/common/common_dec_2.png b/Assets/arts/textures/common/common_dec_2.png similarity index 100% rename from Assets/arts/textures/ui/common/common_dec_2.png rename to Assets/arts/textures/common/common_dec_2.png diff --git a/Assets/arts/textures/ui/common/common_dec_2.png.meta b/Assets/arts/textures/common/common_dec_2.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_dec_2.png.meta rename to Assets/arts/textures/common/common_dec_2.png.meta diff --git a/Assets/arts/textures/ui/common/common_dec_3.png b/Assets/arts/textures/common/common_dec_3.png similarity index 100% rename from Assets/arts/textures/ui/common/common_dec_3.png rename to Assets/arts/textures/common/common_dec_3.png diff --git a/Assets/arts/textures/ui/common/common_dec_3.png.meta b/Assets/arts/textures/common/common_dec_3.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_dec_3.png.meta rename to Assets/arts/textures/common/common_dec_3.png.meta diff --git a/Assets/arts/textures/ui/common/common_dec_4.png b/Assets/arts/textures/common/common_dec_4.png similarity index 100% rename from Assets/arts/textures/ui/common/common_dec_4.png rename to Assets/arts/textures/common/common_dec_4.png diff --git a/Assets/arts/textures/ui/common/common_dec_4.png.meta b/Assets/arts/textures/common/common_dec_4.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_dec_4.png.meta rename to Assets/arts/textures/common/common_dec_4.png.meta diff --git a/Assets/arts/textures/ui/common/common_dec_5.png b/Assets/arts/textures/common/common_dec_5.png similarity index 100% rename from Assets/arts/textures/ui/common/common_dec_5.png rename to Assets/arts/textures/common/common_dec_5.png diff --git a/Assets/arts/textures/ui/common/common_dec_5.png.meta b/Assets/arts/textures/common/common_dec_5.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_dec_5.png.meta rename to Assets/arts/textures/common/common_dec_5.png.meta diff --git a/Assets/arts/textures/ui/common/common_dec_6.png b/Assets/arts/textures/common/common_dec_6.png similarity index 100% rename from Assets/arts/textures/ui/common/common_dec_6.png rename to Assets/arts/textures/common/common_dec_6.png diff --git a/Assets/arts/textures/ui/common/common_dec_6.png.meta b/Assets/arts/textures/common/common_dec_6.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_dec_6.png.meta rename to Assets/arts/textures/common/common_dec_6.png.meta diff --git a/Assets/arts/textures/ui/common/common_dec_7.png b/Assets/arts/textures/common/common_dec_7.png similarity index 100% rename from Assets/arts/textures/ui/common/common_dec_7.png rename to Assets/arts/textures/common/common_dec_7.png diff --git a/Assets/arts/textures/ui/common/common_dec_7.png.meta b/Assets/arts/textures/common/common_dec_7.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_dec_7.png.meta rename to Assets/arts/textures/common/common_dec_7.png.meta diff --git a/Assets/arts/textures/ui/common/common_dec_8.png b/Assets/arts/textures/common/common_dec_8.png similarity index 100% rename from Assets/arts/textures/ui/common/common_dec_8.png rename to Assets/arts/textures/common/common_dec_8.png diff --git a/Assets/arts/textures/ui/common/common_dec_8.png.meta b/Assets/arts/textures/common/common_dec_8.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_dec_8.png.meta rename to Assets/arts/textures/common/common_dec_8.png.meta diff --git a/Assets/arts/textures/ui/common/common_dec_9.png b/Assets/arts/textures/common/common_dec_9.png similarity index 100% rename from Assets/arts/textures/ui/common/common_dec_9.png rename to Assets/arts/textures/common/common_dec_9.png diff --git a/Assets/arts/textures/ui/common/common_dec_9.png.meta b/Assets/arts/textures/common/common_dec_9.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_dec_9.png.meta rename to Assets/arts/textures/common/common_dec_9.png.meta diff --git a/Assets/arts/textures/ui/common/common_dec_atk.png b/Assets/arts/textures/common/common_dec_atk.png similarity index 100% rename from Assets/arts/textures/ui/common/common_dec_atk.png rename to Assets/arts/textures/common/common_dec_atk.png diff --git a/Assets/arts/textures/ui/common/common_dec_atk.png.meta b/Assets/arts/textures/common/common_dec_atk.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_dec_atk.png.meta rename to Assets/arts/textures/common/common_dec_atk.png.meta diff --git a/Assets/arts/textures/ui/common/common_dec_time.png b/Assets/arts/textures/common/common_dec_time.png similarity index 100% rename from Assets/arts/textures/ui/common/common_dec_time.png rename to Assets/arts/textures/common/common_dec_time.png diff --git a/Assets/arts/textures/ui/common/common_dec_time.png.meta b/Assets/arts/textures/common/common_dec_time.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_dec_time.png.meta rename to Assets/arts/textures/common/common_dec_time.png.meta diff --git a/Assets/arts/textures/ui/common/common_eq_1.png b/Assets/arts/textures/common/common_eq_1.png similarity index 100% rename from Assets/arts/textures/ui/common/common_eq_1.png rename to Assets/arts/textures/common/common_eq_1.png diff --git a/Assets/arts/textures/ui/common/common_eq_1.png.meta b/Assets/arts/textures/common/common_eq_1.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_eq_1.png.meta rename to Assets/arts/textures/common/common_eq_1.png.meta diff --git a/Assets/arts/textures/ui/common/common_eq_2.png b/Assets/arts/textures/common/common_eq_2.png similarity index 100% rename from Assets/arts/textures/ui/common/common_eq_2.png rename to Assets/arts/textures/common/common_eq_2.png diff --git a/Assets/arts/textures/ui/common/common_eq_2.png.meta b/Assets/arts/textures/common/common_eq_2.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_eq_2.png.meta rename to Assets/arts/textures/common/common_eq_2.png.meta diff --git a/Assets/arts/textures/ui/common/common_eq_3.png b/Assets/arts/textures/common/common_eq_3.png similarity index 100% rename from Assets/arts/textures/ui/common/common_eq_3.png rename to Assets/arts/textures/common/common_eq_3.png diff --git a/Assets/arts/textures/ui/common/common_eq_3.png.meta b/Assets/arts/textures/common/common_eq_3.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_eq_3.png.meta rename to Assets/arts/textures/common/common_eq_3.png.meta diff --git a/Assets/arts/textures/ui/common/common_hand_1.png b/Assets/arts/textures/common/common_hand_1.png similarity index 100% rename from Assets/arts/textures/ui/common/common_hand_1.png rename to Assets/arts/textures/common/common_hand_1.png diff --git a/Assets/arts/textures/ui/common/common_hand_1.png.meta b/Assets/arts/textures/common/common_hand_1.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_hand_1.png.meta rename to Assets/arts/textures/common/common_hand_1.png.meta diff --git a/Assets/arts/textures/ui/common/common_hp.png b/Assets/arts/textures/common/common_hp.png similarity index 100% rename from Assets/arts/textures/ui/common/common_hp.png rename to Assets/arts/textures/common/common_hp.png diff --git a/Assets/arts/textures/ui/common/common_hp.png.meta b/Assets/arts/textures/common/common_hp.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_hp.png.meta rename to Assets/arts/textures/common/common_hp.png.meta diff --git a/Assets/arts/textures/ui/common/common_inf.png b/Assets/arts/textures/common/common_inf.png similarity index 100% rename from Assets/arts/textures/ui/common/common_inf.png rename to Assets/arts/textures/common/common_inf.png diff --git a/Assets/arts/textures/ui/common/common_inf.png.meta b/Assets/arts/textures/common/common_inf.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_inf.png.meta rename to Assets/arts/textures/common/common_inf.png.meta diff --git a/Assets/arts/textures/ui/common/common_inf_2.png b/Assets/arts/textures/common/common_inf_2.png similarity index 100% rename from Assets/arts/textures/ui/common/common_inf_2.png rename to Assets/arts/textures/common/common_inf_2.png diff --git a/Assets/arts/textures/ui/common/common_inf_2.png.meta b/Assets/arts/textures/common/common_inf_2.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_inf_2.png.meta rename to Assets/arts/textures/common/common_inf_2.png.meta diff --git a/Assets/arts/textures/ui/common/common_line_1.png b/Assets/arts/textures/common/common_line_1.png similarity index 100% rename from Assets/arts/textures/ui/common/common_line_1.png rename to Assets/arts/textures/common/common_line_1.png diff --git a/Assets/arts/textures/ui/common/common_line_1.png.meta b/Assets/arts/textures/common/common_line_1.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_line_1.png.meta rename to Assets/arts/textures/common/common_line_1.png.meta diff --git a/Assets/arts/textures/ui/common/common_line_2.png b/Assets/arts/textures/common/common_line_2.png similarity index 100% rename from Assets/arts/textures/ui/common/common_line_2.png rename to Assets/arts/textures/common/common_line_2.png diff --git a/Assets/arts/textures/ui/common/common_line_2.png.meta b/Assets/arts/textures/common/common_line_2.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_line_2.png.meta rename to Assets/arts/textures/common/common_line_2.png.meta diff --git a/Assets/arts/textures/ui/common/common_line_3.png b/Assets/arts/textures/common/common_line_3.png similarity index 100% rename from Assets/arts/textures/ui/common/common_line_3.png rename to Assets/arts/textures/common/common_line_3.png diff --git a/Assets/arts/textures/ui/common/common_line_3.png.meta b/Assets/arts/textures/common/common_line_3.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_line_3.png.meta rename to Assets/arts/textures/common/common_line_3.png.meta diff --git a/Assets/arts/textures/ui/common/common_line_4.png b/Assets/arts/textures/common/common_line_4.png similarity index 100% rename from Assets/arts/textures/ui/common/common_line_4.png rename to Assets/arts/textures/common/common_line_4.png diff --git a/Assets/arts/textures/ui/common/common_line_4.png.meta b/Assets/arts/textures/common/common_line_4.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_line_4.png.meta rename to Assets/arts/textures/common/common_line_4.png.meta diff --git a/Assets/arts/textures/ui/common/common_line_5.png b/Assets/arts/textures/common/common_line_5.png similarity index 100% rename from Assets/arts/textures/ui/common/common_line_5.png rename to Assets/arts/textures/common/common_line_5.png diff --git a/Assets/arts/textures/ui/common/common_line_5.png.meta b/Assets/arts/textures/common/common_line_5.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_line_5.png.meta rename to Assets/arts/textures/common/common_line_5.png.meta diff --git a/Assets/arts/textures/ui/common/common_line_6.png b/Assets/arts/textures/common/common_line_6.png similarity index 100% rename from Assets/arts/textures/ui/common/common_line_6.png rename to Assets/arts/textures/common/common_line_6.png diff --git a/Assets/arts/textures/ui/common/common_line_6.png.meta b/Assets/arts/textures/common/common_line_6.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_line_6.png.meta rename to Assets/arts/textures/common/common_line_6.png.meta diff --git a/Assets/arts/textures/ui/common/common_line_7.png b/Assets/arts/textures/common/common_line_7.png similarity index 100% rename from Assets/arts/textures/ui/common/common_line_7.png rename to Assets/arts/textures/common/common_line_7.png diff --git a/Assets/arts/textures/ui/common/common_line_7.png.meta b/Assets/arts/textures/common/common_line_7.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_line_7.png.meta rename to Assets/arts/textures/common/common_line_7.png.meta diff --git a/Assets/arts/textures/ui/common/common_line_8.png b/Assets/arts/textures/common/common_line_8.png similarity index 100% rename from Assets/arts/textures/ui/common/common_line_8.png rename to Assets/arts/textures/common/common_line_8.png diff --git a/Assets/arts/textures/ui/common/common_line_8.png.meta b/Assets/arts/textures/common/common_line_8.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_line_8.png.meta rename to Assets/arts/textures/common/common_line_8.png.meta diff --git a/Assets/arts/textures/ui/common/common_lock_1.png b/Assets/arts/textures/common/common_lock_1.png similarity index 100% rename from Assets/arts/textures/ui/common/common_lock_1.png rename to Assets/arts/textures/common/common_lock_1.png diff --git a/Assets/arts/textures/ui/common/common_lock_1.png.meta b/Assets/arts/textures/common/common_lock_1.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_lock_1.png.meta rename to Assets/arts/textures/common/common_lock_1.png.meta diff --git a/Assets/arts/textures/ui/common/common_lock_2.png b/Assets/arts/textures/common/common_lock_2.png similarity index 100% rename from Assets/arts/textures/ui/common/common_lock_2.png rename to Assets/arts/textures/common/common_lock_2.png diff --git a/Assets/arts/textures/ui/common/common_lock_2.png.meta b/Assets/arts/textures/common/common_lock_2.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_lock_2.png.meta rename to Assets/arts/textures/common/common_lock_2.png.meta diff --git a/Assets/arts/textures/ui/common/common_menu_1.png b/Assets/arts/textures/common/common_menu_1.png similarity index 100% rename from Assets/arts/textures/ui/common/common_menu_1.png rename to Assets/arts/textures/common/common_menu_1.png diff --git a/Assets/arts/textures/ui/common/common_menu_1.png.meta b/Assets/arts/textures/common/common_menu_1.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_menu_1.png.meta rename to Assets/arts/textures/common/common_menu_1.png.meta diff --git a/Assets/arts/textures/ui/common/common_menu_2.png b/Assets/arts/textures/common/common_menu_2.png similarity index 100% rename from Assets/arts/textures/ui/common/common_menu_2.png rename to Assets/arts/textures/common/common_menu_2.png diff --git a/Assets/arts/textures/ui/common/common_menu_2.png.meta b/Assets/arts/textures/common/common_menu_2.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_menu_2.png.meta rename to Assets/arts/textures/common/common_menu_2.png.meta diff --git a/Assets/arts/textures/ui/common/common_menu_3.png b/Assets/arts/textures/common/common_menu_3.png similarity index 100% rename from Assets/arts/textures/ui/common/common_menu_3.png rename to Assets/arts/textures/common/common_menu_3.png diff --git a/Assets/arts/textures/ui/common/common_menu_3.png.meta b/Assets/arts/textures/common/common_menu_3.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_menu_3.png.meta rename to Assets/arts/textures/common/common_menu_3.png.meta diff --git a/Assets/arts/textures/ui/common/common_menu_4.png b/Assets/arts/textures/common/common_menu_4.png similarity index 100% rename from Assets/arts/textures/ui/common/common_menu_4.png rename to Assets/arts/textures/common/common_menu_4.png diff --git a/Assets/arts/textures/ui/common/common_menu_4.png.meta b/Assets/arts/textures/common/common_menu_4.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_menu_4.png.meta rename to Assets/arts/textures/common/common_menu_4.png.meta diff --git a/Assets/arts/textures/ui/common/common_menu_5.png b/Assets/arts/textures/common/common_menu_5.png similarity index 100% rename from Assets/arts/textures/ui/common/common_menu_5.png rename to Assets/arts/textures/common/common_menu_5.png diff --git a/Assets/arts/textures/ui/common/common_menu_5.png.meta b/Assets/arts/textures/common/common_menu_5.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_menu_5.png.meta rename to Assets/arts/textures/common/common_menu_5.png.meta diff --git a/Assets/arts/textures/ui/common/common_menu_6.png b/Assets/arts/textures/common/common_menu_6.png similarity index 100% rename from Assets/arts/textures/ui/common/common_menu_6.png rename to Assets/arts/textures/common/common_menu_6.png diff --git a/Assets/arts/textures/ui/common/common_menu_6.png.meta b/Assets/arts/textures/common/common_menu_6.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_menu_6.png.meta rename to Assets/arts/textures/common/common_menu_6.png.meta diff --git a/Assets/arts/textures/ui/common/common_menu_7.png b/Assets/arts/textures/common/common_menu_7.png similarity index 100% rename from Assets/arts/textures/ui/common/common_menu_7.png rename to Assets/arts/textures/common/common_menu_7.png diff --git a/Assets/arts/textures/ui/common/common_menu_7.png.meta b/Assets/arts/textures/common/common_menu_7.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_menu_7.png.meta rename to Assets/arts/textures/common/common_menu_7.png.meta diff --git a/Assets/arts/textures/ui/common/common_menu_bg_1.png b/Assets/arts/textures/common/common_menu_bg_1.png similarity index 100% rename from Assets/arts/textures/ui/common/common_menu_bg_1.png rename to Assets/arts/textures/common/common_menu_bg_1.png diff --git a/Assets/arts/textures/ui/common/common_menu_bg_1.png.meta b/Assets/arts/textures/common/common_menu_bg_1.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_menu_bg_1.png.meta rename to Assets/arts/textures/common/common_menu_bg_1.png.meta diff --git a/Assets/arts/textures/ui/common/common_menu_bg_2.png b/Assets/arts/textures/common/common_menu_bg_2.png similarity index 100% rename from Assets/arts/textures/ui/common/common_menu_bg_2.png rename to Assets/arts/textures/common/common_menu_bg_2.png diff --git a/Assets/arts/textures/ui/common/common_menu_bg_2.png.meta b/Assets/arts/textures/common/common_menu_bg_2.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_menu_bg_2.png.meta rename to Assets/arts/textures/common/common_menu_bg_2.png.meta diff --git a/Assets/arts/textures/ui/common/common_menu_bg_3.png b/Assets/arts/textures/common/common_menu_bg_3.png similarity index 100% rename from Assets/arts/textures/ui/common/common_menu_bg_3.png rename to Assets/arts/textures/common/common_menu_bg_3.png diff --git a/Assets/arts/textures/ui/common/common_menu_bg_3.png.meta b/Assets/arts/textures/common/common_menu_bg_3.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_menu_bg_3.png.meta rename to Assets/arts/textures/common/common_menu_bg_3.png.meta diff --git a/Assets/arts/textures/ui/common/common_point.png b/Assets/arts/textures/common/common_point.png similarity index 100% rename from Assets/arts/textures/ui/common/common_point.png rename to Assets/arts/textures/common/common_point.png diff --git a/Assets/arts/textures/ui/common/common_point.png.meta b/Assets/arts/textures/common/common_point.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_point.png.meta rename to Assets/arts/textures/common/common_point.png.meta diff --git a/Assets/arts/textures/ui/common/common_progress_1.png b/Assets/arts/textures/common/common_progress_1.png similarity index 100% rename from Assets/arts/textures/ui/common/common_progress_1.png rename to Assets/arts/textures/common/common_progress_1.png diff --git a/Assets/arts/textures/ui/common/common_progress_1.png.meta b/Assets/arts/textures/common/common_progress_1.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_progress_1.png.meta rename to Assets/arts/textures/common/common_progress_1.png.meta diff --git a/Assets/arts/textures/ui/common/common_progress_2.png b/Assets/arts/textures/common/common_progress_2.png similarity index 100% rename from Assets/arts/textures/ui/common/common_progress_2.png rename to Assets/arts/textures/common/common_progress_2.png diff --git a/Assets/arts/textures/ui/common/common_progress_2.png.meta b/Assets/arts/textures/common/common_progress_2.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_progress_2.png.meta rename to Assets/arts/textures/common/common_progress_2.png.meta diff --git a/Assets/arts/textures/ui/common/common_progress_3.png b/Assets/arts/textures/common/common_progress_3.png similarity index 100% rename from Assets/arts/textures/ui/common/common_progress_3.png rename to Assets/arts/textures/common/common_progress_3.png diff --git a/Assets/arts/textures/ui/common/common_progress_3.png.meta b/Assets/arts/textures/common/common_progress_3.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_progress_3.png.meta rename to Assets/arts/textures/common/common_progress_3.png.meta diff --git a/Assets/arts/textures/ui/common/common_progress_4.png b/Assets/arts/textures/common/common_progress_4.png similarity index 100% rename from Assets/arts/textures/ui/common/common_progress_4.png rename to Assets/arts/textures/common/common_progress_4.png diff --git a/Assets/arts/textures/ui/common/common_progress_4.png.meta b/Assets/arts/textures/common/common_progress_4.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_progress_4.png.meta rename to Assets/arts/textures/common/common_progress_4.png.meta diff --git a/Assets/arts/textures/ui/common/common_progress_5.png b/Assets/arts/textures/common/common_progress_5.png similarity index 100% rename from Assets/arts/textures/ui/common/common_progress_5.png rename to Assets/arts/textures/common/common_progress_5.png diff --git a/Assets/arts/textures/ui/common/common_progress_5.png.meta b/Assets/arts/textures/common/common_progress_5.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_progress_5.png.meta rename to Assets/arts/textures/common/common_progress_5.png.meta diff --git a/Assets/arts/textures/ui/common/common_progress_6.png b/Assets/arts/textures/common/common_progress_6.png similarity index 100% rename from Assets/arts/textures/ui/common/common_progress_6.png rename to Assets/arts/textures/common/common_progress_6.png diff --git a/Assets/arts/textures/ui/common/common_progress_6.png.meta b/Assets/arts/textures/common/common_progress_6.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_progress_6.png.meta rename to Assets/arts/textures/common/common_progress_6.png.meta diff --git a/Assets/arts/textures/ui/common/common_progress_bg_1.png b/Assets/arts/textures/common/common_progress_bg_1.png similarity index 100% rename from Assets/arts/textures/ui/common/common_progress_bg_1.png rename to Assets/arts/textures/common/common_progress_bg_1.png diff --git a/Assets/arts/textures/ui/common/common_progress_bg_1.png.meta b/Assets/arts/textures/common/common_progress_bg_1.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_progress_bg_1.png.meta rename to Assets/arts/textures/common/common_progress_bg_1.png.meta diff --git a/Assets/arts/textures/ui/common/common_progress_bg_2.png b/Assets/arts/textures/common/common_progress_bg_2.png similarity index 100% rename from Assets/arts/textures/ui/common/common_progress_bg_2.png rename to Assets/arts/textures/common/common_progress_bg_2.png diff --git a/Assets/arts/textures/ui/common/common_progress_bg_2.png.meta b/Assets/arts/textures/common/common_progress_bg_2.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_progress_bg_2.png.meta rename to Assets/arts/textures/common/common_progress_bg_2.png.meta diff --git a/Assets/arts/textures/ui/common/common_progress_bg_3.png b/Assets/arts/textures/common/common_progress_bg_3.png similarity index 100% rename from Assets/arts/textures/ui/common/common_progress_bg_3.png rename to Assets/arts/textures/common/common_progress_bg_3.png diff --git a/Assets/arts/textures/ui/common/common_progress_bg_3.png.meta b/Assets/arts/textures/common/common_progress_bg_3.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_progress_bg_3.png.meta rename to Assets/arts/textures/common/common_progress_bg_3.png.meta diff --git a/Assets/arts/textures/ui/common/common_progress_bg_4.png b/Assets/arts/textures/common/common_progress_bg_4.png similarity index 100% rename from Assets/arts/textures/ui/common/common_progress_bg_4.png rename to Assets/arts/textures/common/common_progress_bg_4.png diff --git a/Assets/arts/textures/ui/common/common_progress_bg_4.png.meta b/Assets/arts/textures/common/common_progress_bg_4.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_progress_bg_4.png.meta rename to Assets/arts/textures/common/common_progress_bg_4.png.meta diff --git a/Assets/arts/textures/ui/common/common_progress_bg_5.png b/Assets/arts/textures/common/common_progress_bg_5.png similarity index 100% rename from Assets/arts/textures/ui/common/common_progress_bg_5.png rename to Assets/arts/textures/common/common_progress_bg_5.png diff --git a/Assets/arts/textures/ui/common/common_progress_bg_5.png.meta b/Assets/arts/textures/common/common_progress_bg_5.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_progress_bg_5.png.meta rename to Assets/arts/textures/common/common_progress_bg_5.png.meta diff --git a/Assets/arts/textures/ui/common/common_rank_1.png b/Assets/arts/textures/common/common_rank_1.png similarity index 100% rename from Assets/arts/textures/ui/common/common_rank_1.png rename to Assets/arts/textures/common/common_rank_1.png diff --git a/Assets/arts/textures/ui/common/common_rank_1.png.meta b/Assets/arts/textures/common/common_rank_1.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_rank_1.png.meta rename to Assets/arts/textures/common/common_rank_1.png.meta diff --git a/Assets/arts/textures/ui/common/common_rank_2.png b/Assets/arts/textures/common/common_rank_2.png similarity index 100% rename from Assets/arts/textures/ui/common/common_rank_2.png rename to Assets/arts/textures/common/common_rank_2.png diff --git a/Assets/arts/textures/ui/common/common_rank_2.png.meta b/Assets/arts/textures/common/common_rank_2.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_rank_2.png.meta rename to Assets/arts/textures/common/common_rank_2.png.meta diff --git a/Assets/arts/textures/ui/common/common_rank_3.png b/Assets/arts/textures/common/common_rank_3.png similarity index 100% rename from Assets/arts/textures/ui/common/common_rank_3.png rename to Assets/arts/textures/common/common_rank_3.png diff --git a/Assets/arts/textures/ui/common/common_rank_3.png.meta b/Assets/arts/textures/common/common_rank_3.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_rank_3.png.meta rename to Assets/arts/textures/common/common_rank_3.png.meta diff --git a/Assets/arts/textures/ui/common/common_refurbish.png b/Assets/arts/textures/common/common_refurbish.png similarity index 100% rename from Assets/arts/textures/ui/common/common_refurbish.png rename to Assets/arts/textures/common/common_refurbish.png diff --git a/Assets/arts/textures/ui/common/common_refurbish.png.meta b/Assets/arts/textures/common/common_refurbish.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_refurbish.png.meta rename to Assets/arts/textures/common/common_refurbish.png.meta diff --git a/Assets/arts/textures/ui/common/common_title_1.png b/Assets/arts/textures/common/common_title_1.png similarity index 100% rename from Assets/arts/textures/ui/common/common_title_1.png rename to Assets/arts/textures/common/common_title_1.png diff --git a/Assets/arts/textures/ui/common/common_title_1.png.meta b/Assets/arts/textures/common/common_title_1.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_title_1.png.meta rename to Assets/arts/textures/common/common_title_1.png.meta diff --git a/Assets/arts/textures/ui/common/common_title_2.png b/Assets/arts/textures/common/common_title_2.png similarity index 100% rename from Assets/arts/textures/ui/common/common_title_2.png rename to Assets/arts/textures/common/common_title_2.png diff --git a/Assets/arts/textures/ui/common/common_title_2.png.meta b/Assets/arts/textures/common/common_title_2.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_title_2.png.meta rename to Assets/arts/textures/common/common_title_2.png.meta diff --git a/Assets/arts/textures/ui/common/common_title_3.png b/Assets/arts/textures/common/common_title_3.png similarity index 100% rename from Assets/arts/textures/ui/common/common_title_3.png rename to Assets/arts/textures/common/common_title_3.png diff --git a/Assets/arts/textures/ui/common/common_title_3.png.meta b/Assets/arts/textures/common/common_title_3.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_title_3.png.meta rename to Assets/arts/textures/common/common_title_3.png.meta diff --git a/Assets/arts/textures/ui/common/common_title_4.png b/Assets/arts/textures/common/common_title_4.png similarity index 100% rename from Assets/arts/textures/ui/common/common_title_4.png rename to Assets/arts/textures/common/common_title_4.png diff --git a/Assets/arts/textures/ui/common/common_title_4.png.meta b/Assets/arts/textures/common/common_title_4.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_title_4.png.meta rename to Assets/arts/textures/common/common_title_4.png.meta diff --git a/Assets/arts/textures/ui/common/common_title_5.png b/Assets/arts/textures/common/common_title_5.png similarity index 100% rename from Assets/arts/textures/ui/common/common_title_5.png rename to Assets/arts/textures/common/common_title_5.png diff --git a/Assets/arts/textures/ui/common/common_title_5.png.meta b/Assets/arts/textures/common/common_title_5.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_title_5.png.meta rename to Assets/arts/textures/common/common_title_5.png.meta diff --git a/Assets/arts/textures/ui/common/common_title_6.png b/Assets/arts/textures/common/common_title_6.png similarity index 100% rename from Assets/arts/textures/ui/common/common_title_6.png rename to Assets/arts/textures/common/common_title_6.png diff --git a/Assets/arts/textures/ui/common/common_title_6.png.meta b/Assets/arts/textures/common/common_title_6.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_title_6.png.meta rename to Assets/arts/textures/common/common_title_6.png.meta diff --git a/Assets/arts/textures/ui/common/common_title_7.png b/Assets/arts/textures/common/common_title_7.png similarity index 100% rename from Assets/arts/textures/ui/common/common_title_7.png rename to Assets/arts/textures/common/common_title_7.png diff --git a/Assets/arts/textures/ui/common/common_title_7.png.meta b/Assets/arts/textures/common/common_title_7.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_title_7.png.meta rename to Assets/arts/textures/common/common_title_7.png.meta diff --git a/Assets/arts/textures/ui/common/common_title_8.png b/Assets/arts/textures/common/common_title_8.png similarity index 100% rename from Assets/arts/textures/ui/common/common_title_8.png rename to Assets/arts/textures/common/common_title_8.png diff --git a/Assets/arts/textures/ui/common/common_title_8.png.meta b/Assets/arts/textures/common/common_title_8.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_title_8.png.meta rename to Assets/arts/textures/common/common_title_8.png.meta diff --git a/Assets/arts/textures/ui/common/common_toast.png b/Assets/arts/textures/common/common_toast.png similarity index 100% rename from Assets/arts/textures/ui/common/common_toast.png rename to Assets/arts/textures/common/common_toast.png diff --git a/Assets/arts/textures/ui/common/common_toast.png.meta b/Assets/arts/textures/common/common_toast.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_toast.png.meta rename to Assets/arts/textures/common/common_toast.png.meta diff --git a/Assets/arts/textures/ui/common/common_x.png b/Assets/arts/textures/common/common_x.png similarity index 100% rename from Assets/arts/textures/ui/common/common_x.png rename to Assets/arts/textures/common/common_x.png diff --git a/Assets/arts/textures/ui/common/common_x.png.meta b/Assets/arts/textures/common/common_x.png.meta similarity index 100% rename from Assets/arts/textures/ui/common/common_x.png.meta rename to Assets/arts/textures/common/common_x.png.meta diff --git a/Assets/arts/textures/icon/accessories.meta b/Assets/arts/textures/icon/accessories.meta new file mode 100644 index 000000000..9e94acd4d --- /dev/null +++ b/Assets/arts/textures/icon/accessories.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2a492091b9bb05344859031df141021b +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/arts/textures/icon/accessories_skill.meta b/Assets/arts/textures/icon/accessories_skill.meta new file mode 100644 index 000000000..c995bd389 --- /dev/null +++ b/Assets/arts/textures/icon/accessories_skill.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1cf5b6e6b398faf4486eb717622168ed +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/arts/textures/icon/adventure_jewelry_buff.meta b/Assets/arts/textures/icon/adventure_jewelry_buff.meta new file mode 100644 index 000000000..077167ed8 --- /dev/null +++ b/Assets/arts/textures/icon/adventure_jewelry_buff.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: aa94f0ba1d71267489b50022c573a999 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/arts/textures/icon/avatar.meta b/Assets/arts/textures/icon/avatar.meta new file mode 100644 index 000000000..e4ab215cb --- /dev/null +++ b/Assets/arts/textures/icon/avatar.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 128782eea4a8172438ebf2615d99a6f9 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/arts/textures/icon/equip.meta b/Assets/arts/textures/icon/equip.meta new file mode 100644 index 000000000..b0c0fc680 --- /dev/null +++ b/Assets/arts/textures/icon/equip.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 99bc65c39362c884fa8520e82b18f0a6 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/arts/textures/icon/hero.meta b/Assets/arts/textures/icon/hero.meta new file mode 100644 index 000000000..c213f782f --- /dev/null +++ b/Assets/arts/textures/icon/hero.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 49e818a8cf8298645a69fe6def09a4c0 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/arts/textures/icon/item/100.png b/Assets/arts/textures/icon/item/100.png new file mode 100644 index 000000000..20720fd15 Binary files /dev/null and b/Assets/arts/textures/icon/item/100.png differ diff --git a/Assets/arts/textures/ui/battle/battle_bg_3.png.meta b/Assets/arts/textures/icon/item/100.png.meta similarity index 97% rename from Assets/arts/textures/ui/battle/battle_bg_3.png.meta rename to Assets/arts/textures/icon/item/100.png.meta index 2a9017ba1..3886ecd1c 100644 --- a/Assets/arts/textures/ui/battle/battle_bg_3.png.meta +++ b/Assets/arts/textures/icon/item/100.png.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: cf41f2999295d764fa7fdef391b54d3f +guid: 3d679cef10da8db4c9f220c739d2d00c TextureImporter: internalIDToNameTable: [] externalObjects: {} @@ -128,5 +128,5 @@ TextureImporter: pSDRemoveMatte: 0 pSDShowRemoveMatteOption: 0 userData: - assetBundleName: arts/textures/ui/battle.ab + assetBundleName: arts/textures/icon/item.ab assetBundleVariant: diff --git a/Assets/arts/textures/icon/item/1000.png b/Assets/arts/textures/icon/item/1000.png new file mode 100644 index 000000000..babe30be3 Binary files /dev/null and b/Assets/arts/textures/icon/item/1000.png differ diff --git a/Assets/arts/textures/ui/battle/battle_bg_2.png.meta b/Assets/arts/textures/icon/item/1000.png.meta similarity index 97% rename from Assets/arts/textures/ui/battle/battle_bg_2.png.meta rename to Assets/arts/textures/icon/item/1000.png.meta index c231b63fa..490814a33 100644 --- a/Assets/arts/textures/ui/battle/battle_bg_2.png.meta +++ b/Assets/arts/textures/icon/item/1000.png.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: a2066257f5dc81e4c8516ea891df7915 +guid: cc781dadc3f9db04ab34bee07fa1bb6d TextureImporter: internalIDToNameTable: [] externalObjects: {} @@ -128,5 +128,5 @@ TextureImporter: pSDRemoveMatte: 0 pSDShowRemoveMatteOption: 0 userData: - assetBundleName: arts/textures/ui/battle.ab + assetBundleName: arts/textures/icon/item.ab assetBundleVariant: diff --git a/Assets/arts/textures/icon/item/1001.png b/Assets/arts/textures/icon/item/1001.png new file mode 100644 index 000000000..e81f5bc85 Binary files /dev/null and b/Assets/arts/textures/icon/item/1001.png differ diff --git a/Assets/arts/textures/ui/battle/battle_auto.png.meta b/Assets/arts/textures/icon/item/1001.png.meta similarity index 97% rename from Assets/arts/textures/ui/battle/battle_auto.png.meta rename to Assets/arts/textures/icon/item/1001.png.meta index 1ca8d95e9..56334bd80 100644 --- a/Assets/arts/textures/ui/battle/battle_auto.png.meta +++ b/Assets/arts/textures/icon/item/1001.png.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 6654a043f79f44943989077d3f6b67bd +guid: 3cb5d3120778d8f47a0f584a180c0b7a TextureImporter: internalIDToNameTable: [] externalObjects: {} @@ -128,5 +128,5 @@ TextureImporter: pSDRemoveMatte: 0 pSDShowRemoveMatteOption: 0 userData: - assetBundleName: arts/textures/ui/battle.ab + assetBundleName: arts/textures/icon/item.ab assetBundleVariant: diff --git a/Assets/arts/textures/icon/item/101.png b/Assets/arts/textures/icon/item/101.png new file mode 100644 index 000000000..e936633f1 Binary files /dev/null and b/Assets/arts/textures/icon/item/101.png differ diff --git a/Assets/arts/textures/ui/battle/battle_auto_bg.png.meta b/Assets/arts/textures/icon/item/101.png.meta similarity index 97% rename from Assets/arts/textures/ui/battle/battle_auto_bg.png.meta rename to Assets/arts/textures/icon/item/101.png.meta index 97228e7ee..0eac54b7e 100644 --- a/Assets/arts/textures/ui/battle/battle_auto_bg.png.meta +++ b/Assets/arts/textures/icon/item/101.png.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 9b04a302ee9845046a414332102c3595 +guid: f0305314bc26cb04f9115d72ce16103c TextureImporter: internalIDToNameTable: [] externalObjects: {} @@ -128,5 +128,5 @@ TextureImporter: pSDRemoveMatte: 0 pSDShowRemoveMatteOption: 0 userData: - assetBundleName: arts/textures/ui/battle.ab + assetBundleName: arts/textures/icon/item.ab assetBundleVariant: diff --git a/Assets/arts/textures/icon/item/102.png b/Assets/arts/textures/icon/item/102.png new file mode 100644 index 000000000..01d39d23c Binary files /dev/null and b/Assets/arts/textures/icon/item/102.png differ diff --git a/Assets/arts/textures/icon/item/102.png.meta b/Assets/arts/textures/icon/item/102.png.meta new file mode 100644 index 000000000..29932545d --- /dev/null +++ b/Assets/arts/textures/icon/item/102.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: e1cb3f6c360c98548bf2c519217d2ce7 +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/103.png b/Assets/arts/textures/icon/item/103.png new file mode 100644 index 000000000..5f166fdba Binary files /dev/null and b/Assets/arts/textures/icon/item/103.png differ diff --git a/Assets/arts/textures/icon/item/103.png.meta b/Assets/arts/textures/icon/item/103.png.meta new file mode 100644 index 000000000..408fe20f0 --- /dev/null +++ b/Assets/arts/textures/icon/item/103.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 58aaaf6ebacb682438db8711fab2b971 +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/104.png b/Assets/arts/textures/icon/item/104.png new file mode 100644 index 000000000..51c2665a4 Binary files /dev/null and b/Assets/arts/textures/icon/item/104.png differ diff --git a/Assets/arts/textures/icon/item/104.png.meta b/Assets/arts/textures/icon/item/104.png.meta new file mode 100644 index 000000000..73136a5b6 --- /dev/null +++ b/Assets/arts/textures/icon/item/104.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: ea64cef18bd4a5f4cbfc27720e9bb80d +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/105.png b/Assets/arts/textures/icon/item/105.png new file mode 100644 index 000000000..ee04d9b60 Binary files /dev/null and b/Assets/arts/textures/icon/item/105.png differ diff --git a/Assets/arts/textures/icon/item/105.png.meta b/Assets/arts/textures/icon/item/105.png.meta new file mode 100644 index 000000000..30cf629e3 --- /dev/null +++ b/Assets/arts/textures/icon/item/105.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 0bd3d6982020759488c2505db592d6ff +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/106.png b/Assets/arts/textures/icon/item/106.png new file mode 100644 index 000000000..674112efe Binary files /dev/null and b/Assets/arts/textures/icon/item/106.png differ diff --git a/Assets/arts/textures/icon/item/106.png.meta b/Assets/arts/textures/icon/item/106.png.meta new file mode 100644 index 000000000..f46e235c0 --- /dev/null +++ b/Assets/arts/textures/icon/item/106.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: c2a0ee42994c62b43b26ef168e86a722 +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/107.png b/Assets/arts/textures/icon/item/107.png new file mode 100644 index 000000000..ca89bb49b Binary files /dev/null and b/Assets/arts/textures/icon/item/107.png differ diff --git a/Assets/arts/textures/icon/item/107.png.meta b/Assets/arts/textures/icon/item/107.png.meta new file mode 100644 index 000000000..6574af058 --- /dev/null +++ b/Assets/arts/textures/icon/item/107.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 64c110626d7aa7d40873e602d20075d7 +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/108.png b/Assets/arts/textures/icon/item/108.png new file mode 100644 index 000000000..83d0c3380 Binary files /dev/null and b/Assets/arts/textures/icon/item/108.png differ diff --git a/Assets/arts/textures/icon/item/108.png.meta b/Assets/arts/textures/icon/item/108.png.meta new file mode 100644 index 000000000..790f76b21 --- /dev/null +++ b/Assets/arts/textures/icon/item/108.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 8f14b84731f810c4a927fbd7e443523b +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/109.png b/Assets/arts/textures/icon/item/109.png new file mode 100644 index 000000000..8c4a5e323 Binary files /dev/null and b/Assets/arts/textures/icon/item/109.png differ diff --git a/Assets/arts/textures/icon/item/109.png.meta b/Assets/arts/textures/icon/item/109.png.meta new file mode 100644 index 000000000..1fd32fd53 --- /dev/null +++ b/Assets/arts/textures/icon/item/109.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 8ed07eb9f58eb5f4a83e6f36364cfaf9 +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/110.png b/Assets/arts/textures/icon/item/110.png new file mode 100644 index 000000000..4a1161588 Binary files /dev/null and b/Assets/arts/textures/icon/item/110.png differ diff --git a/Assets/arts/textures/icon/item/110.png.meta b/Assets/arts/textures/icon/item/110.png.meta new file mode 100644 index 000000000..50344075d --- /dev/null +++ b/Assets/arts/textures/icon/item/110.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: c47832a9e0e09404d8449038856450dc +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/111.png b/Assets/arts/textures/icon/item/111.png new file mode 100644 index 000000000..714a472ce Binary files /dev/null and b/Assets/arts/textures/icon/item/111.png differ diff --git a/Assets/arts/textures/icon/item/111.png.meta b/Assets/arts/textures/icon/item/111.png.meta new file mode 100644 index 000000000..f70038062 --- /dev/null +++ b/Assets/arts/textures/icon/item/111.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 5778a4464acc95544bdf4c1f27f61998 +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/112.png b/Assets/arts/textures/icon/item/112.png new file mode 100644 index 000000000..cda8700e7 Binary files /dev/null and b/Assets/arts/textures/icon/item/112.png differ diff --git a/Assets/arts/textures/icon/item/112.png.meta b/Assets/arts/textures/icon/item/112.png.meta new file mode 100644 index 000000000..4ef42c764 --- /dev/null +++ b/Assets/arts/textures/icon/item/112.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: beec5ee8ef765534f9a52c4b88556741 +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/113.png b/Assets/arts/textures/icon/item/113.png new file mode 100644 index 000000000..d4a4c5cbb Binary files /dev/null and b/Assets/arts/textures/icon/item/113.png differ diff --git a/Assets/arts/textures/icon/item/113.png.meta b/Assets/arts/textures/icon/item/113.png.meta new file mode 100644 index 000000000..a39ddd892 --- /dev/null +++ b/Assets/arts/textures/icon/item/113.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 51d28caa0b683164288330612c1b73c3 +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/114.png b/Assets/arts/textures/icon/item/114.png new file mode 100644 index 000000000..26c06de92 Binary files /dev/null and b/Assets/arts/textures/icon/item/114.png differ diff --git a/Assets/arts/textures/icon/item/114.png.meta b/Assets/arts/textures/icon/item/114.png.meta new file mode 100644 index 000000000..de5056c72 --- /dev/null +++ b/Assets/arts/textures/icon/item/114.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 1607adab06371d044ab3d8b13a8071cc +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/115.png b/Assets/arts/textures/icon/item/115.png new file mode 100644 index 000000000..1ac689c2c Binary files /dev/null and b/Assets/arts/textures/icon/item/115.png differ diff --git a/Assets/arts/textures/icon/item/115.png.meta b/Assets/arts/textures/icon/item/115.png.meta new file mode 100644 index 000000000..b290a871b --- /dev/null +++ b/Assets/arts/textures/icon/item/115.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: c854783da5902c740a43d029ad11b8c4 +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/116.png b/Assets/arts/textures/icon/item/116.png new file mode 100644 index 000000000..341c4cef4 Binary files /dev/null and b/Assets/arts/textures/icon/item/116.png differ diff --git a/Assets/arts/textures/icon/item/116.png.meta b/Assets/arts/textures/icon/item/116.png.meta new file mode 100644 index 000000000..2b9025934 --- /dev/null +++ b/Assets/arts/textures/icon/item/116.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 5c88dd52e582562499d3cee4e5e47db3 +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/117.png b/Assets/arts/textures/icon/item/117.png new file mode 100644 index 000000000..bdd614145 Binary files /dev/null and b/Assets/arts/textures/icon/item/117.png differ diff --git a/Assets/arts/textures/icon/item/117.png.meta b/Assets/arts/textures/icon/item/117.png.meta new file mode 100644 index 000000000..d324b4f18 --- /dev/null +++ b/Assets/arts/textures/icon/item/117.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: b27f978fb0900614f8fc44e8aac691a9 +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/118.png b/Assets/arts/textures/icon/item/118.png new file mode 100644 index 000000000..4b67fe0d9 Binary files /dev/null and b/Assets/arts/textures/icon/item/118.png differ diff --git a/Assets/arts/textures/icon/item/118.png.meta b/Assets/arts/textures/icon/item/118.png.meta new file mode 100644 index 000000000..f1500de29 --- /dev/null +++ b/Assets/arts/textures/icon/item/118.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: bb1778cde99f53546944994c631663d2 +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/119.png b/Assets/arts/textures/icon/item/119.png new file mode 100644 index 000000000..905a04d30 Binary files /dev/null and b/Assets/arts/textures/icon/item/119.png differ diff --git a/Assets/arts/textures/icon/item/119.png.meta b/Assets/arts/textures/icon/item/119.png.meta new file mode 100644 index 000000000..c23258dbd --- /dev/null +++ b/Assets/arts/textures/icon/item/119.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 211e45e00df30c34f8ad04322688bb86 +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/120.png b/Assets/arts/textures/icon/item/120.png new file mode 100644 index 000000000..82e1b0407 Binary files /dev/null and b/Assets/arts/textures/icon/item/120.png differ diff --git a/Assets/arts/textures/icon/item/120.png.meta b/Assets/arts/textures/icon/item/120.png.meta new file mode 100644 index 000000000..ac6426855 --- /dev/null +++ b/Assets/arts/textures/icon/item/120.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 3eb335011f50e6146b72dd06ec84a318 +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/121.png b/Assets/arts/textures/icon/item/121.png new file mode 100644 index 000000000..c42cb722e Binary files /dev/null and b/Assets/arts/textures/icon/item/121.png differ diff --git a/Assets/arts/textures/icon/item/121.png.meta b/Assets/arts/textures/icon/item/121.png.meta new file mode 100644 index 000000000..3a514e986 --- /dev/null +++ b/Assets/arts/textures/icon/item/121.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 0094740eae4b883478a0dd7343eeb895 +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/122.png b/Assets/arts/textures/icon/item/122.png new file mode 100644 index 000000000..5d987c727 Binary files /dev/null and b/Assets/arts/textures/icon/item/122.png differ diff --git a/Assets/arts/textures/icon/item/122.png.meta b/Assets/arts/textures/icon/item/122.png.meta new file mode 100644 index 000000000..af230cd8b --- /dev/null +++ b/Assets/arts/textures/icon/item/122.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 7668bc9a0a67c924da9406b2feab3aed +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/123.png b/Assets/arts/textures/icon/item/123.png new file mode 100644 index 000000000..7941bac11 Binary files /dev/null and b/Assets/arts/textures/icon/item/123.png differ diff --git a/Assets/arts/textures/icon/item/123.png.meta b/Assets/arts/textures/icon/item/123.png.meta new file mode 100644 index 000000000..76d206287 --- /dev/null +++ b/Assets/arts/textures/icon/item/123.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 9ea13f46ca552b14f81dd43c5438ed04 +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/125.png b/Assets/arts/textures/icon/item/125.png new file mode 100644 index 000000000..ca9b0dcfe Binary files /dev/null and b/Assets/arts/textures/icon/item/125.png differ diff --git a/Assets/arts/textures/icon/item/125.png.meta b/Assets/arts/textures/icon/item/125.png.meta new file mode 100644 index 000000000..ce7ffabc8 --- /dev/null +++ b/Assets/arts/textures/icon/item/125.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 9585b65425e976c47b4795954d3550cc +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/126.png b/Assets/arts/textures/icon/item/126.png new file mode 100644 index 000000000..840484190 Binary files /dev/null and b/Assets/arts/textures/icon/item/126.png differ diff --git a/Assets/arts/textures/icon/item/126.png.meta b/Assets/arts/textures/icon/item/126.png.meta new file mode 100644 index 000000000..adee8faf6 --- /dev/null +++ b/Assets/arts/textures/icon/item/126.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: a5fa25af5369c1e4287cdb1a595b08fc +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/127.png b/Assets/arts/textures/icon/item/127.png new file mode 100644 index 000000000..f95293bfc Binary files /dev/null and b/Assets/arts/textures/icon/item/127.png differ diff --git a/Assets/arts/textures/icon/item/127.png.meta b/Assets/arts/textures/icon/item/127.png.meta new file mode 100644 index 000000000..3cdff20ad --- /dev/null +++ b/Assets/arts/textures/icon/item/127.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: a028ee290e3cd0e44add6d2a0a804cca +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/128.png b/Assets/arts/textures/icon/item/128.png new file mode 100644 index 000000000..98dedfae6 Binary files /dev/null and b/Assets/arts/textures/icon/item/128.png differ diff --git a/Assets/arts/textures/icon/item/128.png.meta b/Assets/arts/textures/icon/item/128.png.meta new file mode 100644 index 000000000..f264ca806 --- /dev/null +++ b/Assets/arts/textures/icon/item/128.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 66c7d3962879a0d47b0f8eb898f9bb07 +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/129.png b/Assets/arts/textures/icon/item/129.png new file mode 100644 index 000000000..994c9646d Binary files /dev/null and b/Assets/arts/textures/icon/item/129.png differ diff --git a/Assets/arts/textures/icon/item/129.png.meta b/Assets/arts/textures/icon/item/129.png.meta new file mode 100644 index 000000000..aaaf595aa --- /dev/null +++ b/Assets/arts/textures/icon/item/129.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 2040c02a5bcf2d24fab2637a2a218132 +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/130.png b/Assets/arts/textures/icon/item/130.png new file mode 100644 index 000000000..514d47648 Binary files /dev/null and b/Assets/arts/textures/icon/item/130.png differ diff --git a/Assets/arts/textures/icon/item/130.png.meta b/Assets/arts/textures/icon/item/130.png.meta new file mode 100644 index 000000000..645b411fc --- /dev/null +++ b/Assets/arts/textures/icon/item/130.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 1ccd595ff75818b4884bed19b151d8e8 +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/131.png b/Assets/arts/textures/icon/item/131.png new file mode 100644 index 000000000..358eef158 Binary files /dev/null and b/Assets/arts/textures/icon/item/131.png differ diff --git a/Assets/arts/textures/icon/item/131.png.meta b/Assets/arts/textures/icon/item/131.png.meta new file mode 100644 index 000000000..b1ce94976 --- /dev/null +++ b/Assets/arts/textures/icon/item/131.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: d474e96253f4119448c6e3263a46c883 +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/132.png b/Assets/arts/textures/icon/item/132.png new file mode 100644 index 000000000..f57b4e248 Binary files /dev/null and b/Assets/arts/textures/icon/item/132.png differ diff --git a/Assets/arts/textures/icon/item/132.png.meta b/Assets/arts/textures/icon/item/132.png.meta new file mode 100644 index 000000000..9c58962e0 --- /dev/null +++ b/Assets/arts/textures/icon/item/132.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: cb7f6a69fa65bdf49ab5eadc8b00911e +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/133.png b/Assets/arts/textures/icon/item/133.png new file mode 100644 index 000000000..b6fe741c1 Binary files /dev/null and b/Assets/arts/textures/icon/item/133.png differ diff --git a/Assets/arts/textures/icon/item/133.png.meta b/Assets/arts/textures/icon/item/133.png.meta new file mode 100644 index 000000000..0231d0672 --- /dev/null +++ b/Assets/arts/textures/icon/item/133.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: d9efba97d4fa8ed469b4c1e4d42aaefa +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/134.png b/Assets/arts/textures/icon/item/134.png new file mode 100644 index 000000000..a6dec0c4e Binary files /dev/null and b/Assets/arts/textures/icon/item/134.png differ diff --git a/Assets/arts/textures/icon/item/134.png.meta b/Assets/arts/textures/icon/item/134.png.meta new file mode 100644 index 000000000..ba42a307a --- /dev/null +++ b/Assets/arts/textures/icon/item/134.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 9f58ca18732cd7444bb8d1b87bd94006 +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/135.png b/Assets/arts/textures/icon/item/135.png new file mode 100644 index 000000000..56b517e14 Binary files /dev/null and b/Assets/arts/textures/icon/item/135.png differ diff --git a/Assets/arts/textures/icon/item/135.png.meta b/Assets/arts/textures/icon/item/135.png.meta new file mode 100644 index 000000000..f11b71830 --- /dev/null +++ b/Assets/arts/textures/icon/item/135.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 30b2ffbfc7e850349828624b696cfceb +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/136.png b/Assets/arts/textures/icon/item/136.png new file mode 100644 index 000000000..36403d758 Binary files /dev/null and b/Assets/arts/textures/icon/item/136.png differ diff --git a/Assets/arts/textures/icon/item/136.png.meta b/Assets/arts/textures/icon/item/136.png.meta new file mode 100644 index 000000000..b7f1aff19 --- /dev/null +++ b/Assets/arts/textures/icon/item/136.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 1ddd63eff80a63e409cdeff1806d9c8a +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/137.png b/Assets/arts/textures/icon/item/137.png new file mode 100644 index 000000000..0bec4af97 Binary files /dev/null and b/Assets/arts/textures/icon/item/137.png differ diff --git a/Assets/arts/textures/icon/item/137.png.meta b/Assets/arts/textures/icon/item/137.png.meta new file mode 100644 index 000000000..bc7f5fc31 --- /dev/null +++ b/Assets/arts/textures/icon/item/137.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 99cbbdb559c12644181f1ce4c58d26fd +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/138.png b/Assets/arts/textures/icon/item/138.png new file mode 100644 index 000000000..7c207f148 Binary files /dev/null and b/Assets/arts/textures/icon/item/138.png differ diff --git a/Assets/arts/textures/icon/item/138.png.meta b/Assets/arts/textures/icon/item/138.png.meta new file mode 100644 index 000000000..5a21d092d --- /dev/null +++ b/Assets/arts/textures/icon/item/138.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 7f0fb9af945fc9648aebd80cbeff172b +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/139.png b/Assets/arts/textures/icon/item/139.png new file mode 100644 index 000000000..626d9cf79 Binary files /dev/null and b/Assets/arts/textures/icon/item/139.png differ diff --git a/Assets/arts/textures/icon/item/139.png.meta b/Assets/arts/textures/icon/item/139.png.meta new file mode 100644 index 000000000..63f58679e --- /dev/null +++ b/Assets/arts/textures/icon/item/139.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: f3bdfec79f10342488dfc6bb6dd72a71 +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/140.png b/Assets/arts/textures/icon/item/140.png new file mode 100644 index 000000000..dae9641e8 Binary files /dev/null and b/Assets/arts/textures/icon/item/140.png differ diff --git a/Assets/arts/textures/icon/item/140.png.meta b/Assets/arts/textures/icon/item/140.png.meta new file mode 100644 index 000000000..9266bedf4 --- /dev/null +++ b/Assets/arts/textures/icon/item/140.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 75cbac0fb99267247a83b1b28ec499c5 +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/141.png b/Assets/arts/textures/icon/item/141.png new file mode 100644 index 000000000..a2e5ef4a9 Binary files /dev/null and b/Assets/arts/textures/icon/item/141.png differ diff --git a/Assets/arts/textures/icon/item/141.png.meta b/Assets/arts/textures/icon/item/141.png.meta new file mode 100644 index 000000000..16050c771 --- /dev/null +++ b/Assets/arts/textures/icon/item/141.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 9d1acc59e5ecb3249812ac577bfe4363 +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/142.png b/Assets/arts/textures/icon/item/142.png new file mode 100644 index 000000000..c24992787 Binary files /dev/null and b/Assets/arts/textures/icon/item/142.png differ diff --git a/Assets/arts/textures/icon/item/142.png.meta b/Assets/arts/textures/icon/item/142.png.meta new file mode 100644 index 000000000..3641ee998 --- /dev/null +++ b/Assets/arts/textures/icon/item/142.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 4b2173e8ffaf1364e83a587fe3364da0 +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/143.png b/Assets/arts/textures/icon/item/143.png new file mode 100644 index 000000000..972d23a35 Binary files /dev/null and b/Assets/arts/textures/icon/item/143.png differ diff --git a/Assets/arts/textures/icon/item/143.png.meta b/Assets/arts/textures/icon/item/143.png.meta new file mode 100644 index 000000000..9e8da1c89 --- /dev/null +++ b/Assets/arts/textures/icon/item/143.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 4bec5e821e7427f40b7028c25e4d1166 +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/146.png b/Assets/arts/textures/icon/item/146.png new file mode 100644 index 000000000..442b2fbb4 Binary files /dev/null and b/Assets/arts/textures/icon/item/146.png differ diff --git a/Assets/arts/textures/icon/item/146.png.meta b/Assets/arts/textures/icon/item/146.png.meta new file mode 100644 index 000000000..a9b5f3baf --- /dev/null +++ b/Assets/arts/textures/icon/item/146.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 87016c72016d1ca44bad5d4e27d56a69 +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/147.png b/Assets/arts/textures/icon/item/147.png new file mode 100644 index 000000000..908fe6187 Binary files /dev/null and b/Assets/arts/textures/icon/item/147.png differ diff --git a/Assets/arts/textures/icon/item/147.png.meta b/Assets/arts/textures/icon/item/147.png.meta new file mode 100644 index 000000000..79ff46ece --- /dev/null +++ b/Assets/arts/textures/icon/item/147.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 78294e1b4df978b46aa0c5282e459e09 +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/148.png b/Assets/arts/textures/icon/item/148.png new file mode 100644 index 000000000..a612e8974 Binary files /dev/null and b/Assets/arts/textures/icon/item/148.png differ diff --git a/Assets/arts/textures/icon/item/148.png.meta b/Assets/arts/textures/icon/item/148.png.meta new file mode 100644 index 000000000..be20787d5 --- /dev/null +++ b/Assets/arts/textures/icon/item/148.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: bce74f1b6309af84bb3a0441760969cc +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/149.png b/Assets/arts/textures/icon/item/149.png new file mode 100644 index 000000000..c24306470 Binary files /dev/null and b/Assets/arts/textures/icon/item/149.png differ diff --git a/Assets/arts/textures/icon/item/149.png.meta b/Assets/arts/textures/icon/item/149.png.meta new file mode 100644 index 000000000..793a20b6a --- /dev/null +++ b/Assets/arts/textures/icon/item/149.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 6755c31659bd78e42b3ae95e3073ec78 +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/150.png b/Assets/arts/textures/icon/item/150.png new file mode 100644 index 000000000..2f99460c8 Binary files /dev/null and b/Assets/arts/textures/icon/item/150.png differ diff --git a/Assets/arts/textures/icon/item/150.png.meta b/Assets/arts/textures/icon/item/150.png.meta new file mode 100644 index 000000000..f6f7d4661 --- /dev/null +++ b/Assets/arts/textures/icon/item/150.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 477a846abe66bcf40a1397b05397d7f9 +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/151.png b/Assets/arts/textures/icon/item/151.png new file mode 100644 index 000000000..ec4acfabb Binary files /dev/null and b/Assets/arts/textures/icon/item/151.png differ diff --git a/Assets/arts/textures/icon/item/151.png.meta b/Assets/arts/textures/icon/item/151.png.meta new file mode 100644 index 000000000..9f0740dce --- /dev/null +++ b/Assets/arts/textures/icon/item/151.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: cc1875e8c0208fe419465f76fe93045d +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/152.png b/Assets/arts/textures/icon/item/152.png new file mode 100644 index 000000000..af9475142 Binary files /dev/null and b/Assets/arts/textures/icon/item/152.png differ diff --git a/Assets/arts/textures/icon/item/152.png.meta b/Assets/arts/textures/icon/item/152.png.meta new file mode 100644 index 000000000..3475b9362 --- /dev/null +++ b/Assets/arts/textures/icon/item/152.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 260240f6f52033948ae6d0c05a03faae +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/153.png b/Assets/arts/textures/icon/item/153.png new file mode 100644 index 000000000..fb196da3e Binary files /dev/null and b/Assets/arts/textures/icon/item/153.png differ diff --git a/Assets/arts/textures/icon/item/153.png.meta b/Assets/arts/textures/icon/item/153.png.meta new file mode 100644 index 000000000..2f016d36a --- /dev/null +++ b/Assets/arts/textures/icon/item/153.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 3ea837dd36293a24392ac761a5d0cb9b +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/154.png b/Assets/arts/textures/icon/item/154.png new file mode 100644 index 000000000..c2ae6c9b6 Binary files /dev/null and b/Assets/arts/textures/icon/item/154.png differ diff --git a/Assets/arts/textures/icon/item/154.png.meta b/Assets/arts/textures/icon/item/154.png.meta new file mode 100644 index 000000000..33650bae4 --- /dev/null +++ b/Assets/arts/textures/icon/item/154.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: fd4558035de3af1469c553678817b8c0 +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/155.png b/Assets/arts/textures/icon/item/155.png new file mode 100644 index 000000000..e70f81bad Binary files /dev/null and b/Assets/arts/textures/icon/item/155.png differ diff --git a/Assets/arts/textures/icon/item/155.png.meta b/Assets/arts/textures/icon/item/155.png.meta new file mode 100644 index 000000000..828b8bfe7 --- /dev/null +++ b/Assets/arts/textures/icon/item/155.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: ed53ee89e4c925448b6fa8a8179b89c9 +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/156.png b/Assets/arts/textures/icon/item/156.png new file mode 100644 index 000000000..8acc92fbc Binary files /dev/null and b/Assets/arts/textures/icon/item/156.png differ diff --git a/Assets/arts/textures/icon/item/156.png.meta b/Assets/arts/textures/icon/item/156.png.meta new file mode 100644 index 000000000..15c24266b --- /dev/null +++ b/Assets/arts/textures/icon/item/156.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 336a3531b00e89b45a60cb4d876a6dbb +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/157.png b/Assets/arts/textures/icon/item/157.png new file mode 100644 index 000000000..285fcb1f5 Binary files /dev/null and b/Assets/arts/textures/icon/item/157.png differ diff --git a/Assets/arts/textures/icon/item/157.png.meta b/Assets/arts/textures/icon/item/157.png.meta new file mode 100644 index 000000000..3529cafba --- /dev/null +++ b/Assets/arts/textures/icon/item/157.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: f4a1ada3c74990f42b3cc5968a6aff4e +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/158.png b/Assets/arts/textures/icon/item/158.png new file mode 100644 index 000000000..d1c3d7889 Binary files /dev/null and b/Assets/arts/textures/icon/item/158.png differ diff --git a/Assets/arts/textures/icon/item/158.png.meta b/Assets/arts/textures/icon/item/158.png.meta new file mode 100644 index 000000000..fcf2052f8 --- /dev/null +++ b/Assets/arts/textures/icon/item/158.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: ee7ac6b42329b844b85242d842511536 +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/159.png b/Assets/arts/textures/icon/item/159.png new file mode 100644 index 000000000..af183f86a Binary files /dev/null and b/Assets/arts/textures/icon/item/159.png differ diff --git a/Assets/arts/textures/icon/item/159.png.meta b/Assets/arts/textures/icon/item/159.png.meta new file mode 100644 index 000000000..ad7020587 --- /dev/null +++ b/Assets/arts/textures/icon/item/159.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 7cbbceaf52635d54cb52c3aa6822be75 +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/160.png b/Assets/arts/textures/icon/item/160.png new file mode 100644 index 000000000..da57754b3 Binary files /dev/null and b/Assets/arts/textures/icon/item/160.png differ diff --git a/Assets/arts/textures/icon/item/160.png.meta b/Assets/arts/textures/icon/item/160.png.meta new file mode 100644 index 000000000..4a3c9efe7 --- /dev/null +++ b/Assets/arts/textures/icon/item/160.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: de1c5896888241944bd36233ded51fb9 +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/161.png b/Assets/arts/textures/icon/item/161.png new file mode 100644 index 000000000..1975ffffb Binary files /dev/null and b/Assets/arts/textures/icon/item/161.png differ diff --git a/Assets/arts/textures/icon/item/161.png.meta b/Assets/arts/textures/icon/item/161.png.meta new file mode 100644 index 000000000..e19147d60 --- /dev/null +++ b/Assets/arts/textures/icon/item/161.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 3219cdf151aaaa045b4cd564f42c35c3 +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/162.png b/Assets/arts/textures/icon/item/162.png new file mode 100644 index 000000000..9a5c9fb73 Binary files /dev/null and b/Assets/arts/textures/icon/item/162.png differ diff --git a/Assets/arts/textures/icon/item/162.png.meta b/Assets/arts/textures/icon/item/162.png.meta new file mode 100644 index 000000000..7bf268a9b --- /dev/null +++ b/Assets/arts/textures/icon/item/162.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 49c6da1c530ba5245adb20be17b319d8 +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/163.png b/Assets/arts/textures/icon/item/163.png new file mode 100644 index 000000000..14e5a1f25 Binary files /dev/null and b/Assets/arts/textures/icon/item/163.png differ diff --git a/Assets/arts/textures/icon/item/163.png.meta b/Assets/arts/textures/icon/item/163.png.meta new file mode 100644 index 000000000..54a463369 --- /dev/null +++ b/Assets/arts/textures/icon/item/163.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 3f49522c6c0c24c499595d3d07e59fec +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/164.png b/Assets/arts/textures/icon/item/164.png new file mode 100644 index 000000000..94e1b93ce Binary files /dev/null and b/Assets/arts/textures/icon/item/164.png differ diff --git a/Assets/arts/textures/icon/item/164.png.meta b/Assets/arts/textures/icon/item/164.png.meta new file mode 100644 index 000000000..9a36fc726 --- /dev/null +++ b/Assets/arts/textures/icon/item/164.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: baf10c0cbb215e94fb40f46f43cee7c5 +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/165.png b/Assets/arts/textures/icon/item/165.png new file mode 100644 index 000000000..aae8c7c99 Binary files /dev/null and b/Assets/arts/textures/icon/item/165.png differ diff --git a/Assets/arts/textures/icon/item/165.png.meta b/Assets/arts/textures/icon/item/165.png.meta new file mode 100644 index 000000000..7c3f86c41 --- /dev/null +++ b/Assets/arts/textures/icon/item/165.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: efd53576b2a14974aa1596711c40baba +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/166.png b/Assets/arts/textures/icon/item/166.png new file mode 100644 index 000000000..ba0481a15 Binary files /dev/null and b/Assets/arts/textures/icon/item/166.png differ diff --git a/Assets/arts/textures/icon/item/166.png.meta b/Assets/arts/textures/icon/item/166.png.meta new file mode 100644 index 000000000..3c444cddc --- /dev/null +++ b/Assets/arts/textures/icon/item/166.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 85a26c48828c7144ca9026c6fc10d812 +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/167.png b/Assets/arts/textures/icon/item/167.png new file mode 100644 index 000000000..2c0229b8a Binary files /dev/null and b/Assets/arts/textures/icon/item/167.png differ diff --git a/Assets/arts/textures/icon/item/167.png.meta b/Assets/arts/textures/icon/item/167.png.meta new file mode 100644 index 000000000..c97147289 --- /dev/null +++ b/Assets/arts/textures/icon/item/167.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 0f1e2fb94b386104495e89d5f3cb2777 +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/168.png b/Assets/arts/textures/icon/item/168.png new file mode 100644 index 000000000..df3c28944 Binary files /dev/null and b/Assets/arts/textures/icon/item/168.png differ diff --git a/Assets/arts/textures/icon/item/168.png.meta b/Assets/arts/textures/icon/item/168.png.meta new file mode 100644 index 000000000..4d4040b76 --- /dev/null +++ b/Assets/arts/textures/icon/item/168.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 0669ce3ecd5e2254cad7c6f131fb2afa +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/169.png b/Assets/arts/textures/icon/item/169.png new file mode 100644 index 000000000..47acae1d5 Binary files /dev/null and b/Assets/arts/textures/icon/item/169.png differ diff --git a/Assets/arts/textures/icon/item/169.png.meta b/Assets/arts/textures/icon/item/169.png.meta new file mode 100644 index 000000000..d2ed1e960 --- /dev/null +++ b/Assets/arts/textures/icon/item/169.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 967699d1de07b8345bbe196d0e7bc862 +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/170.png b/Assets/arts/textures/icon/item/170.png new file mode 100644 index 000000000..b24a2c983 Binary files /dev/null and b/Assets/arts/textures/icon/item/170.png differ diff --git a/Assets/arts/textures/icon/item/170.png.meta b/Assets/arts/textures/icon/item/170.png.meta new file mode 100644 index 000000000..2a9bfb32e --- /dev/null +++ b/Assets/arts/textures/icon/item/170.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 2d8d596d07ea4ba4b9925d1f83a4bd2b +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/171.png b/Assets/arts/textures/icon/item/171.png new file mode 100644 index 000000000..7c86954c7 Binary files /dev/null and b/Assets/arts/textures/icon/item/171.png differ diff --git a/Assets/arts/textures/icon/item/171.png.meta b/Assets/arts/textures/icon/item/171.png.meta new file mode 100644 index 000000000..bcb302488 --- /dev/null +++ b/Assets/arts/textures/icon/item/171.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: c6560c4564987ec44b3e42ed8b252623 +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/172.png b/Assets/arts/textures/icon/item/172.png new file mode 100644 index 000000000..88025ca76 Binary files /dev/null and b/Assets/arts/textures/icon/item/172.png differ diff --git a/Assets/arts/textures/icon/item/172.png.meta b/Assets/arts/textures/icon/item/172.png.meta new file mode 100644 index 000000000..e78d4fa72 --- /dev/null +++ b/Assets/arts/textures/icon/item/172.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 7e0c326340beeb644a36fdf32c96b83e +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/175.png b/Assets/arts/textures/icon/item/175.png new file mode 100644 index 000000000..ea756cde1 Binary files /dev/null and b/Assets/arts/textures/icon/item/175.png differ diff --git a/Assets/arts/textures/icon/item/175.png.meta b/Assets/arts/textures/icon/item/175.png.meta new file mode 100644 index 000000000..81d7ce198 --- /dev/null +++ b/Assets/arts/textures/icon/item/175.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: e069b7d74030fe94e8997969e5dde16d +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/176.png b/Assets/arts/textures/icon/item/176.png new file mode 100644 index 000000000..9abc1cf8d Binary files /dev/null and b/Assets/arts/textures/icon/item/176.png differ diff --git a/Assets/arts/textures/icon/item/176.png.meta b/Assets/arts/textures/icon/item/176.png.meta new file mode 100644 index 000000000..dfe2c035a --- /dev/null +++ b/Assets/arts/textures/icon/item/176.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 718144a2f2209a4409d719f8285620a4 +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/177.png b/Assets/arts/textures/icon/item/177.png new file mode 100644 index 000000000..705f8126c Binary files /dev/null and b/Assets/arts/textures/icon/item/177.png differ diff --git a/Assets/arts/textures/icon/item/177.png.meta b/Assets/arts/textures/icon/item/177.png.meta new file mode 100644 index 000000000..82e8ed7cb --- /dev/null +++ b/Assets/arts/textures/icon/item/177.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: cd1029fe00fd95a4db3d38297bee5a79 +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/178.png b/Assets/arts/textures/icon/item/178.png new file mode 100644 index 000000000..cdd5ed246 Binary files /dev/null and b/Assets/arts/textures/icon/item/178.png differ diff --git a/Assets/arts/textures/icon/item/178.png.meta b/Assets/arts/textures/icon/item/178.png.meta new file mode 100644 index 000000000..021a172d8 --- /dev/null +++ b/Assets/arts/textures/icon/item/178.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: e66cedfa0dbae6245bfa579c4fa83ebb +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/179.png b/Assets/arts/textures/icon/item/179.png new file mode 100644 index 000000000..1c0aef742 Binary files /dev/null and b/Assets/arts/textures/icon/item/179.png differ diff --git a/Assets/arts/textures/icon/item/179.png.meta b/Assets/arts/textures/icon/item/179.png.meta new file mode 100644 index 000000000..73ec20985 --- /dev/null +++ b/Assets/arts/textures/icon/item/179.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: d594ddd248365424cb78f1f3cae9e050 +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/2001.png b/Assets/arts/textures/icon/item/2001.png new file mode 100644 index 000000000..aec322a85 Binary files /dev/null and b/Assets/arts/textures/icon/item/2001.png differ diff --git a/Assets/arts/textures/icon/item/2001.png.meta b/Assets/arts/textures/icon/item/2001.png.meta new file mode 100644 index 000000000..5767706b7 --- /dev/null +++ b/Assets/arts/textures/icon/item/2001.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: f05c18542dbec154fabe9417834f8f5b +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/29.png b/Assets/arts/textures/icon/item/29.png new file mode 100644 index 000000000..9aafac2f1 Binary files /dev/null and b/Assets/arts/textures/icon/item/29.png differ diff --git a/Assets/arts/textures/icon/item/29.png.meta b/Assets/arts/textures/icon/item/29.png.meta new file mode 100644 index 000000000..6451ae83d --- /dev/null +++ b/Assets/arts/textures/icon/item/29.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: f6dd43444ecd58e4c82aa8f413b4c158 +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/3.png b/Assets/arts/textures/icon/item/3.png new file mode 100644 index 000000000..0e03df2fc Binary files /dev/null and b/Assets/arts/textures/icon/item/3.png differ diff --git a/Assets/arts/textures/icon/item/3.png.meta b/Assets/arts/textures/icon/item/3.png.meta new file mode 100644 index 000000000..dc3d125d9 --- /dev/null +++ b/Assets/arts/textures/icon/item/3.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 3c09c3571cc8aff4fbaee4765d7f856f +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/30.png b/Assets/arts/textures/icon/item/30.png new file mode 100644 index 000000000..d288e49f7 Binary files /dev/null and b/Assets/arts/textures/icon/item/30.png differ diff --git a/Assets/arts/textures/icon/item/30.png.meta b/Assets/arts/textures/icon/item/30.png.meta new file mode 100644 index 000000000..0d110da02 --- /dev/null +++ b/Assets/arts/textures/icon/item/30.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 6f9f6ca604220c4449f0c433867d27b5 +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/3001.png b/Assets/arts/textures/icon/item/3001.png new file mode 100644 index 000000000..ed16c830d Binary files /dev/null and b/Assets/arts/textures/icon/item/3001.png differ diff --git a/Assets/arts/textures/icon/item/3001.png.meta b/Assets/arts/textures/icon/item/3001.png.meta new file mode 100644 index 000000000..71efa97bb --- /dev/null +++ b/Assets/arts/textures/icon/item/3001.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 3469fbacf5b20a94d884b244822a1fb1 +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/31.png b/Assets/arts/textures/icon/item/31.png new file mode 100644 index 000000000..c6b5d38c9 Binary files /dev/null and b/Assets/arts/textures/icon/item/31.png differ diff --git a/Assets/arts/textures/icon/item/31.png.meta b/Assets/arts/textures/icon/item/31.png.meta new file mode 100644 index 000000000..9aafe3793 --- /dev/null +++ b/Assets/arts/textures/icon/item/31.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: d7ee6323d966a3940b3e0684bb7ea31d +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/32.png b/Assets/arts/textures/icon/item/32.png new file mode 100644 index 000000000..4cb24e8fe Binary files /dev/null and b/Assets/arts/textures/icon/item/32.png differ diff --git a/Assets/arts/textures/icon/item/32.png.meta b/Assets/arts/textures/icon/item/32.png.meta new file mode 100644 index 000000000..5b9175053 --- /dev/null +++ b/Assets/arts/textures/icon/item/32.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 71fd1757cb41348488e5c5640b34181d +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/33.png b/Assets/arts/textures/icon/item/33.png new file mode 100644 index 000000000..cac88d4d9 Binary files /dev/null and b/Assets/arts/textures/icon/item/33.png differ diff --git a/Assets/arts/textures/icon/item/33.png.meta b/Assets/arts/textures/icon/item/33.png.meta new file mode 100644 index 000000000..88a99f6a7 --- /dev/null +++ b/Assets/arts/textures/icon/item/33.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 102d951f189c1b94aa0cee14f692a8cb +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/34.png b/Assets/arts/textures/icon/item/34.png new file mode 100644 index 000000000..177f6492a Binary files /dev/null and b/Assets/arts/textures/icon/item/34.png differ diff --git a/Assets/arts/textures/icon/item/34.png.meta b/Assets/arts/textures/icon/item/34.png.meta new file mode 100644 index 000000000..a1dda9e15 --- /dev/null +++ b/Assets/arts/textures/icon/item/34.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 0014a8e64aabc484fa75142d046ab4b2 +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/35.png b/Assets/arts/textures/icon/item/35.png new file mode 100644 index 000000000..ff3c9e341 Binary files /dev/null and b/Assets/arts/textures/icon/item/35.png differ diff --git a/Assets/arts/textures/icon/item/35.png.meta b/Assets/arts/textures/icon/item/35.png.meta new file mode 100644 index 000000000..f803a7d3d --- /dev/null +++ b/Assets/arts/textures/icon/item/35.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 6251306429b888b45a6406b8ee6debc3 +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/36.png b/Assets/arts/textures/icon/item/36.png new file mode 100644 index 000000000..c555a0a95 Binary files /dev/null and b/Assets/arts/textures/icon/item/36.png differ diff --git a/Assets/arts/textures/icon/item/36.png.meta b/Assets/arts/textures/icon/item/36.png.meta new file mode 100644 index 000000000..577dc33b4 --- /dev/null +++ b/Assets/arts/textures/icon/item/36.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: c42f2d2c89416c54287c7d431c912b72 +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/37.png b/Assets/arts/textures/icon/item/37.png new file mode 100644 index 000000000..55175baab Binary files /dev/null and b/Assets/arts/textures/icon/item/37.png differ diff --git a/Assets/arts/textures/icon/item/37.png.meta b/Assets/arts/textures/icon/item/37.png.meta new file mode 100644 index 000000000..61fc71683 --- /dev/null +++ b/Assets/arts/textures/icon/item/37.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: d4788624e57769446af3680cc8966e35 +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/38.png b/Assets/arts/textures/icon/item/38.png new file mode 100644 index 000000000..ba7dd12b7 Binary files /dev/null and b/Assets/arts/textures/icon/item/38.png differ diff --git a/Assets/arts/textures/icon/item/38.png.meta b/Assets/arts/textures/icon/item/38.png.meta new file mode 100644 index 000000000..203c93b8a --- /dev/null +++ b/Assets/arts/textures/icon/item/38.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: e1337e97b3644b548aba9144f5ff4bd3 +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/39.png b/Assets/arts/textures/icon/item/39.png new file mode 100644 index 000000000..6c581542e Binary files /dev/null and b/Assets/arts/textures/icon/item/39.png differ diff --git a/Assets/arts/textures/icon/item/39.png.meta b/Assets/arts/textures/icon/item/39.png.meta new file mode 100644 index 000000000..2194dece4 --- /dev/null +++ b/Assets/arts/textures/icon/item/39.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: d48bcd55b7fe2b14fb37ba32df125c59 +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/40.png b/Assets/arts/textures/icon/item/40.png new file mode 100644 index 000000000..db5f52733 Binary files /dev/null and b/Assets/arts/textures/icon/item/40.png differ diff --git a/Assets/arts/textures/icon/item/40.png.meta b/Assets/arts/textures/icon/item/40.png.meta new file mode 100644 index 000000000..87231a75a --- /dev/null +++ b/Assets/arts/textures/icon/item/40.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 026ffab96f96698498fe39232181d2c4 +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/4001.png b/Assets/arts/textures/icon/item/4001.png new file mode 100644 index 000000000..eed74ed9f Binary files /dev/null and b/Assets/arts/textures/icon/item/4001.png differ diff --git a/Assets/arts/textures/icon/item/4001.png.meta b/Assets/arts/textures/icon/item/4001.png.meta new file mode 100644 index 000000000..becf282e0 --- /dev/null +++ b/Assets/arts/textures/icon/item/4001.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: b92406627c14e5544af0561fc980b6e9 +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/41.png b/Assets/arts/textures/icon/item/41.png new file mode 100644 index 000000000..3fabd5899 Binary files /dev/null and b/Assets/arts/textures/icon/item/41.png differ diff --git a/Assets/arts/textures/icon/item/41.png.meta b/Assets/arts/textures/icon/item/41.png.meta new file mode 100644 index 000000000..53a8ed6f7 --- /dev/null +++ b/Assets/arts/textures/icon/item/41.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 5fc391cc83ef41a498c3a5734accce04 +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/42.png b/Assets/arts/textures/icon/item/42.png new file mode 100644 index 000000000..c4e7cc4d7 Binary files /dev/null and b/Assets/arts/textures/icon/item/42.png differ diff --git a/Assets/arts/textures/icon/item/42.png.meta b/Assets/arts/textures/icon/item/42.png.meta new file mode 100644 index 000000000..45e3131dd --- /dev/null +++ b/Assets/arts/textures/icon/item/42.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 4ba28507bd9f08d499fc3bbad410c949 +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/43.png b/Assets/arts/textures/icon/item/43.png new file mode 100644 index 000000000..c24992787 Binary files /dev/null and b/Assets/arts/textures/icon/item/43.png differ diff --git a/Assets/arts/textures/icon/item/43.png.meta b/Assets/arts/textures/icon/item/43.png.meta new file mode 100644 index 000000000..cc4a703d7 --- /dev/null +++ b/Assets/arts/textures/icon/item/43.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 76bb000df80d6144598cf662be1f1574 +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/44.png b/Assets/arts/textures/icon/item/44.png new file mode 100644 index 000000000..1c5ab0c6f Binary files /dev/null and b/Assets/arts/textures/icon/item/44.png differ diff --git a/Assets/arts/textures/icon/item/44.png.meta b/Assets/arts/textures/icon/item/44.png.meta new file mode 100644 index 000000000..6cacfeb33 --- /dev/null +++ b/Assets/arts/textures/icon/item/44.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 69f245984d27ce94eb1f26eff6194b8e +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/45.png b/Assets/arts/textures/icon/item/45.png new file mode 100644 index 000000000..8aa3af792 Binary files /dev/null and b/Assets/arts/textures/icon/item/45.png differ diff --git a/Assets/arts/textures/icon/item/45.png.meta b/Assets/arts/textures/icon/item/45.png.meta new file mode 100644 index 000000000..1f7b4955e --- /dev/null +++ b/Assets/arts/textures/icon/item/45.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 0245308175a04214ba7c6c8204a21957 +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/46.png b/Assets/arts/textures/icon/item/46.png new file mode 100644 index 000000000..716269601 Binary files /dev/null and b/Assets/arts/textures/icon/item/46.png differ diff --git a/Assets/arts/textures/icon/item/46.png.meta b/Assets/arts/textures/icon/item/46.png.meta new file mode 100644 index 000000000..52eb5bec8 --- /dev/null +++ b/Assets/arts/textures/icon/item/46.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 923e53be0fd71234e9ba3276fd458cf3 +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/47.png b/Assets/arts/textures/icon/item/47.png new file mode 100644 index 000000000..5953a9d7b Binary files /dev/null and b/Assets/arts/textures/icon/item/47.png differ diff --git a/Assets/arts/textures/icon/item/47.png.meta b/Assets/arts/textures/icon/item/47.png.meta new file mode 100644 index 000000000..02ecc0c48 --- /dev/null +++ b/Assets/arts/textures/icon/item/47.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 91b338ba6d0b50243a27b671819a0198 +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/48.png b/Assets/arts/textures/icon/item/48.png new file mode 100644 index 000000000..e188f9506 Binary files /dev/null and b/Assets/arts/textures/icon/item/48.png differ diff --git a/Assets/arts/textures/icon/item/48.png.meta b/Assets/arts/textures/icon/item/48.png.meta new file mode 100644 index 000000000..3471b5d81 --- /dev/null +++ b/Assets/arts/textures/icon/item/48.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 1281b2206b5498c42ac40f02b9483f96 +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/49.png b/Assets/arts/textures/icon/item/49.png new file mode 100644 index 000000000..f8088dc83 Binary files /dev/null and b/Assets/arts/textures/icon/item/49.png differ diff --git a/Assets/arts/textures/icon/item/49.png.meta b/Assets/arts/textures/icon/item/49.png.meta new file mode 100644 index 000000000..7e1c9853e --- /dev/null +++ b/Assets/arts/textures/icon/item/49.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: d7d6d50cf71552d4b902887787352aa9 +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/50.png b/Assets/arts/textures/icon/item/50.png new file mode 100644 index 000000000..9b9bce9a9 Binary files /dev/null and b/Assets/arts/textures/icon/item/50.png differ diff --git a/Assets/arts/textures/icon/item/50.png.meta b/Assets/arts/textures/icon/item/50.png.meta new file mode 100644 index 000000000..ff5f0dd46 --- /dev/null +++ b/Assets/arts/textures/icon/item/50.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 9a20887ce93c00c499bfd25c6f6745ce +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/5001.png b/Assets/arts/textures/icon/item/5001.png new file mode 100644 index 000000000..28a107b6e Binary files /dev/null and b/Assets/arts/textures/icon/item/5001.png differ diff --git a/Assets/arts/textures/icon/item/5001.png.meta b/Assets/arts/textures/icon/item/5001.png.meta new file mode 100644 index 000000000..0e13b99d4 --- /dev/null +++ b/Assets/arts/textures/icon/item/5001.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: ed3442c7ca4a1fd42a6347457d4a8c16 +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/51.png b/Assets/arts/textures/icon/item/51.png new file mode 100644 index 000000000..ea4c2b8db Binary files /dev/null and b/Assets/arts/textures/icon/item/51.png differ diff --git a/Assets/arts/textures/icon/item/51.png.meta b/Assets/arts/textures/icon/item/51.png.meta new file mode 100644 index 000000000..c8518f7a1 --- /dev/null +++ b/Assets/arts/textures/icon/item/51.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: ec359761f3ca21b41b0e2a86dafbcee0 +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/52.png b/Assets/arts/textures/icon/item/52.png new file mode 100644 index 000000000..c1b06b2d8 Binary files /dev/null and b/Assets/arts/textures/icon/item/52.png differ diff --git a/Assets/arts/textures/icon/item/52.png.meta b/Assets/arts/textures/icon/item/52.png.meta new file mode 100644 index 000000000..1e1afb11b --- /dev/null +++ b/Assets/arts/textures/icon/item/52.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: da8a65942cb990943a0d7ad6fd92212d +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/53.png b/Assets/arts/textures/icon/item/53.png new file mode 100644 index 000000000..a265be2d1 Binary files /dev/null and b/Assets/arts/textures/icon/item/53.png differ diff --git a/Assets/arts/textures/icon/item/53.png.meta b/Assets/arts/textures/icon/item/53.png.meta new file mode 100644 index 000000000..ed79217b5 --- /dev/null +++ b/Assets/arts/textures/icon/item/53.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 8059ebb548488b24bb6ac727adcf1063 +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/54.png b/Assets/arts/textures/icon/item/54.png new file mode 100644 index 000000000..b8f2f13f3 Binary files /dev/null and b/Assets/arts/textures/icon/item/54.png differ diff --git a/Assets/arts/textures/icon/item/54.png.meta b/Assets/arts/textures/icon/item/54.png.meta new file mode 100644 index 000000000..d9b7d1a41 --- /dev/null +++ b/Assets/arts/textures/icon/item/54.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 8374d2a4a2ad5334f9d6ed5593d33baa +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/55.png b/Assets/arts/textures/icon/item/55.png new file mode 100644 index 000000000..6298b4fec Binary files /dev/null and b/Assets/arts/textures/icon/item/55.png differ diff --git a/Assets/arts/textures/icon/item/55.png.meta b/Assets/arts/textures/icon/item/55.png.meta new file mode 100644 index 000000000..a63a615db --- /dev/null +++ b/Assets/arts/textures/icon/item/55.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 109f98c4d9f52d446b414a9ee6e98074 +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/56.png b/Assets/arts/textures/icon/item/56.png new file mode 100644 index 000000000..51a0544ea Binary files /dev/null and b/Assets/arts/textures/icon/item/56.png differ diff --git a/Assets/arts/textures/icon/item/56.png.meta b/Assets/arts/textures/icon/item/56.png.meta new file mode 100644 index 000000000..e1dbf69a8 --- /dev/null +++ b/Assets/arts/textures/icon/item/56.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: ccce8094500abd147b3a91ba535f3f2e +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/57.png b/Assets/arts/textures/icon/item/57.png new file mode 100644 index 000000000..7524f675c Binary files /dev/null and b/Assets/arts/textures/icon/item/57.png differ diff --git a/Assets/arts/textures/icon/item/57.png.meta b/Assets/arts/textures/icon/item/57.png.meta new file mode 100644 index 000000000..ac45a0bf7 --- /dev/null +++ b/Assets/arts/textures/icon/item/57.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: d60bba3636c789246a92435b345c36c2 +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/58.png b/Assets/arts/textures/icon/item/58.png new file mode 100644 index 000000000..4d8829db4 Binary files /dev/null and b/Assets/arts/textures/icon/item/58.png differ diff --git a/Assets/arts/textures/icon/item/58.png.meta b/Assets/arts/textures/icon/item/58.png.meta new file mode 100644 index 000000000..88c1bed8e --- /dev/null +++ b/Assets/arts/textures/icon/item/58.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 0297aad7835830c4693c4e1847c32b9d +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/59.png b/Assets/arts/textures/icon/item/59.png new file mode 100644 index 000000000..8c6f7b1c9 Binary files /dev/null and b/Assets/arts/textures/icon/item/59.png differ diff --git a/Assets/arts/textures/icon/item/59.png.meta b/Assets/arts/textures/icon/item/59.png.meta new file mode 100644 index 000000000..81117e5d0 --- /dev/null +++ b/Assets/arts/textures/icon/item/59.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 974ab75cff065594bbc3ea0aa49632c3 +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/60.png b/Assets/arts/textures/icon/item/60.png new file mode 100644 index 000000000..0ccd077af Binary files /dev/null and b/Assets/arts/textures/icon/item/60.png differ diff --git a/Assets/arts/textures/icon/item/60.png.meta b/Assets/arts/textures/icon/item/60.png.meta new file mode 100644 index 000000000..c38087845 --- /dev/null +++ b/Assets/arts/textures/icon/item/60.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 69ad3578659e44e428f387a0b655c577 +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/6001.png b/Assets/arts/textures/icon/item/6001.png new file mode 100644 index 000000000..76a568a8e Binary files /dev/null and b/Assets/arts/textures/icon/item/6001.png differ diff --git a/Assets/arts/textures/icon/item/6001.png.meta b/Assets/arts/textures/icon/item/6001.png.meta new file mode 100644 index 000000000..d60a7982e --- /dev/null +++ b/Assets/arts/textures/icon/item/6001.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 50a47f8068a311345a29341cff083e01 +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/61.png b/Assets/arts/textures/icon/item/61.png new file mode 100644 index 000000000..f2e81b3db Binary files /dev/null and b/Assets/arts/textures/icon/item/61.png differ diff --git a/Assets/arts/textures/icon/item/61.png.meta b/Assets/arts/textures/icon/item/61.png.meta new file mode 100644 index 000000000..7622b3f6b --- /dev/null +++ b/Assets/arts/textures/icon/item/61.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: ada16300aec02e24c81f62aaa527b78e +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/62.png b/Assets/arts/textures/icon/item/62.png new file mode 100644 index 000000000..de2bb8d83 Binary files /dev/null and b/Assets/arts/textures/icon/item/62.png differ diff --git a/Assets/arts/textures/icon/item/62.png.meta b/Assets/arts/textures/icon/item/62.png.meta new file mode 100644 index 000000000..100bd6ca3 --- /dev/null +++ b/Assets/arts/textures/icon/item/62.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 3d7047971269d394ab800ae35d6a91bf +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/63.png b/Assets/arts/textures/icon/item/63.png new file mode 100644 index 000000000..43756ad18 Binary files /dev/null and b/Assets/arts/textures/icon/item/63.png differ diff --git a/Assets/arts/textures/icon/item/63.png.meta b/Assets/arts/textures/icon/item/63.png.meta new file mode 100644 index 000000000..b4844f9c9 --- /dev/null +++ b/Assets/arts/textures/icon/item/63.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 36c66d61716ea854cbb9ac84ebc468e3 +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/64.png b/Assets/arts/textures/icon/item/64.png new file mode 100644 index 000000000..6835cd964 Binary files /dev/null and b/Assets/arts/textures/icon/item/64.png differ diff --git a/Assets/arts/textures/icon/item/64.png.meta b/Assets/arts/textures/icon/item/64.png.meta new file mode 100644 index 000000000..57d570fed --- /dev/null +++ b/Assets/arts/textures/icon/item/64.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: b0d218d1d5fbb7a43a9bc6ea6c8a6cda +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/65.png b/Assets/arts/textures/icon/item/65.png new file mode 100644 index 000000000..4a67baaa6 Binary files /dev/null and b/Assets/arts/textures/icon/item/65.png differ diff --git a/Assets/arts/textures/icon/item/65.png.meta b/Assets/arts/textures/icon/item/65.png.meta new file mode 100644 index 000000000..95fde8438 --- /dev/null +++ b/Assets/arts/textures/icon/item/65.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 2f1225bc64730a0488aedc6bfdea5ea2 +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/66.png b/Assets/arts/textures/icon/item/66.png new file mode 100644 index 000000000..79a12fde4 Binary files /dev/null and b/Assets/arts/textures/icon/item/66.png differ diff --git a/Assets/arts/textures/icon/item/66.png.meta b/Assets/arts/textures/icon/item/66.png.meta new file mode 100644 index 000000000..de5d2f142 --- /dev/null +++ b/Assets/arts/textures/icon/item/66.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: f3cd53e5403b41a4ca124a717c961471 +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/67.png b/Assets/arts/textures/icon/item/67.png new file mode 100644 index 000000000..5eb1ba913 Binary files /dev/null and b/Assets/arts/textures/icon/item/67.png differ diff --git a/Assets/arts/textures/icon/item/67.png.meta b/Assets/arts/textures/icon/item/67.png.meta new file mode 100644 index 000000000..d2f440827 --- /dev/null +++ b/Assets/arts/textures/icon/item/67.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 71d778078c468914695f8d07876a74df +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/68.png b/Assets/arts/textures/icon/item/68.png new file mode 100644 index 000000000..f9ce1c413 Binary files /dev/null and b/Assets/arts/textures/icon/item/68.png differ diff --git a/Assets/arts/textures/icon/item/68.png.meta b/Assets/arts/textures/icon/item/68.png.meta new file mode 100644 index 000000000..cd7db9631 --- /dev/null +++ b/Assets/arts/textures/icon/item/68.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: b4ea73de9e7befa48a239096e21279f0 +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/69.png b/Assets/arts/textures/icon/item/69.png new file mode 100644 index 000000000..122228733 Binary files /dev/null and b/Assets/arts/textures/icon/item/69.png differ diff --git a/Assets/arts/textures/icon/item/69.png.meta b/Assets/arts/textures/icon/item/69.png.meta new file mode 100644 index 000000000..7023673c8 --- /dev/null +++ b/Assets/arts/textures/icon/item/69.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 6a6f302bf6f41d041a6cc62ef68529f3 +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/70.png b/Assets/arts/textures/icon/item/70.png new file mode 100644 index 000000000..2c90ed899 Binary files /dev/null and b/Assets/arts/textures/icon/item/70.png differ diff --git a/Assets/arts/textures/icon/item/70.png.meta b/Assets/arts/textures/icon/item/70.png.meta new file mode 100644 index 000000000..ffe783138 --- /dev/null +++ b/Assets/arts/textures/icon/item/70.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 6dff2488d54f5fe408b49e3e294c7954 +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/7001.png b/Assets/arts/textures/icon/item/7001.png new file mode 100644 index 000000000..310db6a77 Binary files /dev/null and b/Assets/arts/textures/icon/item/7001.png differ diff --git a/Assets/arts/textures/icon/item/7001.png.meta b/Assets/arts/textures/icon/item/7001.png.meta new file mode 100644 index 000000000..290ebad7c --- /dev/null +++ b/Assets/arts/textures/icon/item/7001.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: c5ce01be1d9b3e7408d45450621f02cd +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/71.png b/Assets/arts/textures/icon/item/71.png new file mode 100644 index 000000000..5363791b4 Binary files /dev/null and b/Assets/arts/textures/icon/item/71.png differ diff --git a/Assets/arts/textures/icon/item/71.png.meta b/Assets/arts/textures/icon/item/71.png.meta new file mode 100644 index 000000000..ff73de433 --- /dev/null +++ b/Assets/arts/textures/icon/item/71.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 7ce5567163562a84294bccc1dc79c71a +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/72.png b/Assets/arts/textures/icon/item/72.png new file mode 100644 index 000000000..463b9000e Binary files /dev/null and b/Assets/arts/textures/icon/item/72.png differ diff --git a/Assets/arts/textures/icon/item/72.png.meta b/Assets/arts/textures/icon/item/72.png.meta new file mode 100644 index 000000000..ad0fcff45 --- /dev/null +++ b/Assets/arts/textures/icon/item/72.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: ff52a49c1e12a95428aef1d206b11d1a +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/73.png b/Assets/arts/textures/icon/item/73.png new file mode 100644 index 000000000..2036058ad Binary files /dev/null and b/Assets/arts/textures/icon/item/73.png differ diff --git a/Assets/arts/textures/icon/item/73.png.meta b/Assets/arts/textures/icon/item/73.png.meta new file mode 100644 index 000000000..48eaaf6f7 --- /dev/null +++ b/Assets/arts/textures/icon/item/73.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: e8a1e7522726032448550556aa654765 +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/74.png b/Assets/arts/textures/icon/item/74.png new file mode 100644 index 000000000..879aada26 Binary files /dev/null and b/Assets/arts/textures/icon/item/74.png differ diff --git a/Assets/arts/textures/icon/item/74.png.meta b/Assets/arts/textures/icon/item/74.png.meta new file mode 100644 index 000000000..f82d596c8 --- /dev/null +++ b/Assets/arts/textures/icon/item/74.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: a092d7c2d3caa964e8328341ce7ae830 +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/75.png b/Assets/arts/textures/icon/item/75.png new file mode 100644 index 000000000..c65474547 Binary files /dev/null and b/Assets/arts/textures/icon/item/75.png differ diff --git a/Assets/arts/textures/icon/item/75.png.meta b/Assets/arts/textures/icon/item/75.png.meta new file mode 100644 index 000000000..d1a940135 --- /dev/null +++ b/Assets/arts/textures/icon/item/75.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: dd4a5976bebf30a42a5785d5bcacf3cc +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/76.png b/Assets/arts/textures/icon/item/76.png new file mode 100644 index 000000000..752dc8c30 Binary files /dev/null and b/Assets/arts/textures/icon/item/76.png differ diff --git a/Assets/arts/textures/icon/item/76.png.meta b/Assets/arts/textures/icon/item/76.png.meta new file mode 100644 index 000000000..8b9d05407 --- /dev/null +++ b/Assets/arts/textures/icon/item/76.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 51548c792aef250489d1580c7d7bca7c +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/77.png b/Assets/arts/textures/icon/item/77.png new file mode 100644 index 000000000..8c2894df3 Binary files /dev/null and b/Assets/arts/textures/icon/item/77.png differ diff --git a/Assets/arts/textures/icon/item/77.png.meta b/Assets/arts/textures/icon/item/77.png.meta new file mode 100644 index 000000000..e2e117859 --- /dev/null +++ b/Assets/arts/textures/icon/item/77.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 0aaa9ef6c14171748a8dd89c36b39b14 +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/78.png b/Assets/arts/textures/icon/item/78.png new file mode 100644 index 000000000..6fee999f1 Binary files /dev/null and b/Assets/arts/textures/icon/item/78.png differ diff --git a/Assets/arts/textures/icon/item/78.png.meta b/Assets/arts/textures/icon/item/78.png.meta new file mode 100644 index 000000000..075afaf73 --- /dev/null +++ b/Assets/arts/textures/icon/item/78.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 7942721860dd5674b8fece568fb46e10 +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/79.png b/Assets/arts/textures/icon/item/79.png new file mode 100644 index 000000000..1d6a5f31f Binary files /dev/null and b/Assets/arts/textures/icon/item/79.png differ diff --git a/Assets/arts/textures/icon/item/79.png.meta b/Assets/arts/textures/icon/item/79.png.meta new file mode 100644 index 000000000..aba1afdce --- /dev/null +++ b/Assets/arts/textures/icon/item/79.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: d881514a1eb4ca04681aad0c9c0d7eaa +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/80.png b/Assets/arts/textures/icon/item/80.png new file mode 100644 index 000000000..96e95451a Binary files /dev/null and b/Assets/arts/textures/icon/item/80.png differ diff --git a/Assets/arts/textures/icon/item/80.png.meta b/Assets/arts/textures/icon/item/80.png.meta new file mode 100644 index 000000000..f412e9117 --- /dev/null +++ b/Assets/arts/textures/icon/item/80.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 2912566e3db578f499edce4c3a88e8f9 +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/8001.png b/Assets/arts/textures/icon/item/8001.png new file mode 100644 index 000000000..98320bb11 Binary files /dev/null and b/Assets/arts/textures/icon/item/8001.png differ diff --git a/Assets/arts/textures/icon/item/8001.png.meta b/Assets/arts/textures/icon/item/8001.png.meta new file mode 100644 index 000000000..ea4d695f4 --- /dev/null +++ b/Assets/arts/textures/icon/item/8001.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 9bf5e26b9e35bdd48811f790d49d59df +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/81.png b/Assets/arts/textures/icon/item/81.png new file mode 100644 index 000000000..54a63e0fe Binary files /dev/null and b/Assets/arts/textures/icon/item/81.png differ diff --git a/Assets/arts/textures/icon/item/81.png.meta b/Assets/arts/textures/icon/item/81.png.meta new file mode 100644 index 000000000..427e364f8 --- /dev/null +++ b/Assets/arts/textures/icon/item/81.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: ed1b85e02f712664ba3dc142c56d5d55 +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/82.png b/Assets/arts/textures/icon/item/82.png new file mode 100644 index 000000000..9b69979d5 Binary files /dev/null and b/Assets/arts/textures/icon/item/82.png differ diff --git a/Assets/arts/textures/icon/item/82.png.meta b/Assets/arts/textures/icon/item/82.png.meta new file mode 100644 index 000000000..a6b11e566 --- /dev/null +++ b/Assets/arts/textures/icon/item/82.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: bbaeef1ec59e86149b25fbb1d915ccd5 +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/83.png b/Assets/arts/textures/icon/item/83.png new file mode 100644 index 000000000..e6f69ff76 Binary files /dev/null and b/Assets/arts/textures/icon/item/83.png differ diff --git a/Assets/arts/textures/icon/item/83.png.meta b/Assets/arts/textures/icon/item/83.png.meta new file mode 100644 index 000000000..247d387dc --- /dev/null +++ b/Assets/arts/textures/icon/item/83.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: c9cc9721c4a833447a1b2167e41ab3c0 +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/84.png b/Assets/arts/textures/icon/item/84.png new file mode 100644 index 000000000..dc34602a5 Binary files /dev/null and b/Assets/arts/textures/icon/item/84.png differ diff --git a/Assets/arts/textures/icon/item/84.png.meta b/Assets/arts/textures/icon/item/84.png.meta new file mode 100644 index 000000000..4e7b20670 --- /dev/null +++ b/Assets/arts/textures/icon/item/84.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: bd0ef4aa4c6ada340a9ef3ada97058fc +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/85.png b/Assets/arts/textures/icon/item/85.png new file mode 100644 index 000000000..8ec683a46 Binary files /dev/null and b/Assets/arts/textures/icon/item/85.png differ diff --git a/Assets/arts/textures/icon/item/85.png.meta b/Assets/arts/textures/icon/item/85.png.meta new file mode 100644 index 000000000..5ec8f2a55 --- /dev/null +++ b/Assets/arts/textures/icon/item/85.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: ee7d1fedc4aad7b4c8b19a284f5987d5 +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/87.png b/Assets/arts/textures/icon/item/87.png new file mode 100644 index 000000000..fe1fb1075 Binary files /dev/null and b/Assets/arts/textures/icon/item/87.png differ diff --git a/Assets/arts/textures/icon/item/87.png.meta b/Assets/arts/textures/icon/item/87.png.meta new file mode 100644 index 000000000..70277a872 --- /dev/null +++ b/Assets/arts/textures/icon/item/87.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 730d5b0002b9035428044b1fb49baf9a +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/88.png b/Assets/arts/textures/icon/item/88.png new file mode 100644 index 000000000..5c8dfa970 Binary files /dev/null and b/Assets/arts/textures/icon/item/88.png differ diff --git a/Assets/arts/textures/icon/item/88.png.meta b/Assets/arts/textures/icon/item/88.png.meta new file mode 100644 index 000000000..148a60681 --- /dev/null +++ b/Assets/arts/textures/icon/item/88.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 0110d30c4f939274dbd327104d604b5b +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/89.png b/Assets/arts/textures/icon/item/89.png new file mode 100644 index 000000000..b21ba6058 Binary files /dev/null and b/Assets/arts/textures/icon/item/89.png differ diff --git a/Assets/arts/textures/icon/item/89.png.meta b/Assets/arts/textures/icon/item/89.png.meta new file mode 100644 index 000000000..6956094a7 --- /dev/null +++ b/Assets/arts/textures/icon/item/89.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: d038ef73f8c29bd49bd37a4ab74cf5fb +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/90.png b/Assets/arts/textures/icon/item/90.png new file mode 100644 index 000000000..0ce3e49c8 Binary files /dev/null and b/Assets/arts/textures/icon/item/90.png differ diff --git a/Assets/arts/textures/icon/item/90.png.meta b/Assets/arts/textures/icon/item/90.png.meta new file mode 100644 index 000000000..b52ef0488 --- /dev/null +++ b/Assets/arts/textures/icon/item/90.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 41531a6001d3be5479cd9361c19bf105 +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/91.png b/Assets/arts/textures/icon/item/91.png new file mode 100644 index 000000000..6a36e0808 Binary files /dev/null and b/Assets/arts/textures/icon/item/91.png differ diff --git a/Assets/arts/textures/icon/item/91.png.meta b/Assets/arts/textures/icon/item/91.png.meta new file mode 100644 index 000000000..240c3d06a --- /dev/null +++ b/Assets/arts/textures/icon/item/91.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 3d45101e6a19d3c488046b3f86909259 +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/92.png b/Assets/arts/textures/icon/item/92.png new file mode 100644 index 000000000..323cd180b Binary files /dev/null and b/Assets/arts/textures/icon/item/92.png differ diff --git a/Assets/arts/textures/icon/item/92.png.meta b/Assets/arts/textures/icon/item/92.png.meta new file mode 100644 index 000000000..4c5d6be99 --- /dev/null +++ b/Assets/arts/textures/icon/item/92.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: ac2ea6f374ea829498aeab6cfcbcb073 +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/93.png b/Assets/arts/textures/icon/item/93.png new file mode 100644 index 000000000..4083f6141 Binary files /dev/null and b/Assets/arts/textures/icon/item/93.png differ diff --git a/Assets/arts/textures/icon/item/93.png.meta b/Assets/arts/textures/icon/item/93.png.meta new file mode 100644 index 000000000..914530754 --- /dev/null +++ b/Assets/arts/textures/icon/item/93.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 6b158f68a8d2af044a9eb14e03e52c06 +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/94.png b/Assets/arts/textures/icon/item/94.png new file mode 100644 index 000000000..690376ce6 Binary files /dev/null and b/Assets/arts/textures/icon/item/94.png differ diff --git a/Assets/arts/textures/icon/item/94.png.meta b/Assets/arts/textures/icon/item/94.png.meta new file mode 100644 index 000000000..ed9be5746 --- /dev/null +++ b/Assets/arts/textures/icon/item/94.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 33e85ae71811dae47a1448ab7f5301f5 +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/95.png b/Assets/arts/textures/icon/item/95.png new file mode 100644 index 000000000..600f70f82 Binary files /dev/null and b/Assets/arts/textures/icon/item/95.png differ diff --git a/Assets/arts/textures/icon/item/95.png.meta b/Assets/arts/textures/icon/item/95.png.meta new file mode 100644 index 000000000..4f503ca75 --- /dev/null +++ b/Assets/arts/textures/icon/item/95.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 0cc0aaee62eff3840a5f37e6066eb878 +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/96.png b/Assets/arts/textures/icon/item/96.png new file mode 100644 index 000000000..7651d8cc0 Binary files /dev/null and b/Assets/arts/textures/icon/item/96.png differ diff --git a/Assets/arts/textures/icon/item/96.png.meta b/Assets/arts/textures/icon/item/96.png.meta new file mode 100644 index 000000000..9ad57e771 --- /dev/null +++ b/Assets/arts/textures/icon/item/96.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: f5aff04e4d27de44b994b0b73a62d5d7 +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/97.png b/Assets/arts/textures/icon/item/97.png new file mode 100644 index 000000000..5e4bc2067 Binary files /dev/null and b/Assets/arts/textures/icon/item/97.png differ diff --git a/Assets/arts/textures/icon/item/97.png.meta b/Assets/arts/textures/icon/item/97.png.meta new file mode 100644 index 000000000..cb7580314 --- /dev/null +++ b/Assets/arts/textures/icon/item/97.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: cee9b7ab664144a4a89554c06e547b31 +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/98.png b/Assets/arts/textures/icon/item/98.png new file mode 100644 index 000000000..6e380541c Binary files /dev/null and b/Assets/arts/textures/icon/item/98.png differ diff --git a/Assets/arts/textures/icon/item/98.png.meta b/Assets/arts/textures/icon/item/98.png.meta new file mode 100644 index 000000000..84e546bc7 --- /dev/null +++ b/Assets/arts/textures/icon/item/98.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: fd127af80ac6d6543877f6a49b88b0cd +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/99.png b/Assets/arts/textures/icon/item/99.png new file mode 100644 index 000000000..d74a7b143 Binary files /dev/null and b/Assets/arts/textures/icon/item/99.png differ diff --git a/Assets/arts/textures/icon/item/99.png.meta b/Assets/arts/textures/icon/item/99.png.meta new file mode 100644 index 000000000..d17eef46d --- /dev/null +++ b/Assets/arts/textures/icon/item/99.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 242a5ed593c07ff409083c5ad6f36411 +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/frame_1.png b/Assets/arts/textures/icon/item/frame_1.png new file mode 100644 index 000000000..c7fba2712 Binary files /dev/null and b/Assets/arts/textures/icon/item/frame_1.png differ diff --git a/Assets/arts/textures/icon/item/frame_1.png.meta b/Assets/arts/textures/icon/item/frame_1.png.meta new file mode 100644 index 000000000..2441fa7b0 --- /dev/null +++ b/Assets/arts/textures/icon/item/frame_1.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: f6e082a68016b8b4ea32bf4edf9bba42 +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/frame_2.png b/Assets/arts/textures/icon/item/frame_2.png new file mode 100644 index 000000000..7bca2bdbe Binary files /dev/null and b/Assets/arts/textures/icon/item/frame_2.png differ diff --git a/Assets/arts/textures/icon/item/frame_2.png.meta b/Assets/arts/textures/icon/item/frame_2.png.meta new file mode 100644 index 000000000..253c578ce --- /dev/null +++ b/Assets/arts/textures/icon/item/frame_2.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: c6dd28813849c724b9393c5dba8d8932 +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/frame_3.png b/Assets/arts/textures/icon/item/frame_3.png new file mode 100644 index 000000000..1f5828608 Binary files /dev/null and b/Assets/arts/textures/icon/item/frame_3.png differ diff --git a/Assets/arts/textures/icon/item/frame_3.png.meta b/Assets/arts/textures/icon/item/frame_3.png.meta new file mode 100644 index 000000000..2cb650d86 --- /dev/null +++ b/Assets/arts/textures/icon/item/frame_3.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 1c26d77ff4f175f48884f901f60af665 +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/frame_4.png b/Assets/arts/textures/icon/item/frame_4.png new file mode 100644 index 000000000..8acd1743c Binary files /dev/null and b/Assets/arts/textures/icon/item/frame_4.png differ diff --git a/Assets/arts/textures/icon/item/frame_4.png.meta b/Assets/arts/textures/icon/item/frame_4.png.meta new file mode 100644 index 000000000..e71fc890e --- /dev/null +++ b/Assets/arts/textures/icon/item/frame_4.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 17507965a5b66704cb51bf0be72b64a6 +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/frame_5.png b/Assets/arts/textures/icon/item/frame_5.png new file mode 100644 index 000000000..66ec2115b Binary files /dev/null and b/Assets/arts/textures/icon/item/frame_5.png differ diff --git a/Assets/arts/textures/icon/item/frame_5.png.meta b/Assets/arts/textures/icon/item/frame_5.png.meta new file mode 100644 index 000000000..df6b4ba12 --- /dev/null +++ b/Assets/arts/textures/icon/item/frame_5.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: ca8e2136954e50e45b6d17cd6e5fc021 +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/frame_6.png b/Assets/arts/textures/icon/item/frame_6.png new file mode 100644 index 000000000..65d0c8ddb Binary files /dev/null and b/Assets/arts/textures/icon/item/frame_6.png differ diff --git a/Assets/arts/textures/icon/item/frame_6.png.meta b/Assets/arts/textures/icon/item/frame_6.png.meta new file mode 100644 index 000000000..caf32830b --- /dev/null +++ b/Assets/arts/textures/icon/item/frame_6.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 3ca0e5365e5b08b419e685722f0a8ef1 +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/frame_7.png b/Assets/arts/textures/icon/item/frame_7.png new file mode 100644 index 000000000..7d6bb3d56 Binary files /dev/null and b/Assets/arts/textures/icon/item/frame_7.png differ diff --git a/Assets/arts/textures/icon/item/frame_7.png.meta b/Assets/arts/textures/icon/item/frame_7.png.meta new file mode 100644 index 000000000..a4bd5e367 --- /dev/null +++ b/Assets/arts/textures/icon/item/frame_7.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: dfa197b44484f86498f28032c5142626 +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/frame_8.png b/Assets/arts/textures/icon/item/frame_8.png new file mode 100644 index 000000000..9b5c245b5 Binary files /dev/null and b/Assets/arts/textures/icon/item/frame_8.png differ diff --git a/Assets/arts/textures/icon/item/frame_8.png.meta b/Assets/arts/textures/icon/item/frame_8.png.meta new file mode 100644 index 000000000..3774f630f --- /dev/null +++ b/Assets/arts/textures/icon/item/frame_8.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: b19d75d96b5ac95439b99cace685acea +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/frame_ssr_1.png b/Assets/arts/textures/icon/item/frame_ssr_1.png new file mode 100644 index 000000000..2af68e57b Binary files /dev/null and b/Assets/arts/textures/icon/item/frame_ssr_1.png differ diff --git a/Assets/arts/textures/icon/item/frame_ssr_1.png.meta b/Assets/arts/textures/icon/item/frame_ssr_1.png.meta new file mode 100644 index 000000000..c04e9e4ef --- /dev/null +++ b/Assets/arts/textures/icon/item/frame_ssr_1.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: def682e1d59f5e243b33ea1d0ec60137 +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/jewelry.meta b/Assets/arts/textures/icon/jewelry.meta new file mode 100644 index 000000000..c6c279bde --- /dev/null +++ b/Assets/arts/textures/icon/jewelry.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 91bc38a177a2cfc478ec428f1bf5bb31 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/arts/textures/icon/skill.meta b/Assets/arts/textures/icon/skill.meta new file mode 100644 index 000000000..c0626c803 --- /dev/null +++ b/Assets/arts/textures/icon/skill.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 30c2c680270121d458545797b9ab1bf7 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/arts/textures/ui/battle/battle_auto.png b/Assets/arts/textures/ui/battle/battle_auto.png deleted file mode 100644 index 5421e70d2..000000000 Binary files a/Assets/arts/textures/ui/battle/battle_auto.png and /dev/null differ diff --git a/Assets/arts/textures/ui/battle/battle_auto_bg.png b/Assets/arts/textures/ui/battle/battle_auto_bg.png deleted file mode 100644 index af0b36162..000000000 Binary files a/Assets/arts/textures/ui/battle/battle_auto_bg.png and /dev/null differ diff --git a/Assets/arts/textures/ui/battle/battle_bg_1.png b/Assets/arts/textures/ui/battle/battle_bg_1.png deleted file mode 100644 index 00f9d030f..000000000 Binary files a/Assets/arts/textures/ui/battle/battle_bg_1.png and /dev/null differ diff --git a/Assets/arts/textures/ui/battle/battle_bg_1.png.meta b/Assets/arts/textures/ui/battle/battle_bg_1.png.meta deleted file mode 100644 index a6cda6f5f..000000000 --- a/Assets/arts/textures/ui/battle/battle_bg_1.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: 2179db863539f854bb4be474b32295a8 -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: 26, y: 25, z: 26, 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/battle.ab - assetBundleVariant: diff --git a/Assets/arts/textures/ui/battle/battle_bg_2.png b/Assets/arts/textures/ui/battle/battle_bg_2.png deleted file mode 100644 index f9cd57599..000000000 Binary files a/Assets/arts/textures/ui/battle/battle_bg_2.png and /dev/null differ diff --git a/Assets/arts/textures/ui/battle/battle_bg_3.png b/Assets/arts/textures/ui/battle/battle_bg_3.png deleted file mode 100644 index d85cc9fb2..000000000 Binary files a/Assets/arts/textures/ui/battle/battle_bg_3.png and /dev/null differ diff --git a/Assets/arts/textures/ui/battle/battle_bg_4.png b/Assets/arts/textures/ui/battle/battle_bg_4.png deleted file mode 100644 index d36f57765..000000000 Binary files a/Assets/arts/textures/ui/battle/battle_bg_4.png and /dev/null differ diff --git a/Assets/arts/textures/ui/battle/battle_bg_4.png.meta b/Assets/arts/textures/ui/battle/battle_bg_4.png.meta deleted file mode 100644 index dd496d3c6..000000000 --- a/Assets/arts/textures/ui/battle/battle_bg_4.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: 6c3b2af79dedde84195379be70be26df -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: 20, y: 20, z: 20, w: 20} - 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_btn_1.png b/Assets/arts/textures/ui/battle/battle_btn_1.png deleted file mode 100644 index 670f60590..000000000 Binary files a/Assets/arts/textures/ui/battle/battle_btn_1.png and /dev/null differ diff --git a/Assets/arts/textures/ui/battle/battle_btn_1.png.meta b/Assets/arts/textures/ui/battle/battle_btn_1.png.meta deleted file mode 100644 index f90d4c91b..000000000 --- a/Assets/arts/textures/ui/battle/battle_btn_1.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: 947026bf44292434da361b91dc63a414 -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_btn_setting.png b/Assets/arts/textures/ui/battle/battle_btn_setting.png new file mode 100644 index 000000000..a2468c4f6 Binary files /dev/null and b/Assets/arts/textures/ui/battle/battle_btn_setting.png differ diff --git a/Assets/arts/textures/ui/main/common_btn_mian_2.png.meta b/Assets/arts/textures/ui/battle/battle_btn_setting.png.meta similarity index 97% rename from Assets/arts/textures/ui/main/common_btn_mian_2.png.meta rename to Assets/arts/textures/ui/battle/battle_btn_setting.png.meta index 1d9f98e78..ec31e68e8 100644 --- a/Assets/arts/textures/ui/main/common_btn_mian_2.png.meta +++ b/Assets/arts/textures/ui/battle/battle_btn_setting.png.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 93f125100e3ef1d4a9a9811b8b425000 +guid: 306205473d3cf1f4a9d821c3e2971092 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/battle/battle_character_1.png b/Assets/arts/textures/ui/battle/battle_character_1.png deleted file mode 100644 index 132592f58..000000000 Binary files a/Assets/arts/textures/ui/battle/battle_character_1.png and /dev/null differ diff --git a/Assets/arts/textures/ui/battle/battle_character_1.png.meta b/Assets/arts/textures/ui/battle/battle_character_1.png.meta deleted file mode 100644 index e71afc03b..000000000 --- a/Assets/arts/textures/ui/battle/battle_character_1.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: 47bde67f4ab74e249a2efb9f055fae60 -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_character_2.png b/Assets/arts/textures/ui/battle/battle_character_2.png deleted file mode 100644 index 149a9fcd7..000000000 Binary files a/Assets/arts/textures/ui/battle/battle_character_2.png and /dev/null differ diff --git a/Assets/arts/textures/ui/battle/battle_character_2.png.meta b/Assets/arts/textures/ui/battle/battle_character_2.png.meta deleted file mode 100644 index c9672f590..000000000 --- a/Assets/arts/textures/ui/battle/battle_character_2.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: c48012b273539f640a3478de24a8e3f0 -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_character_3.png b/Assets/arts/textures/ui/battle/battle_character_3.png deleted file mode 100644 index 037e4aeaa..000000000 Binary files a/Assets/arts/textures/ui/battle/battle_character_3.png and /dev/null differ diff --git a/Assets/arts/textures/ui/battle/battle_character_3.png.meta b/Assets/arts/textures/ui/battle/battle_character_3.png.meta deleted file mode 100644 index b9509b0a4..000000000 --- a/Assets/arts/textures/ui/battle/battle_character_3.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: 2733c658ca3caa24795b397d15e2712e -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_character_4.png b/Assets/arts/textures/ui/battle/battle_character_4.png deleted file mode 100644 index 7826403d8..000000000 Binary files a/Assets/arts/textures/ui/battle/battle_character_4.png and /dev/null differ diff --git a/Assets/arts/textures/ui/battle/battle_character_4.png.meta b/Assets/arts/textures/ui/battle/battle_character_4.png.meta deleted file mode 100644 index db360ab04..000000000 --- a/Assets/arts/textures/ui/battle/battle_character_4.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: d1cc059771789ff4e9d5067e06c2d489 -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_character_5.png b/Assets/arts/textures/ui/battle/battle_character_5.png deleted file mode 100644 index 77d5522a2..000000000 Binary files a/Assets/arts/textures/ui/battle/battle_character_5.png and /dev/null differ diff --git a/Assets/arts/textures/ui/battle/battle_character_5.png.meta b/Assets/arts/textures/ui/battle/battle_character_5.png.meta deleted file mode 100644 index 4a8d72713..000000000 --- a/Assets/arts/textures/ui/battle/battle_character_5.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: 93073adf528c5b341ab595f949a009f4 -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_character_6.png b/Assets/arts/textures/ui/battle/battle_character_6.png deleted file mode 100644 index c54038bdb..000000000 Binary files a/Assets/arts/textures/ui/battle/battle_character_6.png and /dev/null differ diff --git a/Assets/arts/textures/ui/battle/battle_character_6.png.meta b/Assets/arts/textures/ui/battle/battle_character_6.png.meta deleted file mode 100644 index 2664808d7..000000000 --- a/Assets/arts/textures/ui/battle/battle_character_6.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: 2617bec0144c22b4faca6ad3c5aec44b -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_character_7.png b/Assets/arts/textures/ui/battle/battle_character_7.png deleted file mode 100644 index 206ffd031..000000000 Binary files a/Assets/arts/textures/ui/battle/battle_character_7.png and /dev/null differ diff --git a/Assets/arts/textures/ui/battle/battle_character_7.png.meta b/Assets/arts/textures/ui/battle/battle_character_7.png.meta deleted file mode 100644 index 81bb831d6..000000000 --- a/Assets/arts/textures/ui/battle/battle_character_7.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: 0eb2921e2e2d3b544b2f6ef55a9fb99e -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_1.png b/Assets/arts/textures/ui/battle/battle_dec_1.png deleted file mode 100644 index f861fcb9a..000000000 Binary files a/Assets/arts/textures/ui/battle/battle_dec_1.png and /dev/null differ diff --git a/Assets/arts/textures/ui/battle/battle_dec_1.png.meta b/Assets/arts/textures/ui/battle/battle_dec_1.png.meta deleted file mode 100644 index 274dac916..000000000 --- a/Assets/arts/textures/ui/battle/battle_dec_1.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: 4fbcff23176961b46b6899af3f82584c -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_2.png b/Assets/arts/textures/ui/battle/battle_dec_2.png deleted file mode 100644 index 35fd29e4d..000000000 Binary files a/Assets/arts/textures/ui/battle/battle_dec_2.png and /dev/null differ diff --git a/Assets/arts/textures/ui/battle/battle_dec_2.png.meta b/Assets/arts/textures/ui/battle/battle_dec_2.png.meta deleted file mode 100644 index ac29bb5dd..000000000 --- a/Assets/arts/textures/ui/battle/battle_dec_2.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: f9f45f24d28440f4180d80d60f44b59b -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_3.png b/Assets/arts/textures/ui/battle/battle_dec_3.png deleted file mode 100644 index ae3615bcd..000000000 Binary files a/Assets/arts/textures/ui/battle/battle_dec_3.png and /dev/null differ diff --git a/Assets/arts/textures/ui/battle/battle_dec_3.png.meta b/Assets/arts/textures/ui/battle/battle_dec_3.png.meta deleted file mode 100644 index 2fc27787f..000000000 --- a/Assets/arts/textures/ui/battle/battle_dec_3.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: c4f4be5986df5834c80184167807b7d2 -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_4.png b/Assets/arts/textures/ui/battle/battle_dec_4.png deleted file mode 100644 index 3daf48686..000000000 Binary files a/Assets/arts/textures/ui/battle/battle_dec_4.png and /dev/null differ diff --git a/Assets/arts/textures/ui/battle/battle_dec_4.png.meta b/Assets/arts/textures/ui/battle/battle_dec_4.png.meta deleted file mode 100644 index 7c4f9410b..000000000 --- a/Assets/arts/textures/ui/battle/battle_dec_4.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: b9090a57660d874418825ee54393876c -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 deleted file mode 100644 index 1c8c34a67..000000000 Binary files a/Assets/arts/textures/ui/battle/battle_dec_5.png and /dev/null 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 deleted file mode 100644 index 71b7bdb62..000000000 --- a/Assets/arts/textures/ui/battle/battle_dec_5.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: 6e1911e351324024d8f1268d5303661e -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 deleted file mode 100644 index 56a77faf2..000000000 Binary files a/Assets/arts/textures/ui/battle/battle_dec_6.png and /dev/null 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 deleted file mode 100644 index 27e556dac..000000000 --- a/Assets/arts/textures/ui/battle/battle_dec_6.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: b21b3216e18d4cc4c8dfa8ff164eedc8 -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_direction.png b/Assets/arts/textures/ui/battle/battle_direction.png deleted file mode 100644 index c04610f17..000000000 Binary files a/Assets/arts/textures/ui/battle/battle_direction.png and /dev/null differ diff --git a/Assets/arts/textures/ui/battle/battle_direction.png.meta b/Assets/arts/textures/ui/battle/battle_direction.png.meta deleted file mode 100644 index 1a46ee6ed..000000000 --- a/Assets/arts/textures/ui/battle/battle_direction.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: 207cc0d79c429f34bb56eee89b78e646 -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_pause.png b/Assets/arts/textures/ui/battle/battle_pause.png deleted file mode 100644 index 7e3441bb1..000000000 Binary files a/Assets/arts/textures/ui/battle/battle_pause.png and /dev/null differ diff --git a/Assets/arts/textures/ui/battle/battle_pause.png.meta b/Assets/arts/textures/ui/battle/battle_pause.png.meta deleted file mode 100644 index aac16fe54..000000000 --- a/Assets/arts/textures/ui/battle/battle_pause.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: adca04ca0aaf73145ac3a20604e584aa -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_progress_1.png b/Assets/arts/textures/ui/battle/battle_progress_1.png deleted file mode 100644 index c874c46bb..000000000 Binary files a/Assets/arts/textures/ui/battle/battle_progress_1.png and /dev/null differ diff --git a/Assets/arts/textures/ui/battle/battle_progress_1.png.meta b/Assets/arts/textures/ui/battle/battle_progress_1.png.meta deleted file mode 100644 index 6622581f2..000000000 --- a/Assets/arts/textures/ui/battle/battle_progress_1.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: a457b4101510c1d41a1407939d159db0 -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_progress_2.png b/Assets/arts/textures/ui/battle/battle_progress_2.png deleted file mode 100644 index 490b490f9..000000000 Binary files a/Assets/arts/textures/ui/battle/battle_progress_2.png and /dev/null differ diff --git a/Assets/arts/textures/ui/battle/battle_progress_2.png.meta b/Assets/arts/textures/ui/battle/battle_progress_2.png.meta deleted file mode 100644 index 2e74f150c..000000000 --- a/Assets/arts/textures/ui/battle/battle_progress_2.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: d5c45af4a3cf21445a4604e6015b135d -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: 0, z: 24, 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_progress_3.png b/Assets/arts/textures/ui/battle/battle_progress_3.png deleted file mode 100644 index a0ff41926..000000000 Binary files a/Assets/arts/textures/ui/battle/battle_progress_3.png and /dev/null differ diff --git a/Assets/arts/textures/ui/battle/battle_progress_3.png.meta b/Assets/arts/textures/ui/battle/battle_progress_3.png.meta deleted file mode 100644 index 4b8305447..000000000 --- a/Assets/arts/textures/ui/battle/battle_progress_3.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: ca33a9f2d445f424db5f1e4c1ca208c4 -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_progress_bg_1.png b/Assets/arts/textures/ui/battle/battle_progress_bg_1.png deleted file mode 100644 index 429c6bbf2..000000000 Binary files a/Assets/arts/textures/ui/battle/battle_progress_bg_1.png and /dev/null differ diff --git a/Assets/arts/textures/ui/battle/battle_progress_bg_1.png.meta b/Assets/arts/textures/ui/battle/battle_progress_bg_1.png.meta deleted file mode 100644 index 347414e1d..000000000 --- a/Assets/arts/textures/ui/battle/battle_progress_bg_1.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: 77a01b893c0fca240a772c67412944f7 -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_progress_bg_2.png b/Assets/arts/textures/ui/battle/battle_progress_bg_2.png deleted file mode 100644 index 026cf9ae3..000000000 Binary files a/Assets/arts/textures/ui/battle/battle_progress_bg_2.png and /dev/null differ diff --git a/Assets/arts/textures/ui/battle/battle_progress_bg_2.png.meta b/Assets/arts/textures/ui/battle/battle_progress_bg_2.png.meta deleted file mode 100644 index 2314a4ec8..000000000 --- a/Assets/arts/textures/ui/battle/battle_progress_bg_2.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: 83e28291b71db5f4fbc9110cea846f28 -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: 16, y: 0, z: 16, 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_revive_1.png b/Assets/arts/textures/ui/battle/battle_revive_1.png deleted file mode 100644 index feb3c4485..000000000 Binary files a/Assets/arts/textures/ui/battle/battle_revive_1.png and /dev/null differ diff --git a/Assets/arts/textures/ui/battle/battle_revive_1.png.meta b/Assets/arts/textures/ui/battle/battle_revive_1.png.meta deleted file mode 100644 index d8271470f..000000000 --- a/Assets/arts/textures/ui/battle/battle_revive_1.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: 90fe8f36cdd3ac74299f118bb75fadb5 -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_revive_2.png b/Assets/arts/textures/ui/battle/battle_revive_2.png deleted file mode 100644 index 27124fbb7..000000000 Binary files a/Assets/arts/textures/ui/battle/battle_revive_2.png and /dev/null differ diff --git a/Assets/arts/textures/ui/battle/battle_revive_2.png.meta b/Assets/arts/textures/ui/battle/battle_revive_2.png.meta deleted file mode 100644 index 7f5fc5133..000000000 --- a/Assets/arts/textures/ui/battle/battle_revive_2.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: 99d26c7a050f37941bb1cd15870f9496 -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_scope_1.png b/Assets/arts/textures/ui/battle/battle_scope_1.png deleted file mode 100644 index ccd7f35a3..000000000 Binary files a/Assets/arts/textures/ui/battle/battle_scope_1.png and /dev/null differ diff --git a/Assets/arts/textures/ui/battle/battle_scope_1.png.meta b/Assets/arts/textures/ui/battle/battle_scope_1.png.meta deleted file mode 100644 index 39ab06a50..000000000 --- a/Assets/arts/textures/ui/battle/battle_scope_1.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: 7e94966cb8ff1024f97cd77256ae41f9 -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_scope_2.png b/Assets/arts/textures/ui/battle/battle_scope_2.png deleted file mode 100644 index f4b07928e..000000000 Binary files a/Assets/arts/textures/ui/battle/battle_scope_2.png and /dev/null differ diff --git a/Assets/arts/textures/ui/battle/battle_scope_2.png.meta b/Assets/arts/textures/ui/battle/battle_scope_2.png.meta deleted file mode 100644 index 67f49d9b6..000000000 --- a/Assets/arts/textures/ui/battle/battle_scope_2.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: 4a352042cfba9ab45a81df71e9f95fcf -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_scope_3.png b/Assets/arts/textures/ui/battle/battle_scope_3.png deleted file mode 100644 index f2c741c7d..000000000 Binary files a/Assets/arts/textures/ui/battle/battle_scope_3.png and /dev/null differ diff --git a/Assets/arts/textures/ui/battle/battle_scope_3.png.meta b/Assets/arts/textures/ui/battle/battle_scope_3.png.meta deleted file mode 100644 index c1a267a61..000000000 --- a/Assets/arts/textures/ui/battle/battle_scope_3.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: dc406f8e88b38c540b895226e5440edf -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: 5, y: 5, z: 5, w: 5} - 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_scope_4.png b/Assets/arts/textures/ui/battle/battle_scope_4.png deleted file mode 100644 index 06768f152..000000000 Binary files a/Assets/arts/textures/ui/battle/battle_scope_4.png and /dev/null differ diff --git a/Assets/arts/textures/ui/battle/battle_scope_4.png.meta b/Assets/arts/textures/ui/battle/battle_scope_4.png.meta deleted file mode 100644 index bd7a34ace..000000000 --- a/Assets/arts/textures/ui/battle/battle_scope_4.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: 00899a7c91a7b6d488a6d77fcc26ec0d -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_time_1.png b/Assets/arts/textures/ui/battle/battle_time_1.png deleted file mode 100644 index a74a9c6cd..000000000 Binary files a/Assets/arts/textures/ui/battle/battle_time_1.png and /dev/null differ diff --git a/Assets/arts/textures/ui/battle/battle_time_1.png.meta b/Assets/arts/textures/ui/battle/battle_time_1.png.meta deleted file mode 100644 index 7407107a4..000000000 --- a/Assets/arts/textures/ui/battle/battle_time_1.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: d393538d2c669944bbd62df3f0d0d846 -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_warning.png b/Assets/arts/textures/ui/battle/battle_warning.png deleted file mode 100644 index 926a9bfd8..000000000 Binary files a/Assets/arts/textures/ui/battle/battle_warning.png and /dev/null differ diff --git a/Assets/arts/textures/ui/battle/battle_warning.png.meta b/Assets/arts/textures/ui/battle/battle_warning.png.meta deleted file mode 100644 index 7b9826ff7..000000000 --- a/Assets/arts/textures/ui/battle/battle_warning.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: 51c5c5f1a0f7cc6499b3659fa7398221 -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/blue_1.png b/Assets/arts/textures/ui/battle/blue_1.png new file mode 100644 index 000000000..356e4239c Binary files /dev/null and b/Assets/arts/textures/ui/battle/blue_1.png differ diff --git a/Assets/arts/textures/ui/main/common_btn_mian_3.png.meta b/Assets/arts/textures/ui/battle/blue_1.png.meta similarity index 97% rename from Assets/arts/textures/ui/main/common_btn_mian_3.png.meta rename to Assets/arts/textures/ui/battle/blue_1.png.meta index 202a53bdc..d46689cf7 100644 --- a/Assets/arts/textures/ui/main/common_btn_mian_3.png.meta +++ b/Assets/arts/textures/ui/battle/blue_1.png.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: f1196dac3882f2a439b3fe5fb94682d9 +guid: 9bb2f10b15aa44a4fa22ec0655146511 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/battle/green_1.png b/Assets/arts/textures/ui/battle/green_1.png new file mode 100644 index 000000000..f2f67d22c Binary files /dev/null and b/Assets/arts/textures/ui/battle/green_1.png differ diff --git a/Assets/arts/textures/ui/main/common_btn_mian_4.png.meta b/Assets/arts/textures/ui/battle/green_1.png.meta similarity index 97% rename from Assets/arts/textures/ui/main/common_btn_mian_4.png.meta rename to Assets/arts/textures/ui/battle/green_1.png.meta index 40eef1fe3..d463f1e20 100644 --- a/Assets/arts/textures/ui/main/common_btn_mian_4.png.meta +++ b/Assets/arts/textures/ui/battle/green_1.png.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: a5b4dd82d4cb1304c9153886e68773c5 +guid: 634f8eff83cb4cd4780e6afae3bc6c65 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/battle/purple_1.png b/Assets/arts/textures/ui/battle/purple_1.png new file mode 100644 index 000000000..818a179a0 Binary files /dev/null and b/Assets/arts/textures/ui/battle/purple_1.png differ diff --git a/Assets/arts/textures/ui/main/common_btn_mian_1.png.meta b/Assets/arts/textures/ui/battle/purple_1.png.meta similarity index 97% rename from Assets/arts/textures/ui/main/common_btn_mian_1.png.meta rename to Assets/arts/textures/ui/battle/purple_1.png.meta index 4b433017c..38f543ac2 100644 --- a/Assets/arts/textures/ui/main/common_btn_mian_1.png.meta +++ b/Assets/arts/textures/ui/battle/purple_1.png.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 9013520d64f90f34aacba77d722b2437 +guid: 4883eddf5771c424c964bc2e32f2cb09 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/battle/red_1.png b/Assets/arts/textures/ui/battle/red_1.png new file mode 100644 index 000000000..c170d0f64 Binary files /dev/null and b/Assets/arts/textures/ui/battle/red_1.png differ diff --git a/Assets/arts/textures/ui/battle/red_1.png.meta b/Assets/arts/textures/ui/battle/red_1.png.meta new file mode 100644 index 000000000..a119358bf --- /dev/null +++ b/Assets/arts/textures/ui/battle/red_1.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 90cd8a98ab36f5f429ca27d808dc664f +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/yellow_1.png b/Assets/arts/textures/ui/battle/yellow_1.png new file mode 100644 index 000000000..2de86921d Binary files /dev/null and b/Assets/arts/textures/ui/battle/yellow_1.png differ diff --git a/Assets/arts/textures/ui/battle/yellow_1.png.meta b/Assets/arts/textures/ui/battle/yellow_1.png.meta new file mode 100644 index 000000000..13573b55f --- /dev/null +++ b/Assets/arts/textures/ui/battle/yellow_1.png.meta @@ -0,0 +1,132 @@ +fileFormatVersion: 2 +guid: 9f4d825138b34164cb6e9e64406dd12a +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/login.meta b/Assets/arts/textures/ui/login.meta deleted file mode 100644 index 35e2effbc..000000000 --- a/Assets/arts/textures/ui/login.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: a2ecc7f011a2c5642933348ed8962a22 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/arts/textures/ui/login/login_cn.png b/Assets/arts/textures/ui/login/login_cn.png deleted file mode 100644 index 098b80377..000000000 Binary files a/Assets/arts/textures/ui/login/login_cn.png and /dev/null differ diff --git a/Assets/arts/textures/ui/login/login_cn.png.meta b/Assets/arts/textures/ui/login/login_cn.png.meta deleted file mode 100644 index a79cb8db6..000000000 --- a/Assets/arts/textures/ui/login/login_cn.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: acdf294cbd7f8d54b94fa693b91a34ae -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/login.ab - assetBundleVariant: diff --git a/Assets/arts/textures/ui/login/login_en.png b/Assets/arts/textures/ui/login/login_en.png deleted file mode 100644 index 14bf2258f..000000000 Binary files a/Assets/arts/textures/ui/login/login_en.png and /dev/null differ diff --git a/Assets/arts/textures/ui/login/login_en.png.meta b/Assets/arts/textures/ui/login/login_en.png.meta deleted file mode 100644 index 758fb0352..000000000 --- a/Assets/arts/textures/ui/login/login_en.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: 1c6e013354e99e841b7b7f5be294a6e7 -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/login.ab - assetBundleVariant: diff --git a/Assets/arts/textures/ui/login/login_zh.png b/Assets/arts/textures/ui/login/login_zh.png deleted file mode 100644 index 458c21051..000000000 Binary files a/Assets/arts/textures/ui/login/login_zh.png and /dev/null differ diff --git a/Assets/arts/textures/ui/login/login_zh.png.meta b/Assets/arts/textures/ui/login/login_zh.png.meta deleted file mode 100644 index b843c43be..000000000 --- a/Assets/arts/textures/ui/login/login_zh.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: 0467ebe2d6abd8741b4de176ef36e93d -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/login.ab - assetBundleVariant: diff --git a/Assets/arts/textures/ui/main/common_btn_mian_1.png b/Assets/arts/textures/ui/main/common_btn_mian_1.png deleted file mode 100644 index 34af403c2..000000000 Binary files a/Assets/arts/textures/ui/main/common_btn_mian_1.png and /dev/null differ diff --git a/Assets/arts/textures/ui/main/common_btn_mian_2.png b/Assets/arts/textures/ui/main/common_btn_mian_2.png deleted file mode 100644 index 75b0c5c54..000000000 Binary files a/Assets/arts/textures/ui/main/common_btn_mian_2.png and /dev/null differ diff --git a/Assets/arts/textures/ui/main/common_btn_mian_3.png b/Assets/arts/textures/ui/main/common_btn_mian_3.png deleted file mode 100644 index 285c16d3e..000000000 Binary files a/Assets/arts/textures/ui/main/common_btn_mian_3.png and /dev/null differ diff --git a/Assets/arts/textures/ui/main/common_btn_mian_4.png b/Assets/arts/textures/ui/main/common_btn_mian_4.png deleted file mode 100644 index 8416f5bf7..000000000 Binary files a/Assets/arts/textures/ui/main/common_btn_mian_4.png and /dev/null differ diff --git a/Assets/arts/textures/ui/main/common_btn_mian_5.png b/Assets/arts/textures/ui/main/common_btn_mian_5.png deleted file mode 100644 index 683ef096a..000000000 Binary files a/Assets/arts/textures/ui/main/common_btn_mian_5.png and /dev/null differ diff --git a/Assets/arts/textures/ui/main/common_btn_mian_5.png.meta b/Assets/arts/textures/ui/main/common_btn_mian_5.png.meta deleted file mode 100644 index b8933bb84..000000000 --- a/Assets/arts/textures/ui/main/common_btn_mian_5.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: 34f18226bcfd065408c37f11782bd537 -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/main.ab - assetBundleVariant: diff --git a/Assets/arts/textures/ui/main/main_bg_1.png b/Assets/arts/textures/ui/main/main_bg_1.png deleted file mode 100644 index 147673cb4..000000000 Binary files a/Assets/arts/textures/ui/main/main_bg_1.png and /dev/null differ diff --git a/Assets/arts/textures/ui/main/main_bg_2.png b/Assets/arts/textures/ui/main/main_bg_2.png deleted file mode 100644 index 86297ff38..000000000 Binary files a/Assets/arts/textures/ui/main/main_bg_2.png and /dev/null differ diff --git a/Assets/arts/textures/ui/main/main_btn_1.png b/Assets/arts/textures/ui/main/main_btn_1.png deleted file mode 100644 index 48e5df00f..000000000 Binary files a/Assets/arts/textures/ui/main/main_btn_1.png and /dev/null differ diff --git a/Assets/arts/textures/ui/main/main_btn_1.png.meta b/Assets/arts/textures/ui/main/main_btn_1.png.meta deleted file mode 100644 index 43754ec88..000000000 --- a/Assets/arts/textures/ui/main/main_btn_1.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: 7735d0267f3eab74581365793d41e273 -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/main.ab - assetBundleVariant: diff --git a/Assets/arts/textures/ui/main/main_btn_1_1.png b/Assets/arts/textures/ui/main/main_btn_1_1.png deleted file mode 100644 index b9cb59e58..000000000 Binary files a/Assets/arts/textures/ui/main/main_btn_1_1.png and /dev/null differ diff --git a/Assets/arts/textures/ui/main/main_btn_1_1.png.meta b/Assets/arts/textures/ui/main/main_btn_1_1.png.meta deleted file mode 100644 index 534fef5b5..000000000 --- a/Assets/arts/textures/ui/main/main_btn_1_1.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: a620f5a64995ff046a33fbb33ce224f4 -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/main.ab - assetBundleVariant: diff --git a/Assets/arts/textures/ui/main/main_btn_2.png b/Assets/arts/textures/ui/main/main_btn_2.png deleted file mode 100644 index f51dbaa2e..000000000 Binary files a/Assets/arts/textures/ui/main/main_btn_2.png and /dev/null differ diff --git a/Assets/arts/textures/ui/main/main_btn_2.png.meta b/Assets/arts/textures/ui/main/main_btn_2.png.meta deleted file mode 100644 index ed5d1cba2..000000000 --- a/Assets/arts/textures/ui/main/main_btn_2.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: b9c3b304210b5174aa4d6f93efa22822 -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/main.ab - assetBundleVariant: diff --git a/Assets/arts/textures/ui/main/main_btn_2_1.png b/Assets/arts/textures/ui/main/main_btn_2_1.png deleted file mode 100644 index 3839c97a2..000000000 Binary files a/Assets/arts/textures/ui/main/main_btn_2_1.png and /dev/null differ diff --git a/Assets/arts/textures/ui/main/main_btn_2_1.png.meta b/Assets/arts/textures/ui/main/main_btn_2_1.png.meta deleted file mode 100644 index f9163ecb4..000000000 --- a/Assets/arts/textures/ui/main/main_btn_2_1.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: f2f820cb6f69cc84493dbcd3f12f0a1b -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/main.ab - assetBundleVariant: diff --git a/Assets/arts/textures/ui/main/main_btn_3.png b/Assets/arts/textures/ui/main/main_btn_3.png deleted file mode 100644 index 8633f1471..000000000 Binary files a/Assets/arts/textures/ui/main/main_btn_3.png and /dev/null differ diff --git a/Assets/arts/textures/ui/main/main_btn_3.png.meta b/Assets/arts/textures/ui/main/main_btn_3.png.meta deleted file mode 100644 index e2dc86da2..000000000 --- a/Assets/arts/textures/ui/main/main_btn_3.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: 79b02731b4160574d98cfa5688de5caf -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/main.ab - assetBundleVariant: diff --git a/Assets/arts/textures/ui/main/main_btn_3_1.png b/Assets/arts/textures/ui/main/main_btn_3_1.png deleted file mode 100644 index 5cde8e88f..000000000 Binary files a/Assets/arts/textures/ui/main/main_btn_3_1.png and /dev/null differ diff --git a/Assets/arts/textures/ui/main/main_btn_3_1.png.meta b/Assets/arts/textures/ui/main/main_btn_3_1.png.meta deleted file mode 100644 index a91406de5..000000000 --- a/Assets/arts/textures/ui/main/main_btn_3_1.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: e338d0cd5ee255247bc75edaca98a289 -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/main.ab - assetBundleVariant: diff --git a/Assets/arts/textures/ui/main/main_btn_4.png b/Assets/arts/textures/ui/main/main_btn_4.png deleted file mode 100644 index 497c3f9e1..000000000 Binary files a/Assets/arts/textures/ui/main/main_btn_4.png and /dev/null differ diff --git a/Assets/arts/textures/ui/main/main_btn_4.png.meta b/Assets/arts/textures/ui/main/main_btn_4.png.meta deleted file mode 100644 index fe69eb73f..000000000 --- a/Assets/arts/textures/ui/main/main_btn_4.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: 27997ca86dd76ec469a45226e3a36035 -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/main.ab - assetBundleVariant: diff --git a/Assets/arts/textures/ui/main/main_btn_4_1.png b/Assets/arts/textures/ui/main/main_btn_4_1.png deleted file mode 100644 index 5408ee681..000000000 Binary files a/Assets/arts/textures/ui/main/main_btn_4_1.png and /dev/null differ diff --git a/Assets/arts/textures/ui/main/main_btn_4_1.png.meta b/Assets/arts/textures/ui/main/main_btn_4_1.png.meta deleted file mode 100644 index 7911e542a..000000000 --- a/Assets/arts/textures/ui/main/main_btn_4_1.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: d216ce040d00b9346b630d92484931c2 -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/main.ab - assetBundleVariant: diff --git a/Assets/arts/textures/ui/main/main_btn_5.png b/Assets/arts/textures/ui/main/main_btn_5.png deleted file mode 100644 index 7a1cbaedc..000000000 Binary files a/Assets/arts/textures/ui/main/main_btn_5.png and /dev/null differ diff --git a/Assets/arts/textures/ui/main/main_btn_5.png.meta b/Assets/arts/textures/ui/main/main_btn_5.png.meta deleted file mode 100644 index 962690f4a..000000000 --- a/Assets/arts/textures/ui/main/main_btn_5.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: a1a4ba7b61bb84d4997f8839002764c9 -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/main.ab - assetBundleVariant: diff --git a/Assets/arts/textures/ui/main/main_btn_5_1.png b/Assets/arts/textures/ui/main/main_btn_5_1.png deleted file mode 100644 index fdd193a2b..000000000 Binary files a/Assets/arts/textures/ui/main/main_btn_5_1.png and /dev/null differ diff --git a/Assets/arts/textures/ui/main/main_btn_5_1.png.meta b/Assets/arts/textures/ui/main/main_btn_5_1.png.meta deleted file mode 100644 index edba3013a..000000000 --- a/Assets/arts/textures/ui/main/main_btn_5_1.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: fe83b0629bc80134abc9345e93f59567 -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/main.ab - assetBundleVariant: diff --git a/Assets/arts/textures/ui/main/main_btn_act_speed.png b/Assets/arts/textures/ui/main/main_btn_act_speed.png deleted file mode 100644 index 0844e0b4a..000000000 Binary files a/Assets/arts/textures/ui/main/main_btn_act_speed.png and /dev/null differ diff --git a/Assets/arts/textures/ui/main/main_btn_act_speed.png.meta b/Assets/arts/textures/ui/main/main_btn_act_speed.png.meta deleted file mode 100644 index 401255872..000000000 --- a/Assets/arts/textures/ui/main/main_btn_act_speed.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: d0953357bd23d1d41b6b3570b1f27e63 -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/main.ab - assetBundleVariant: diff --git a/Assets/arts/textures/ui/main/main_btn_activity.png b/Assets/arts/textures/ui/main/main_btn_activity.png deleted file mode 100644 index ae12039d7..000000000 Binary files a/Assets/arts/textures/ui/main/main_btn_activity.png and /dev/null differ diff --git a/Assets/arts/textures/ui/main/main_btn_activity.png.meta b/Assets/arts/textures/ui/main/main_btn_activity.png.meta deleted file mode 100644 index e278f13ee..000000000 --- a/Assets/arts/textures/ui/main/main_btn_activity.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: 43f1c9e3c82ecb040a38d34a784fbcbc -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/main.ab - assetBundleVariant: diff --git a/Assets/arts/textures/ui/main/main_btn_blessing_000.png b/Assets/arts/textures/ui/main/main_btn_blessing_000.png deleted file mode 100644 index 16f85f980..000000000 Binary files a/Assets/arts/textures/ui/main/main_btn_blessing_000.png and /dev/null differ diff --git a/Assets/arts/textures/ui/main/main_btn_blessing_000.png.meta b/Assets/arts/textures/ui/main/main_btn_blessing_000.png.meta deleted file mode 100644 index 371252865..000000000 --- a/Assets/arts/textures/ui/main/main_btn_blessing_000.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: 49bab40417050bc4b836bcc3edcb2b0d -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/main.ab - assetBundleVariant: diff --git a/Assets/arts/textures/ui/main/main_btn_blessing_001.png b/Assets/arts/textures/ui/main/main_btn_blessing_001.png deleted file mode 100644 index 8eb3e800f..000000000 Binary files a/Assets/arts/textures/ui/main/main_btn_blessing_001.png and /dev/null differ diff --git a/Assets/arts/textures/ui/main/main_btn_blessing_001.png.meta b/Assets/arts/textures/ui/main/main_btn_blessing_001.png.meta deleted file mode 100644 index 3334cb73d..000000000 --- a/Assets/arts/textures/ui/main/main_btn_blessing_001.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: 58f78b556b5836040b0d5bb26502737e -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/main.ab - assetBundleVariant: diff --git a/Assets/arts/textures/ui/main/main_btn_blessing_010.png b/Assets/arts/textures/ui/main/main_btn_blessing_010.png deleted file mode 100644 index 67254aa38..000000000 Binary files a/Assets/arts/textures/ui/main/main_btn_blessing_010.png and /dev/null differ diff --git a/Assets/arts/textures/ui/main/main_btn_blessing_010.png.meta b/Assets/arts/textures/ui/main/main_btn_blessing_010.png.meta deleted file mode 100644 index 91ecaa32f..000000000 --- a/Assets/arts/textures/ui/main/main_btn_blessing_010.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: 4f9e50ba09ba7e347af162dccf0fd0a1 -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/main.ab - assetBundleVariant: diff --git a/Assets/arts/textures/ui/main/main_btn_blessing_011.png b/Assets/arts/textures/ui/main/main_btn_blessing_011.png deleted file mode 100644 index f81ebb3ad..000000000 Binary files a/Assets/arts/textures/ui/main/main_btn_blessing_011.png and /dev/null differ diff --git a/Assets/arts/textures/ui/main/main_btn_blessing_011.png.meta b/Assets/arts/textures/ui/main/main_btn_blessing_011.png.meta deleted file mode 100644 index c9f829108..000000000 --- a/Assets/arts/textures/ui/main/main_btn_blessing_011.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: 145d385a318b2be4bb9b12239fb122c5 -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/main.ab - assetBundleVariant: diff --git a/Assets/arts/textures/ui/main/main_btn_blessing_100.png b/Assets/arts/textures/ui/main/main_btn_blessing_100.png deleted file mode 100644 index 22d57d685..000000000 Binary files a/Assets/arts/textures/ui/main/main_btn_blessing_100.png and /dev/null differ diff --git a/Assets/arts/textures/ui/main/main_btn_blessing_100.png.meta b/Assets/arts/textures/ui/main/main_btn_blessing_100.png.meta deleted file mode 100644 index 59e14ae76..000000000 --- a/Assets/arts/textures/ui/main/main_btn_blessing_100.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: 376b91d6716a41343a4fb16210d5debb -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/main.ab - assetBundleVariant: diff --git a/Assets/arts/textures/ui/main/main_btn_blessing_101.png b/Assets/arts/textures/ui/main/main_btn_blessing_101.png deleted file mode 100644 index b8e6434cc..000000000 Binary files a/Assets/arts/textures/ui/main/main_btn_blessing_101.png and /dev/null differ diff --git a/Assets/arts/textures/ui/main/main_btn_blessing_101.png.meta b/Assets/arts/textures/ui/main/main_btn_blessing_101.png.meta deleted file mode 100644 index 8c42579ac..000000000 --- a/Assets/arts/textures/ui/main/main_btn_blessing_101.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: e72b20c4a52ad2f4b96cb31bee56392f -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/main.ab - assetBundleVariant: diff --git a/Assets/arts/textures/ui/main/main_btn_blessing_110.png b/Assets/arts/textures/ui/main/main_btn_blessing_110.png deleted file mode 100644 index 5e24506cb..000000000 Binary files a/Assets/arts/textures/ui/main/main_btn_blessing_110.png and /dev/null differ diff --git a/Assets/arts/textures/ui/main/main_btn_blessing_110.png.meta b/Assets/arts/textures/ui/main/main_btn_blessing_110.png.meta deleted file mode 100644 index 078ddf566..000000000 --- a/Assets/arts/textures/ui/main/main_btn_blessing_110.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: 5120af892a7a8464787537fca87c74c2 -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/main.ab - assetBundleVariant: diff --git a/Assets/arts/textures/ui/main/main_btn_blessing_111.png b/Assets/arts/textures/ui/main/main_btn_blessing_111.png deleted file mode 100644 index 130bd4ad6..000000000 Binary files a/Assets/arts/textures/ui/main/main_btn_blessing_111.png and /dev/null differ diff --git a/Assets/arts/textures/ui/main/main_btn_blessing_111.png.meta b/Assets/arts/textures/ui/main/main_btn_blessing_111.png.meta deleted file mode 100644 index 660cf9509..000000000 --- a/Assets/arts/textures/ui/main/main_btn_blessing_111.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: 17faf7cc6f599ec499b3601213861833 -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/main.ab - assetBundleVariant: diff --git a/Assets/arts/textures/ui/main/main_btn_bounty.png b/Assets/arts/textures/ui/main/main_btn_bounty.png deleted file mode 100644 index 976fecc2c..000000000 Binary files a/Assets/arts/textures/ui/main/main_btn_bounty.png and /dev/null differ diff --git a/Assets/arts/textures/ui/main/main_btn_bounty.png.meta b/Assets/arts/textures/ui/main/main_btn_bounty.png.meta deleted file mode 100644 index beaaf4d2c..000000000 --- a/Assets/arts/textures/ui/main/main_btn_bounty.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: e84ccd9a410651246b4fe6c04492d327 -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/main.ab - assetBundleVariant: diff --git a/Assets/arts/textures/ui/main/main_btn_collection.png b/Assets/arts/textures/ui/main/main_btn_collection.png deleted file mode 100644 index e6d1a4313..000000000 Binary files a/Assets/arts/textures/ui/main/main_btn_collection.png and /dev/null differ diff --git a/Assets/arts/textures/ui/main/main_btn_collection.png.meta b/Assets/arts/textures/ui/main/main_btn_collection.png.meta deleted file mode 100644 index 69a42af9d..000000000 --- a/Assets/arts/textures/ui/main/main_btn_collection.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: 47d26e355d7ff8d468c68180fedada44 -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/main.ab - assetBundleVariant: diff --git a/Assets/arts/textures/ui/main/main_btn_idle.png b/Assets/arts/textures/ui/main/main_btn_idle.png deleted file mode 100644 index 93d8295f1..000000000 Binary files a/Assets/arts/textures/ui/main/main_btn_idle.png and /dev/null differ diff --git a/Assets/arts/textures/ui/main/main_btn_idle.png.meta b/Assets/arts/textures/ui/main/main_btn_idle.png.meta deleted file mode 100644 index c35926cf0..000000000 --- a/Assets/arts/textures/ui/main/main_btn_idle.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: 05348de432e91a142ae7db0779feba24 -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/main.ab - assetBundleVariant: diff --git a/Assets/arts/textures/ui/main/main_btn_mail.png b/Assets/arts/textures/ui/main/main_btn_mail.png deleted file mode 100644 index cd3b6a057..000000000 Binary files a/Assets/arts/textures/ui/main/main_btn_mail.png and /dev/null differ diff --git a/Assets/arts/textures/ui/main/main_btn_mail.png.meta b/Assets/arts/textures/ui/main/main_btn_mail.png.meta deleted file mode 100644 index 8393d92a4..000000000 --- a/Assets/arts/textures/ui/main/main_btn_mail.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: bc5a4ff8c6c9ed54494fb72805923cd8 -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/main.ab - assetBundleVariant: diff --git a/Assets/arts/textures/ui/main/main_btn_sevenday.png b/Assets/arts/textures/ui/main/main_btn_sevenday.png deleted file mode 100644 index 3f59689c4..000000000 Binary files a/Assets/arts/textures/ui/main/main_btn_sevenday.png and /dev/null 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 deleted file mode 100644 index 52edb79ec..000000000 --- a/Assets/arts/textures/ui/main/main_btn_sevenday.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: 45ea40c9cf3165c41a48ac18d7c920ad -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/main.ab - assetBundleVariant: diff --git a/Assets/arts/textures/ui/main/main_btn_task.png b/Assets/arts/textures/ui/main/main_btn_task.png deleted file mode 100644 index cbd0e64ab..000000000 Binary files a/Assets/arts/textures/ui/main/main_btn_task.png and /dev/null differ diff --git a/Assets/arts/textures/ui/main/main_btn_task.png.meta b/Assets/arts/textures/ui/main/main_btn_task.png.meta deleted file mode 100644 index b3e89eb6c..000000000 --- a/Assets/arts/textures/ui/main/main_btn_task.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: 3d7458dd9d3d8004ab4bcb760544a614 -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/main.ab - assetBundleVariant: diff --git a/Assets/arts/textures/ui/main/main_dec_1.png b/Assets/arts/textures/ui/main/main_dec_1.png deleted file mode 100644 index e66dbce84..000000000 Binary files a/Assets/arts/textures/ui/main/main_dec_1.png and /dev/null differ diff --git a/Assets/arts/textures/ui/main/main_dec_1.png.meta b/Assets/arts/textures/ui/main/main_dec_1.png.meta deleted file mode 100644 index 074414bef..000000000 --- a/Assets/arts/textures/ui/main/main_dec_1.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: dc4985268de75b145aca7a4528af2725 -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/main.ab - assetBundleVariant: diff --git a/Assets/arts/textures/ui/main/main_dec_2.png b/Assets/arts/textures/ui/main/main_dec_2.png deleted file mode 100644 index a38c12b6e..000000000 Binary files a/Assets/arts/textures/ui/main/main_dec_2.png and /dev/null differ diff --git a/Assets/arts/textures/ui/main/main_dec_2.png.meta b/Assets/arts/textures/ui/main/main_dec_2.png.meta deleted file mode 100644 index 195f9336c..000000000 --- a/Assets/arts/textures/ui/main/main_dec_2.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: 12ab29ecbf0d5bb44a8c12e85e68dee7 -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/main.ab - assetBundleVariant: diff --git a/Assets/arts/textures/ui/tutorial.meta b/Assets/arts/textures/ui/tutorial.meta deleted file mode 100644 index b7fa6c259..000000000 --- a/Assets/arts/textures/ui/tutorial.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 4422a03f5a96988458e8b29c82f9bf6a -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/arts/textures/ui/tutorial/tutorial_circle.png b/Assets/arts/textures/ui/tutorial/tutorial_circle.png deleted file mode 100644 index 5d5fad0f4..000000000 Binary files a/Assets/arts/textures/ui/tutorial/tutorial_circle.png and /dev/null differ diff --git a/Assets/arts/textures/ui/tutorial/tutorial_circle.png.meta b/Assets/arts/textures/ui/tutorial/tutorial_circle.png.meta deleted file mode 100644 index f80491417..000000000 --- a/Assets/arts/textures/ui/tutorial/tutorial_circle.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: d98460a1198de6d4390ca9da424d5d42 -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/tutorial.ab - assetBundleVariant: diff --git a/Assets/arts/textures/ui/tutorial/tutorial_dec_1.png b/Assets/arts/textures/ui/tutorial/tutorial_dec_1.png deleted file mode 100644 index 5d7deea90..000000000 Binary files a/Assets/arts/textures/ui/tutorial/tutorial_dec_1.png and /dev/null differ diff --git a/Assets/arts/textures/ui/tutorial/tutorial_dec_1.png.meta b/Assets/arts/textures/ui/tutorial/tutorial_dec_1.png.meta deleted file mode 100644 index ec86394b0..000000000 --- a/Assets/arts/textures/ui/tutorial/tutorial_dec_1.png.meta +++ /dev/null @@ -1,132 +0,0 @@ -fileFormatVersion: 2 -guid: 76b4356e609315a44bfdb2b26213f46b -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/tutorial.ab - assetBundleVariant: diff --git a/Assets/arts/textures/unpack_sprite.meta b/Assets/arts/textures/unpack_sprite.meta new file mode 100644 index 000000000..a871fb867 --- /dev/null +++ b/Assets/arts/textures/unpack_sprite.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cd0a2edeb8188224fbc0066c51d993ab +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/prefabs/ui/battle/battle_ui.prefab b/Assets/prefabs/ui/battle/battle_ui.prefab new file mode 100644 index 000000000..e1a200ecf --- /dev/null +++ b/Assets/prefabs/ui/battle/battle_ui.prefab @@ -0,0 +1,367 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &463079035279260010 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5198724544769838051} + - component: {fileID: 2297117606088499637} + - component: {fileID: 3679922115838108349} + m_Layer: 0 + m_Name: bg + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &5198724544769838051 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 463079035279260010} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4165930251451731960} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 1} + m_AnchorMax: {x: 0.5, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 720, y: 847} + m_Pivot: {x: 0.5, y: 1} +--- !u!222 &2297117606088499637 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 463079035279260010} + m_CullTransparentMesh: 1 +--- !u!114 &3679922115838108349 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 463079035279260010} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1344c3c82d62a2a41a3576d8abb8e3ea, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Texture: {fileID: 2800000, guid: a588f737b35bbe841ad2437be111429e, type: 3} + m_UVRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 +--- !u!1 &606870700976508775 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8218123047022309772} + m_Layer: 0 + m_Name: board_node + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &8218123047022309772 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 606870700976508775} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 8367488913663849825} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: -6.2} + m_SizeDelta: {x: 679, y: 679} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &3919187627067218253 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1603915954017502330} + - component: {fileID: 6341968543497613430} + - component: {fileID: 553383363330359271} + - component: {fileID: 4504695912131701755} + m_Layer: 0 + m_Name: close_btn + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1603915954017502330 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3919187627067218253} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4165930251451731960} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -288, y: 567} + m_SizeDelta: {x: 68, y: 63} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &6341968543497613430 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3919187627067218253} + m_CullTransparentMesh: 1 +--- !u!114 &553383363330359271 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3919187627067218253} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 306205473d3cf1f4a9d821c3e2971092, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &4504695912131701755 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3919187627067218253} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1069f9c1eb6f9475b8f98a4cbb9dfe01, type: 3} + m_Name: + m_EditorClassIdentifier: + IsShowClickAnimation: 1 +--- !u!1 &8051301126468474891 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8367488913663849825} + - component: {fileID: 4090866635735359956} + - component: {fileID: 7514069282465578663} + m_Layer: 0 + m_Name: bg_2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &8367488913663849825 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8051301126468474891} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 8218123047022309772} + m_Father: {fileID: 4165930251451731960} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0} + m_AnchorMax: {x: 0.5, y: 0} + m_AnchoredPosition: {x: 0, y: 387} + m_SizeDelta: {x: 720, y: 774} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &4090866635735359956 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8051301126468474891} + m_CullTransparentMesh: 1 +--- !u!114 &7514069282465578663 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8051301126468474891} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1344c3c82d62a2a41a3576d8abb8e3ea, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Texture: {fileID: 2800000, guid: 629b982e5340cf24bad1d8701330d3c8, type: 3} + m_UVRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 +--- !u!1 &8889665677046596496 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4165930251451731960} + - component: {fileID: 6295759409469260025} + - component: {fileID: 8818842519807529348} + - component: {fileID: 5914240286772839687} + m_Layer: 5 + m_Name: battle_ui + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &4165930251451731960 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8889665677046596496} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 5198724544769838051} + - {fileID: 8367488913663849825} + - {fileID: 1603915954017502330} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!223 &6295759409469260025 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8889665677046596496} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 1 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 25 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!114 &8818842519807529348 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8889665677046596496} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &5914240286772839687 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8889665677046596496} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 603618363c40f41f2a20bffd04da5c14, type: 3} + m_Name: + m_EditorClassIdentifier: + prefabList: + - name: battle_ui.bg_2.board_node + hashName: 2544486462 + objectType: 0 + gameObject: {fileID: 606870700976508775} diff --git a/Assets/prefabs/ui/battle/battle_ui.prefab.meta b/Assets/prefabs/ui/battle/battle_ui.prefab.meta new file mode 100644 index 000000000..db7abd76e --- /dev/null +++ b/Assets/prefabs/ui/battle/battle_ui.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 1f0a4fee1adac4647bb28d0ae5db612f +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: prefabs/ui/main_city/main_ui.prefab.ab + assetBundleVariant: diff --git a/Assets/prefabs/ui/battle/cell/grid_cell.prefab b/Assets/prefabs/ui/battle/cell/grid_cell.prefab new file mode 100644 index 000000000..7c0cc2bcc --- /dev/null +++ b/Assets/prefabs/ui/battle/cell/grid_cell.prefab @@ -0,0 +1,579 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1852080090429023675 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6203149083194507068} + - component: {fileID: 4495721600529669427} + - component: {fileID: 1654729621752998639} + m_Layer: 0 + m_Name: mask + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &6203149083194507068 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1852080090429023675} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 7856954192772629694} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 97, y: 97} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &4495721600529669427 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1852080090429023675} + m_CullTransparentMesh: 1 +--- !u!114 &1654729621752998639 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1852080090429023675} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 0.74509805} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: ecbfe2c6ee57e284bb88c09709a895bd, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &3878001127691178925 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6400070175808932077} + - component: {fileID: 89005737401758282} + - component: {fileID: 7373419677804039580} + - component: {fileID: 8905952255341264435} + m_Layer: 0 + m_Name: touch_node + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &6400070175808932077 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3878001127691178925} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 7856954192772629694} + m_Father: {fileID: 4664058343642732121} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: -40, y: -40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &89005737401758282 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3878001127691178925} + m_CullTransparentMesh: 1 +--- !u!114 &7373419677804039580 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3878001127691178925} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ea6cc73146e6042cdae5988a604bca31, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &8905952255341264435 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3878001127691178925} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: cff37445e8036d54e82348b618225833, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &4160921163270505714 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2083280137994219570} + - component: {fileID: 2796302420299780421} + - component: {fileID: 1391648870253585208} + m_Layer: 0 + m_Name: down_bg + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2083280137994219570 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4160921163270505714} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 7856954192772629694} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 97, y: 97} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &2796302420299780421 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4160921163270505714} + m_CullTransparentMesh: 1 +--- !u!114 &1391648870253585208 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4160921163270505714} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: a70289eca986ce142b027934f6cdd63c, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &4362980588390571145 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5021351875852543974} + - component: {fileID: 28783238052411172} + - component: {fileID: 8280191614765845069} + m_Layer: 0 + m_Name: middle_bg + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &5021351875852543974 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4362980588390571145} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 7856954192772629694} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 97, y: 97} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &28783238052411172 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4362980588390571145} + m_CullTransparentMesh: 1 +--- !u!114 &8280191614765845069 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4362980588390571145} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: a70289eca986ce142b027934f6cdd63c, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &4372325173911228812 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4664058343642732121} + - component: {fileID: 8866022764212735008} + - component: {fileID: 7626910503310813174} + m_Layer: 0 + m_Name: grid_cell + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &4664058343642732121 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4372325173911228812} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 6400070175808932077} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 97, y: 97} + m_Pivot: {x: 0, y: 1} +--- !u!222 &8866022764212735008 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4372325173911228812} + m_CullTransparentMesh: 1 +--- !u!114 &7626910503310813174 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4372325173911228812} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 603618363c40f41f2a20bffd04da5c14, type: 3} + m_Name: + m_EditorClassIdentifier: + prefabList: + - name: grid_cell.touch_node.ani_node.down_bg + hashName: 1652245330 + objectType: 0 + gameObject: {fileID: 4160921163270505714} + - name: grid_cell.touch_node.ani_node.middle_bg + hashName: 2053779839 + objectType: 0 + gameObject: {fileID: 4362980588390571145} + - name: grid_cell.touch_node.ani_node.up_bg + hashName: 3338092217 + objectType: 0 + gameObject: {fileID: 5199997431598361344} + - name: grid_cell.touch_node + hashName: 3150319637 + objectType: 0 + gameObject: {fileID: 3878001127691178925} + - name: grid_cell.touch_node.ani_node.mask + hashName: 3571111580 + objectType: 0 + gameObject: {fileID: 1852080090429023675} + - name: grid_cell.touch_node.ani_node.obstacle + hashName: 2909481535 + objectType: 0 + gameObject: {fileID: 7885636903725020540} +--- !u!1 &5199997431598361344 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2711150934767594651} + - component: {fileID: 3183744554188501349} + - component: {fileID: 483366286163144172} + m_Layer: 0 + m_Name: up_bg + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2711150934767594651 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5199997431598361344} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 7856954192772629694} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 97, y: 97} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &3183744554188501349 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5199997431598361344} + m_CullTransparentMesh: 1 +--- !u!114 &483366286163144172 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5199997431598361344} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: a70289eca986ce142b027934f6cdd63c, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &5980598470212332410 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7856954192772629694} + m_Layer: 0 + m_Name: ani_node + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &7856954192772629694 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5980598470212332410} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 2083280137994219570} + - {fileID: 5021351875852543974} + - {fileID: 2711150934767594651} + - {fileID: 6203149083194507068} + - {fileID: 7296449723806357941} + m_Father: {fileID: 6400070175808932077} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &7885636903725020540 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7296449723806357941} + - component: {fileID: 200150018011086864} + - component: {fileID: 8174836229848617367} + m_Layer: 0 + m_Name: obstacle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &7296449723806357941 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7885636903725020540} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 7856954192772629694} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 97, y: 97} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &200150018011086864 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7885636903725020540} + m_CullTransparentMesh: 1 +--- !u!114 &8174836229848617367 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7885636903725020540} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} + m_Color: {r: 0, g: 0, b: 0, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: ecbfe2c6ee57e284bb88c09709a895bd, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 diff --git a/Assets/prefabs/ui/battle/cell/grid_cell.prefab.meta b/Assets/prefabs/ui/battle/cell/grid_cell.prefab.meta new file mode 100644 index 000000000..f9c9f3f81 --- /dev/null +++ b/Assets/prefabs/ui/battle/cell/grid_cell.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: fab1c2506f4927947a34769a9d072496 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/prefabs/ui/battle/cell/pause_arena_cell.prefab b/Assets/prefabs/ui/battle/cell/pause_arena_cell.prefab deleted file mode 100644 index a8fdc3bf5..000000000 --- a/Assets/prefabs/ui/battle/cell/pause_arena_cell.prefab +++ /dev/null @@ -1,502 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1 &1878278571666969604 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 2423701229227567215} - - component: {fileID: 4724301075053703771} - - component: {fileID: 5694944069116992126} - m_Layer: 5 - m_Name: cell_bg - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &2423701229227567215 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1878278571666969604} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1791546320432057164} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &4724301075053703771 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1878278571666969604} - m_CullTransparentMesh: 1 ---- !u!114 &5694944069116992126 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1878278571666969604} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 871eebab741a88242a254dd144c5bdb7, type: 3} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!1 &2973084073826879296 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 574967903293193107} - - component: {fileID: 6477261474963863184} - - component: {fileID: 7171640074702662131} - m_Layer: 5 - m_Name: icon - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &574967903293193107 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2973084073826879296} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1791546320432057164} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -220, y: 0} - m_SizeDelta: {x: 80, y: 80} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &6477261474963863184 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2973084073826879296} - m_CullTransparentMesh: 1 ---- !u!114 &7171640074702662131 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2973084073826879296} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: b8d55291b00b1d34498eba726ce1e674, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!1 &5987166863963027200 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1791546320432057164} - - component: {fileID: 8372095401701068190} - - component: {fileID: -9219667188960665894} - m_Layer: 5 - m_Name: pause_arena_cell - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1791546320432057164 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5987166863963027200} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 2423701229227567215} - - {fileID: 574967903293193107} - - {fileID: 8157627195840732941} - - {fileID: 410311830998015959} - m_Father: {fileID: 0} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 572, y: 120} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &8372095401701068190 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5987166863963027200} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 603618363c40f41f2a20bffd04da5c14, type: 3} - m_Name: - m_EditorClassIdentifier: - prefabList: - - name: pause_arena_cell.cell_bg - hashName: 1972336343 - objectType: 0 - gameObject: {fileID: 1878278571666969604} - - name: pause_arena_cell.icon - hashName: 2501159428 - objectType: 0 - gameObject: {fileID: 2973084073826879296} - - name: pause_arena_cell.title_tx - hashName: 60146134 - objectType: 0 - gameObject: {fileID: 6891496016638000293} - - name: pause_arena_cell.desc_tx - hashName: 2866037127 - objectType: 0 - gameObject: {fileID: 7343354077335244897} ---- !u!114 &-9219667188960665894 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5987166863963027200} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f2ff04a05639f474f85820cdf1f47de0, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1 &6891496016638000293 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 8157627195840732941} - - component: {fileID: 1506717346611539656} - - component: {fileID: 2655027562238097908} - m_Layer: 5 - m_Name: title_tx - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &8157627195840732941 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6891496016638000293} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1791546320432057164} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -48, y: 20} - m_SizeDelta: {x: 200, y: 40} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &1506717346611539656 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6891496016638000293} - m_CullTransparentMesh: 1 ---- !u!114 &2655027562238097908 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6891496016638000293} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 9d1aadd9ebaf54ce2b217ab8427fa0db, type: 2} - m_sharedMaterial: {fileID: 2100000, guid: d9526b8cb4bc030488db413ef429c6f9, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4294967295 - m_fontColor: {r: 1, g: 1, b: 1, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 24 - m_fontSizeBase: 40 - m_fontWeight: 400 - m_enableAutoSizing: 1 - m_fontSizeMin: 18 - m_fontSizeMax: 24 - m_fontStyle: 1 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 0 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!1 &7343354077335244897 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 410311830998015959} - - component: {fileID: 8293219646883617050} - - component: {fileID: 3820273915333216103} - m_Layer: 5 - m_Name: desc_tx - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &410311830998015959 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7343354077335244897} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1791546320432057164} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0.5} - m_AnchorMax: {x: 0, y: 0.5} - m_AnchoredPosition: {x: 330, y: -20} - m_SizeDelta: {x: 400, y: 50} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &8293219646883617050 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7343354077335244897} - m_CullTransparentMesh: 1 ---- !u!114 &3820273915333216103 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7343354077335244897} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 9d1aadd9ebaf54ce2b217ab8427fa0db, type: 2} - m_sharedMaterial: {fileID: 2100000, guid: d9526b8cb4bc030488db413ef429c6f9, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4294954973 - m_fontColor: {r: 0.8666667, g: 0.8117647, b: 1, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 20 - m_fontSizeBase: 20 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 18 - m_fontSizeMax: 72 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} diff --git a/Assets/prefabs/ui/battle/cell/pause_arena_cell.prefab.meta b/Assets/prefabs/ui/battle/cell/pause_arena_cell.prefab.meta deleted file mode 100644 index d2f8ed26e..000000000 --- a/Assets/prefabs/ui/battle/cell/pause_arena_cell.prefab.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 4014852f2efb5444ba61acba2ee1fec1 -PrefabImporter: - externalObjects: {} - userData: - assetBundleName: prefabs/ui/battle/cell/pause_arena_cell.prefab.ab - assetBundleVariant: diff --git a/Assets/prefabs/ui/main_city/main_ui.prefab b/Assets/prefabs/ui/main_city/main_ui.prefab index 4b71d5a49..3f290c49f 100644 --- a/Assets/prefabs/ui/main_city/main_ui.prefab +++ b/Assets/prefabs/ui/main_city/main_ui.prefab @@ -1,2550 +1,5 @@ %YAML 1.1 %TAG !u! tag:unity3d.com,2011: ---- !u!1 &104680247403427145 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 5519217441213322164} - - component: {fileID: 7615461913598609896} - - component: {fileID: 6013104263667151029} - - component: {fileID: 7823219747951656986} - - component: {fileID: 6325661803928626879} - - component: {fileID: 931165580724546735} - m_Layer: 5 - m_Name: tutorial_task_comp - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &5519217441213322164 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 104680247403427145} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 6484377644207641412} - m_Father: {fileID: 7989197722468040919} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 1, y: 1} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: -147.5, y: -181} - m_SizeDelta: {x: 255, y: 158} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &7615461913598609896 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 104680247403427145} - m_CullTransparentMesh: 1 ---- !u!114 &6013104263667151029 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 104680247403427145} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: ea6cc73146e6042cdae5988a604bca31, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] ---- !u!114 &7823219747951656986 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 104680247403427145} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 603618363c40f41f2a20bffd04da5c14, type: 3} - m_Name: - m_EditorClassIdentifier: - prefabList: - - name: tutorial_task_comp.chapter_task_bg - hashName: 2321091399 - objectType: 0 - gameObject: {fileID: 851091067623174581} - - name: tutorial_task_comp.title_tx - hashName: 1729053457 - objectType: 0 - gameObject: {fileID: 3129457234070650375} - - name: tutorial_task_comp.info_tx - hashName: 4278269359 - objectType: 0 - gameObject: {fileID: 1900212846974015610} - - name: tutorial_task_comp.progress_tx - hashName: 959637200 - objectType: 0 - gameObject: {fileID: 9168396836327561710} - - name: tutorial_task_comp.reward_icon - hashName: 726322307 - objectType: 0 - gameObject: {fileID: 3677479782866287611} - - name: tutorial_task_comp.reward_tx - hashName: 1064442126 - objectType: 0 - gameObject: {fileID: 6050197511598596183} - - name: tutorial_task_comp.tutorial_finger - hashName: 1821401956 - objectType: 0 - gameObject: {fileID: 7608845486485670841} - - name: tutorial_task_comp.chapter_task_bg.light - hashName: 2292276143 - objectType: 0 - gameObject: {fileID: 8940840849310574652} ---- !u!114 &6325661803928626879 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 104680247403427145} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 1069f9c1eb6f9475b8f98a4cbb9dfe01, type: 3} - m_Name: - m_EditorClassIdentifier: - IsShowClickAnimation: 1 ---- !u!95 &931165580724546735 -Animator: - serializedVersion: 3 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 104680247403427145} - m_Enabled: 1 - m_Avatar: {fileID: 0} - m_Controller: {fileID: 9100000, guid: bcbf91c8c3af2e64787e7692408b9e58, type: 2} - m_CullingMode: 0 - m_UpdateMode: 0 - m_ApplyRootMotion: 0 - m_LinearVelocityBlending: 0 - m_WarningMessage: - m_HasTransformHierarchy: 1 - m_AllowConstantClipSamplingOptimization: 1 - m_KeepAnimatorControllerStateOnDisable: 0 ---- !u!1 &202557614462489067 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 193494422633716833} - - component: {fileID: 7016858155781029033} - - component: {fileID: 6876496383874324003} - m_Layer: 5 - m_Name: chapter_slider_comp - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &193494422633716833 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 202557614462489067} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 1591337919558276008} - - {fileID: 557028712931624568} - - {fileID: 2008493533143920487} - - {fileID: 1081292617687036162} - - {fileID: 511600445208496078} - - {fileID: 3781779300746843151} - m_Father: {fileID: 8818864831549185987} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 130, y: -140} - m_SizeDelta: {x: 266, y: 22} - m_Pivot: {x: 0, y: 0.5} ---- !u!222 &7016858155781029033 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 202557614462489067} - m_CullTransparentMesh: 1 ---- !u!114 &6876496383874324003 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 202557614462489067} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 603618363c40f41f2a20bffd04da5c14, type: 3} - m_Name: - m_EditorClassIdentifier: - prefabList: - - name: chapter_slider_comp.chapter_slider_bg - hashName: 561391230 - objectType: 0 - gameObject: {fileID: 4749514374641098861} - - name: chapter_slider_comp.slider_best - hashName: 3759297487 - objectType: 0 - gameObject: {fileID: 7799214965103618924} - - name: chapter_slider_comp.slider_cur - hashName: 4277689077 - objectType: 0 - gameObject: {fileID: 1601981388166300083} - - name: chapter_slider_comp.hero_point - hashName: 1416539678 - objectType: 0 - gameObject: {fileID: 4256157741815556149} - - name: chapter_slider_comp.hero_point.avatar_cell - hashName: 2596706488 - objectType: 1 - gameObject: {fileID: 7451841440744104014} - - name: chapter_slider_comp.hero_point.info_tx - hashName: 139487205 - objectType: 0 - gameObject: {fileID: 4881225223835176608} - - name: chapter_slider_comp.best_point - hashName: 186014856 - objectType: 0 - gameObject: {fileID: 1344575683582115238} - - name: chapter_slider_comp.best_point.flag - hashName: 1531867410 - objectType: 0 - gameObject: {fileID: 8920611595360822172} - - name: chapter_slider_comp.best_point.info_tx - hashName: 264244303 - objectType: 0 - gameObject: {fileID: 7651058075645866790} - - name: chapter_slider_comp.monster_point - hashName: 800632568 - objectType: 0 - gameObject: {fileID: 3690204757234537968} - - name: chapter_slider_comp.monster_point.avatar_cell - hashName: 4070843026 - objectType: 1 - gameObject: {fileID: 372049612454147968} - - name: chapter_slider_comp.monster_point.info_tx - hashName: 1004596927 - objectType: 0 - gameObject: {fileID: 4953888166141623223} - - name: chapter_slider_comp.hero_point.monster_bg - hashName: 536343706 - objectType: 0 - gameObject: {fileID: 8513562418596442905} - - name: chapter_slider_comp.hero_point.monster_bg.title_tx - hashName: 247372959 - objectType: 0 - gameObject: {fileID: 7481981574879883300} - - name: chapter_slider_comp.hero_point.monster_bg.icon - hashName: 2858701133 - objectType: 0 - gameObject: {fileID: 9043925611963935032} - - name: chapter_slider_comp.hero_point.monster_bg.num_tx - hashName: 2887385521 - objectType: 0 - gameObject: {fileID: 8617130479153313316} - - name: chapter_slider_comp.best_point.best_tx - hashName: 2396145497 - objectType: 0 - gameObject: {fileID: 1815623119836015225} - - name: chapter_slider_comp.hero_point.info_tx.flag - hashName: 4132829141 - objectType: 0 - gameObject: {fileID: 4257723334167504430} ---- !u!1 &827181694154649008 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 7989197722468040919} - m_Layer: 5 - m_Name: right_node - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &7989197722468040919 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 827181694154649008} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 6053461167938430896} - - {fileID: 5519217441213322164} - - {fileID: 6307211260158690022} - m_Father: {fileID: 4165930251451731960} - m_RootOrder: 5 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &851091067623174581 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 6484377644207641412} - - component: {fileID: 7941147672847346070} - - component: {fileID: 3758623146514094884} - m_Layer: 5 - m_Name: chapter_task_bg - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &6484377644207641412 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 851091067623174581} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 8180796123622374865} - - {fileID: 1123617751231582837} - - {fileID: 3057077217630874732} - - {fileID: 4289587899336796939} - - {fileID: 6813878493202606591} - - {fileID: 3416767746476531135} - - {fileID: 5084038302792689701} - m_Father: {fileID: 5519217441213322164} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 1, y: 1} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: -127.5, y: -79} - m_SizeDelta: {x: 255, y: 158} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &7941147672847346070 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 851091067623174581} - m_CullTransparentMesh: 1 ---- !u!114 &3758623146514094884 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 851091067623174581} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 1bf9c73960324d3439e0db7c0390d805, type: 3} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!1 &1344575683582115238 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 3781779300746843151} - m_Layer: 5 - m_Name: best_point - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &3781779300746843151 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1344575683582115238} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 1959591082041578117} - - {fileID: 7468731333162892114} - - {fileID: 789204392591637707} - m_Father: {fileID: 193494422633716833} - m_RootOrder: 5 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0.5} - m_AnchorMax: {x: 0, y: 0.5} - m_AnchoredPosition: {x: 100, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &1601981388166300083 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 2008493533143920487} - - component: {fileID: 9093060125545581361} - - component: {fileID: 2958443519407718463} - m_Layer: 5 - m_Name: slider_cur - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &2008493533143920487 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1601981388166300083} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 193494422633716833} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 260, y: 18} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &9093060125545581361 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1601981388166300083} - m_CullTransparentMesh: 1 ---- !u!114 &2958443519407718463 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1601981388166300083} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 6c44c307d57c9417085df33db10b886d, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 3b14bc3747e2c3248b47a3ac14d44d6d, type: 3} - m_FillDirection: 0 - m_Value: 0 - m_FillCenter: 1 ---- !u!1 &1815623119836015225 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1959591082041578117} - - component: {fileID: 7257579827124021418} - - component: {fileID: 1228666841779354085} - m_Layer: 5 - m_Name: best_tx - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1959591082041578117 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1815623119836015225} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 3781779300746843151} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: 50} - m_SizeDelta: {x: 100, y: 30} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &7257579827124021418 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1815623119836015225} - m_CullTransparentMesh: 1 ---- !u!114 &1228666841779354085 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1815623119836015225} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 9d1aadd9ebaf54ce2b217ab8427fa0db, type: 2} - m_sharedMaterial: {fileID: 2100000, guid: d9526b8cb4bc030488db413ef429c6f9, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4278237439 - m_fontColor: {r: 1, g: 0.7198543, b: 0, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 20 - m_fontSizeBase: 34 - m_fontWeight: 400 - m_enableAutoSizing: 1 - m_fontSizeMin: 16 - m_fontSizeMax: 20 - m_fontStyle: 0 - m_HorizontalAlignment: 2 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 0 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!1 &1900212846974015610 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 3057077217630874732} - - component: {fileID: 3038874061611443244} - - component: {fileID: 8251202412701424208} - m_Layer: 5 - m_Name: info_tx - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &3057077217630874732 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1900212846974015610} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 6484377644207641412} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 1} - m_AnchorMax: {x: 0.5, y: 1} - m_AnchoredPosition: {x: 0, y: -80} - m_SizeDelta: {x: 250, y: 60} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &3038874061611443244 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1900212846974015610} - m_CullTransparentMesh: 1 ---- !u!114 &8251202412701424208 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1900212846974015610} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 9d1aadd9ebaf54ce2b217ab8427fa0db, type: 2} - m_sharedMaterial: {fileID: 2100000, guid: 09210edd46ea1463596717e00ea9e8be, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4279627007 - m_fontColor: {r: 1, g: 1, b: 1, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 18 - m_fontSizeBase: 34 - m_fontWeight: 400 - m_enableAutoSizing: 1 - m_fontSizeMin: 12 - m_fontSizeMax: 18 - m_fontStyle: 0 - m_HorizontalAlignment: 2 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 0 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!1 &2064472990877152046 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 8274743217520629258} - m_Layer: 5 - m_Name: battle_node - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &8274743217520629258 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2064472990877152046} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 4165930251451731960} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &2377777153448008571 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1092754556096371524} - m_Layer: 5 - m_Name: tutorial_task_node - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1092754556096371524 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2377777153448008571} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 4472679854360380351} - - {fileID: 1824912428096273307} - - {fileID: 674336807508876720} - m_Father: {fileID: 4165930251451731960} - m_RootOrder: 8 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &2382861402624711343 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 6149587577468245754} - - component: {fileID: 8314962002866354946} - - component: {fileID: 9065066367324036368} - m_Layer: 5 - m_Name: desc_tx - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &6149587577468245754 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2382861402624711343} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 2183262033117335580} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 600, y: 600} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &8314962002866354946 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2382861402624711343} - m_CullTransparentMesh: 1 ---- !u!114 &9065066367324036368 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2382861402624711343} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 9d1aadd9ebaf54ce2b217ab8427fa0db, type: 2} - m_sharedMaterial: {fileID: 2100000, guid: d9526b8cb4bc030488db413ef429c6f9, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4294967295 - m_fontColor: {r: 1, g: 1, b: 1, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 30 - m_fontSizeBase: 30 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 16 - m_fontSizeMax: 20 - m_fontStyle: 0 - m_HorizontalAlignment: 2 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 0 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!1 &2402919714638007616 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 6053461167938430896} - - component: {fileID: 1460300678066204626} - - component: {fileID: 7704710949715879022} - - component: {fileID: 4635661292351329384} - - component: {fileID: 7833151797708451514} - m_Layer: 5 - m_Name: email_btn - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &6053461167938430896 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2402919714638007616} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 7667236695589045383} - m_Father: {fileID: 7989197722468040919} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 1, y: 1} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: -50, y: -52.5} - m_SizeDelta: {x: 62, y: 47} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &1460300678066204626 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2402919714638007616} - m_CullTransparentMesh: 1 ---- !u!114 &7704710949715879022 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2402919714638007616} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: ea6cc73146e6042cdae5988a604bca31, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] ---- !u!114 &4635661292351329384 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2402919714638007616} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 1069f9c1eb6f9475b8f98a4cbb9dfe01, type: 3} - m_Name: - m_EditorClassIdentifier: - IsShowClickAnimation: 1 ---- !u!114 &7833151797708451514 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2402919714638007616} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 603618363c40f41f2a20bffd04da5c14, type: 3} - m_Name: - m_EditorClassIdentifier: - prefabList: - - name: side_bar_base_cell.icon - hashName: 3436508971 - objectType: 0 - gameObject: {fileID: 5848217200649907838} - - name: side_bar_base_cell.info - hashName: 3436519264 - objectType: 0 - gameObject: {fileID: 0} - - name: side_bar_base_cell.effect_node - hashName: 2116696318 - objectType: 0 - gameObject: {fileID: 0} - - name: side_bar_base_cell.rpRoot - hashName: 4219046514 - objectType: 0 - gameObject: {fileID: 0} - - name: side_bar_base_cell.bg - hashName: 1196870519 - objectType: 0 - gameObject: {fileID: 0} ---- !u!1 &2509705840974316766 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 6527057472834029731} - m_Layer: 5 - m_Name: role_node - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &6527057472834029731 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2509705840974316766} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 9071863580148286979} - - {fileID: 9166866441771493925} - m_Father: {fileID: 4165930251451731960} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &2669887941696002039 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 4472679854360380351} - - component: {fileID: 1636955483984483160} - - component: {fileID: 6308916182848723746} - - component: {fileID: 3992440983247549772} - m_Layer: 5 - m_Name: mask - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &4472679854360380351 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2669887941696002039} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1092754556096371524} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &1636955483984483160 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2669887941696002039} - m_CullTransparentMesh: 1 ---- !u!114 &6308916182848723746 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2669887941696002039} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 2100000, guid: 111557ceb04479e4cbb400dd1c404e62, type: 2} - m_Color: {r: 1, g: 1, b: 1, a: 0.74509805} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: ecbfe2c6ee57e284bb88c09709a895bd, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!114 &3992440983247549772 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2669887941696002039} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 1069f9c1eb6f9475b8f98a4cbb9dfe01, type: 3} - m_Name: - m_EditorClassIdentifier: - IsShowClickAnimation: 0 ---- !u!1 &2942847790656062710 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 2183262033117335580} - - component: {fileID: 9190326510986861815} - - component: {fileID: 794539063600573149} - - component: {fileID: 4431121893667565342} - m_Layer: 5 - m_Name: black_bg - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &2183262033117335580 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2942847790656062710} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 6149587577468245754} - m_Father: {fileID: 669392529895768564} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0} ---- !u!222 &9190326510986861815 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2942847790656062710} - m_CullTransparentMesh: 1 ---- !u!114 &794539063600573149 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2942847790656062710} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - m_Color: {r: 0, g: 0, b: 0, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 0} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!225 &4431121893667565342 -CanvasGroup: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2942847790656062710} - m_Enabled: 1 - m_Alpha: 1 - m_Interactable: 1 - m_BlocksRaycasts: 1 - m_IgnoreParentGroups: 0 ---- !u!1 &2962082152547337933 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1972712850786947267} - - component: {fileID: 4114105309508249787} - - component: {fileID: 6732446635968360685} - m_Layer: 5 - m_Name: power_tx - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1972712850786947267 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2962082152547337933} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 9166866441771493925} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 80, y: -150} - m_SizeDelta: {x: 60, y: 30} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &4114105309508249787 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2962082152547337933} - m_CullTransparentMesh: 1 ---- !u!114 &6732446635968360685 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2962082152547337933} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 9d1aadd9ebaf54ce2b217ab8427fa0db, type: 2} - m_sharedMaterial: {fileID: 2100000, guid: d9526b8cb4bc030488db413ef429c6f9, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4294967295 - m_fontColor: {r: 1, g: 1, b: 1, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 20 - m_fontSizeBase: 20 - m_fontWeight: 400 - m_enableAutoSizing: 1 - m_fontSizeMin: 16 - m_fontSizeMax: 20 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 0 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!1 &3129457234070650375 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1123617751231582837} - - component: {fileID: 7406342468433308004} - - component: {fileID: 4278165383339314523} - m_Layer: 5 - m_Name: title_tx - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1123617751231582837 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3129457234070650375} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 6484377644207641412} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 1} - m_AnchorMax: {x: 0.5, y: 1} - m_AnchoredPosition: {x: 0, y: -20} - m_SizeDelta: {x: 250, y: 30} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &7406342468433308004 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3129457234070650375} - m_CullTransparentMesh: 1 ---- !u!114 &4278165383339314523 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3129457234070650375} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 9d1aadd9ebaf54ce2b217ab8427fa0db, type: 2} - m_sharedMaterial: {fileID: 2100000, guid: 09210edd46ea1463596717e00ea9e8be, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4283880959 - m_fontColor: {r: 1, g: 0.8352941, b: 0.3372549, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 20 - m_fontSizeBase: 34 - m_fontWeight: 400 - m_enableAutoSizing: 1 - m_fontSizeMin: 16 - m_fontSizeMax: 20 - m_fontStyle: 0 - m_HorizontalAlignment: 2 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 0 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!1 &3677479782866287611 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 6813878493202606591} - - component: {fileID: 2428179994799252537} - - component: {fileID: 4036458469296782201} - m_Layer: 5 - m_Name: reward_icon - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &6813878493202606591 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3677479782866287611} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 6484377644207641412} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -20, y: -61} - m_SizeDelta: {x: 40, y: 40} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &2428179994799252537 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3677479782866287611} - m_CullTransparentMesh: 1 ---- !u!114 &4036458469296782201 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3677479782866287611} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: a70289eca986ce142b027934f6cdd63c, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!1 &3690204757234537968 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 511600445208496078} - m_Layer: 5 - m_Name: monster_point - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &511600445208496078 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3690204757234537968} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 4627845664947695563} - - {fileID: 8104121081603232904} - m_Father: {fileID: 193494422633716833} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 1, y: 0.5} - m_AnchorMax: {x: 1, y: 0.5} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &4125813939478870326 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 8818864831549185987} - m_Layer: 5 - m_Name: chapter_slider_node - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &8818864831549185987 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4125813939478870326} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 193494422633716833} - m_Father: {fileID: 4165930251451731960} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &4256157741815556149 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1081292617687036162} - m_Layer: 5 - m_Name: hero_point - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1081292617687036162 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4256157741815556149} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 2484547138025502725} - - {fileID: 2503168683879278427} - - {fileID: 9119954169337438105} - m_Father: {fileID: 193494422633716833} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0.5} - m_AnchorMax: {x: 0, y: 0.5} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &4257723334167504430 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1612228100754787926} - - component: {fileID: 7114679376373543453} - - component: {fileID: 9221789421796628425} - m_Layer: 5 - m_Name: flag - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1612228100754787926 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4257723334167504430} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 2503168683879278427} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 1, y: 0.5} - m_AnchorMax: {x: 1, y: 0.5} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 17, y: 24} - m_Pivot: {x: 0, y: 0.5} ---- !u!222 &7114679376373543453 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4257723334167504430} - m_CullTransparentMesh: 1 ---- !u!114 &9221789421796628425 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4257723334167504430} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: dc4985268de75b145aca7a4528af2725, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!1 &4745869547709325579 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 981703808435638802} - - component: {fileID: 4374467717084283666} - - component: {fileID: 5108726035021293902} - m_Layer: 5 - m_Name: icon - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &981703808435638802 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4745869547709325579} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 9166866441771493925} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 25, y: -150} - m_SizeDelta: {x: 30, y: 36} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &4374467717084283666 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4745869547709325579} - m_CullTransparentMesh: 1 ---- !u!114 &5108726035021293902 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4745869547709325579} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: e06231dab1aab6f4faf41caefe38e46f, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!1 &4749514374641098861 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1591337919558276008} - - component: {fileID: 1753311986057958361} - - component: {fileID: 526670251277771935} - m_Layer: 5 - m_Name: chapter_slider_bg - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1591337919558276008 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4749514374641098861} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 193494422633716833} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -11} - m_SizeDelta: {x: 266, y: 22} - m_Pivot: {x: 0, y: 0.5} ---- !u!222 &1753311986057958361 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4749514374641098861} - m_CullTransparentMesh: 1 ---- !u!114 &526670251277771935 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4749514374641098861} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: ff604a18fbb77694a833d9b4fb867854, type: 3} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!1 &4881225223835176608 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 2503168683879278427} - - component: {fileID: 8669582772692574333} - - component: {fileID: 7461689760754235288} - m_Layer: 5 - m_Name: info_tx - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &2503168683879278427 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4881225223835176608} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 1612228100754787926} - m_Father: {fileID: 1081292617687036162} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: -40} - m_SizeDelta: {x: 100, y: 30} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &8669582772692574333 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4881225223835176608} - m_CullTransparentMesh: 1 ---- !u!114 &7461689760754235288 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4881225223835176608} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 9d1aadd9ebaf54ce2b217ab8427fa0db, type: 2} - m_sharedMaterial: {fileID: 2100000, guid: d9526b8cb4bc030488db413ef429c6f9, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4294967295 - m_fontColor: {r: 1, g: 1, b: 1, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 20 - m_fontSizeBase: 34 - m_fontWeight: 400 - m_enableAutoSizing: 1 - m_fontSizeMin: 16 - m_fontSizeMax: 20 - m_fontStyle: 0 - m_HorizontalAlignment: 2 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 0 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!1 &4953888166141623223 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 8104121081603232904} - - component: {fileID: 1461886313534182566} - - component: {fileID: 1799108783452058410} - m_Layer: 5 - m_Name: info_tx - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &8104121081603232904 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4953888166141623223} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 511600445208496078} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: -40} - m_SizeDelta: {x: 100, y: 30} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &1461886313534182566 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4953888166141623223} - m_CullTransparentMesh: 1 ---- !u!114 &1799108783452058410 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4953888166141623223} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 9d1aadd9ebaf54ce2b217ab8427fa0db, type: 2} - m_sharedMaterial: {fileID: 2100000, guid: d9526b8cb4bc030488db413ef429c6f9, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4294967295 - m_fontColor: {r: 1, g: 1, b: 1, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 20 - m_fontSizeBase: 34 - m_fontWeight: 400 - m_enableAutoSizing: 1 - m_fontSizeMin: 16 - m_fontSizeMax: 20 - m_fontStyle: 0 - m_HorizontalAlignment: 2 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 0 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!1 &5848217200649907838 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 7667236695589045383} - - component: {fileID: 1941300935289997497} - - component: {fileID: 8732450191076826077} - m_Layer: 5 - m_Name: icon - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &7667236695589045383 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5848217200649907838} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 6053461167938430896} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 55, y: 57} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &1941300935289997497 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5848217200649907838} - m_CullTransparentMesh: 1 ---- !u!114 &8732450191076826077 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5848217200649907838} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: bc5a4ff8c6c9ed54494fb72805923cd8, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!1 &6050197511598596183 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 3416767746476531135} - - component: {fileID: 5178001586999328374} - - component: {fileID: 3346872901872064639} - m_Layer: 5 - m_Name: reward_tx - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &3416767746476531135 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6050197511598596183} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 6484377644207641412} - m_RootOrder: 5 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 50, y: -61} - m_SizeDelta: {x: 100, y: 30} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &5178001586999328374 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6050197511598596183} - m_CullTransparentMesh: 1 ---- !u!114 &3346872901872064639 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6050197511598596183} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 9d1aadd9ebaf54ce2b217ab8427fa0db, type: 2} - m_sharedMaterial: {fileID: 2100000, guid: 09210edd46ea1463596717e00ea9e8be, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4294966360 - m_fontColor: {r: 0.34509805, g: 0.9882353, b: 1, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 20 - m_fontSizeBase: 34 - m_fontWeight: 400 - m_enableAutoSizing: 1 - m_fontSizeMin: 16 - m_fontSizeMax: 20 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 0 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!1 &6092607596069193938 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 2049467587131473221} - - component: {fileID: 5459706694046616701} - - component: {fileID: 3009484788841466320} - m_Layer: 5 - m_Name: bg - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &2049467587131473221 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6092607596069193938} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 9166866441771493925} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 71, y: -150} - m_SizeDelta: {x: 105, y: 26} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &5459706694046616701 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6092607596069193938} - m_CullTransparentMesh: 1 ---- !u!114 &3009484788841466320 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6092607596069193938} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 19fd27cd4703ce9458d08557023ac5b9, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 --- !u!1 &6372541753491826606 GameObject: m_ObjectHideFlags: 0 @@ -2578,722 +33,14 @@ RectTransform: - {fileID: 571195570897263757} - {fileID: 6834875611391042463} - {fileID: 2130492087200027735} - - {fileID: 5718046041329558961} m_Father: {fileID: 4165930251451731960} - m_RootOrder: 7 + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 1, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 0, y: 0} m_Pivot: {x: 0.5, y: 0} ---- !u!1 &6432186494501814930 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 674336807508876720} - - component: {fileID: 3040633538788936657} - - component: {fileID: 2875119400155874445} - - component: {fileID: 4263815960246104945} - - component: {fileID: 7359036237671426130} - m_Layer: 5 - m_Name: click_area - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &674336807508876720 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6432186494501814930} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 5444436122388562543} - m_Father: {fileID: 1092754556096371524} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 1, y: 1} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: -147.5, y: -181} - m_SizeDelta: {x: 255, y: 158} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &3040633538788936657 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6432186494501814930} - m_CullTransparentMesh: 1 ---- !u!114 &2875119400155874445 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6432186494501814930} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: ea6cc73146e6042cdae5988a604bca31, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] ---- !u!114 &4263815960246104945 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6432186494501814930} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 1069f9c1eb6f9475b8f98a4cbb9dfe01, type: 3} - m_Name: - m_EditorClassIdentifier: - IsShowClickAnimation: 0 ---- !u!114 &7359036237671426130 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6432186494501814930} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 54892bb5096614c8485ae6409a074672, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1 &6443666884084877041 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1757695519194206349} - - component: {fileID: 2993514220180322012} - m_Layer: 5 - m_Name: side_bar_bg - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1757695519194206349 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6443666884084877041} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 3257545949638324258} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 20, y: -200} - m_SizeDelta: {x: 64, y: 0} - m_Pivot: {x: 0, y: 1} ---- !u!222 &2993514220180322012 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6443666884084877041} - m_CullTransparentMesh: 1 ---- !u!1 &6596962126105257020 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 9166866441771493925} - m_Layer: 5 - m_Name: power_node - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &9166866441771493925 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6596962126105257020} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 2049467587131473221} - - {fileID: 981703808435638802} - - {fileID: 1972712850786947267} - m_Father: {fileID: 6527057472834029731} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &6800327439368359184 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 6307211260158690022} - - component: {fileID: 9189970173248068546} - m_Layer: 5 - m_Name: side_bar_bg - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &6307211260158690022 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6800327439368359184} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 7989197722468040919} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 1, y: 1} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: -20, y: -300} - m_SizeDelta: {x: 64, y: 0} - m_Pivot: {x: 1, y: 1} ---- !u!222 &9189970173248068546 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6800327439368359184} - m_CullTransparentMesh: 1 ---- !u!1 &6824364570384453519 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 3257545949638324258} - m_Layer: 5 - m_Name: left_node - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &3257545949638324258 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6824364570384453519} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 1757695519194206349} - m_Father: {fileID: 4165930251451731960} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &6913362361803346586 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1824912428096273307} - - component: {fileID: 7524226910912905175} - - component: {fileID: 2888360594926596434} - - component: {fileID: 6370781298746148939} - m_Layer: 5 - m_Name: block_touch - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1824912428096273307 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6913362361803346586} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1092754556096371524} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &7524226910912905175 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6913362361803346586} - m_CullTransparentMesh: 1 ---- !u!114 &2888360594926596434 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6913362361803346586} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: ea6cc73146e6042cdae5988a604bca31, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] ---- !u!114 &6370781298746148939 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 6913362361803346586} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 1069f9c1eb6f9475b8f98a4cbb9dfe01, type: 3} - m_Name: - m_EditorClassIdentifier: - IsShowClickAnimation: 0 ---- !u!1 &7127993031574014396 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 669392529895768564} - m_Layer: 5 - m_Name: black_node - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &669392529895768564 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7127993031574014396} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 2183262033117335580} - m_Father: {fileID: 4165930251451731960} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &7481981574879883300 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 7751305995039993832} - - component: {fileID: 3934474376574907390} - - component: {fileID: 8298619560667375271} - m_Layer: 5 - m_Name: title_tx - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &7751305995039993832 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7481981574879883300} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 9119954169337438105} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: 10} - m_SizeDelta: {x: 80, y: 25} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &3934474376574907390 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7481981574879883300} - m_CullTransparentMesh: 1 ---- !u!114 &8298619560667375271 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7481981574879883300} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 9d1aadd9ebaf54ce2b217ab8427fa0db, type: 2} - m_sharedMaterial: {fileID: 2100000, guid: d9526b8cb4bc030488db413ef429c6f9, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4294967295 - m_fontColor: {r: 1, g: 1, b: 1, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 20 - m_fontSizeBase: 34 - m_fontWeight: 400 - m_enableAutoSizing: 1 - m_fontSizeMin: 16 - m_fontSizeMax: 20 - m_fontStyle: 0 - m_HorizontalAlignment: 2 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 0 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!1 &7651058075645866790 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 789204392591637707} - - component: {fileID: 2956725529970571376} - - component: {fileID: 6077444008253683973} - m_Layer: 5 - m_Name: info_tx - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &789204392591637707 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7651058075645866790} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 3781779300746843151} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: 25} - m_SizeDelta: {x: 100, y: 30} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &2956725529970571376 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7651058075645866790} - m_CullTransparentMesh: 1 ---- !u!114 &6077444008253683973 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7651058075645866790} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 9d1aadd9ebaf54ce2b217ab8427fa0db, type: 2} - m_sharedMaterial: {fileID: 2100000, guid: d9526b8cb4bc030488db413ef429c6f9, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4294967295 - m_fontColor: {r: 1, g: 1, b: 1, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 20 - m_fontSizeBase: 34 - m_fontWeight: 400 - m_enableAutoSizing: 1 - m_fontSizeMin: 16 - m_fontSizeMax: 20 - m_fontStyle: 0 - m_HorizontalAlignment: 2 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 0 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!1 &7799214965103618924 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 557028712931624568} - - component: {fileID: 5498129160534882233} - - component: {fileID: 448755167969268363} - m_Layer: 5 - m_Name: slider_best - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &557028712931624568 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7799214965103618924} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 193494422633716833} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 260, y: 18} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &5498129160534882233 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7799214965103618924} - m_CullTransparentMesh: 1 ---- !u!114 &448755167969268363 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7799214965103618924} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 6c44c307d57c9417085df33db10b886d, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - m_Color: {r: 1, g: 1, b: 1, a: 0.39215687} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 3b14bc3747e2c3248b47a3ac14d44d6d, type: 3} - m_FillDirection: 0 - m_Value: 0 - m_FillCenter: 1 --- !u!1 &7855773179402164867 GameObject: m_ObjectHideFlags: 0 @@ -3369,84 +116,6 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!1 &8513562418596442905 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 9119954169337438105} - - component: {fileID: 1201893622962541654} - - component: {fileID: 3222356370740887954} - m_Layer: 5 - m_Name: monster_bg - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &9119954169337438105 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8513562418596442905} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 7751305995039993832} - - {fileID: 2640216896897408253} - - {fileID: 9057990132343947001} - m_Father: {fileID: 1081292617687036162} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 1} - m_AnchorMax: {x: 0.5, y: 1} - m_AnchoredPosition: {x: 0, y: -90} - m_SizeDelta: {x: 88, y: 63} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &1201893622962541654 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8513562418596442905} - m_CullTransparentMesh: 1 ---- !u!114 &3222356370740887954 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8513562418596442905} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: fc8e3140b83e0d548ac1d5c9b07903f3, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 --- !u!1 &8598416080246265500 GameObject: m_ObjectHideFlags: 0 @@ -3473,154 +142,15 @@ RectTransform: m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 1732988711805255822} - - {fileID: 6250502834651505893} - - {fileID: 2788555314010553145} - - {fileID: 656991775866039960} - - {fileID: 8597519951246749329} + m_Children: [] m_Father: {fileID: 4165930251451731960} - m_RootOrder: 6 + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 1, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 0, y: 0} m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &8617130479153313316 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 9057990132343947001} - - component: {fileID: 9195929856182253178} - - component: {fileID: 4025353184391012368} - m_Layer: 5 - m_Name: num_tx - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &9057990132343947001 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8617130479153313316} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 9119954169337438105} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 20, y: -15} - m_SizeDelta: {x: 50, y: 25} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &9195929856182253178 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8617130479153313316} - m_CullTransparentMesh: 1 ---- !u!114 &4025353184391012368 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8617130479153313316} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 9d1aadd9ebaf54ce2b217ab8427fa0db, type: 2} - m_sharedMaterial: {fileID: 2100000, guid: d9526b8cb4bc030488db413ef429c6f9, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4286282751 - m_fontColor: {r: 1, g: 0.48235294, b: 0.48235294, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 20 - m_fontSizeBase: 34 - m_fontWeight: 400 - m_enableAutoSizing: 1 - m_fontSizeMin: 16 - m_fontSizeMax: 20 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 0 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} --- !u!1 &8889665677046596496 GameObject: m_ObjectHideFlags: 0 @@ -3652,15 +182,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 8274743217520629258} - - {fileID: 669392529895768564} - - {fileID: 6527057472834029731} - - {fileID: 8818864831549185987} - - {fileID: 3257545949638324258} - - {fileID: 7989197722468040919} - {fileID: 4830373999101852056} - {fileID: 1848150626198586907} - - {fileID: 1092754556096371524} m_Father: {fileID: 0} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -3740,114 +263,14 @@ MonoBehaviour: hashName: 1039712771 objectType: 1 gameObject: {fileID: 4232882563936322084} - - name: main_ui.role_node.avatar_cell - hashName: 4115984177 - objectType: 1 - gameObject: {fileID: 4104217313734401608} - - name: main_ui.chapter_slider_node.chapter_slider_comp - hashName: 1841460071 - objectType: 0 - gameObject: {fileID: 202557614462489067} - - name: main_ui.left_node.side_bar_bg - hashName: 2180590353 - objectType: 0 - gameObject: {fileID: 6443666884084877041} - - name: main_ui.right_node.email_btn - hashName: 867353956 - objectType: 1 - gameObject: {fileID: 2402919714638007616} - - name: main_ui.right_node.tutorial_task_comp - hashName: 1342909469 - objectType: 0 - gameObject: {fileID: 104680247403427145} - - name: main_ui.right_node.side_bar_bg - hashName: 3625579332 - objectType: 0 - gameObject: {fileID: 6800327439368359184} - - name: main_ui.battle_node - hashName: 2868015125 - objectType: 0 - gameObject: {fileID: 2064472990877152046} - name: main_ui.sub_ui_node hashName: 2491556026 objectType: 0 gameObject: {fileID: 8598416080246265500} - - name: main_ui.sub_ui_node.shop_main_comp - hashName: 1251365760 - objectType: 1 - gameObject: {fileID: 1732988711805255821} - - name: main_ui.sub_ui_node.hero_main_comp - hashName: 1286984580 - objectType: 1 - gameObject: {fileID: 8136848173549673138} - - name: main_ui.sub_ui_node.train_main_comp - hashName: 371022634 - objectType: 1 - gameObject: {fileID: 364239199594399604} - - name: main_ui.sub_ui_node.dungeon_main_comp - hashName: 1560595036 - objectType: 1 - gameObject: {fileID: 656991775866039961} - - name: main_ui.sub_ui_node.mine_main_comp - hashName: 2153860253 - objectType: 1 - gameObject: {fileID: 8415612240083496722} - - name: main_ui.bottom_node.tutorial_finger - hashName: 1550393342 - objectType: 0 - gameObject: {fileID: 6939125473106904621} - name: main_ui.bottom_node hashName: 3008370306 objectType: 0 gameObject: {fileID: 6372541753491826606} - - name: main_ui.left_node - hashName: 512042278 - objectType: 0 - gameObject: {fileID: 6824364570384453519} - - name: main_ui.right_node - hashName: 3439485401 - objectType: 0 - gameObject: {fileID: 827181694154649008} - - name: main_ui.role_node.power_node.power_tx - hashName: 2615863897 - objectType: 0 - gameObject: {fileID: 2962082152547337933} - - name: main_ui.black_node - hashName: 3189164502 - objectType: 0 - gameObject: {fileID: 7127993031574014396} - - name: main_ui.black_node.black_bg - hashName: 4272637341 - objectType: 0 - gameObject: {fileID: 2942847790656062710} - - name: main_ui.black_node.black_bg.desc_tx - hashName: 2328889249 - objectType: 0 - gameObject: {fileID: 2382861402624711343} - - name: main_ui.tutorial_task_node - hashName: 2996558959 - objectType: 0 - gameObject: {fileID: 2377777153448008571} - - name: main_ui.tutorial_task_node.mask - hashName: 3767718155 - objectType: 0 - gameObject: {fileID: 2669887941696002039} - - name: main_ui.tutorial_task_node.click_area - hashName: 3244978115 - objectType: 0 - gameObject: {fileID: 6432186494501814930} - - name: main_ui.tutorial_task_node.finger_node - hashName: 3044606489 - objectType: 0 - gameObject: {fileID: 7248728871315874291} - - name: main_ui.tutorial_task_node.block_touch - hashName: 1369705998 - objectType: 0 - gameObject: {fileID: 6913362361803346586} - - name: main_ui.right_node.tutorial_task_comp.chapter_task_bg - hashName: 117196668 - objectType: 0 - gameObject: {fileID: 851091067623174581} --- !u!114 &6214590949040345325 MonoBehaviour: m_ObjectHideFlags: 0 @@ -3862,2679 +285,6 @@ MonoBehaviour: m_EditorClassIdentifier: EffectList: [] NotchScreenNodeList: [] ---- !u!1 &8920611595360822172 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 7468731333162892114} - - component: {fileID: 888223500018561540} - - component: {fileID: 7110574357669509336} - m_Layer: 5 - m_Name: flag - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &7468731333162892114 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8920611595360822172} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 3781779300746843151} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 17, y: 24} - m_Pivot: {x: 0, y: 0.5} ---- !u!222 &888223500018561540 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8920611595360822172} - m_CullTransparentMesh: 1 ---- !u!114 &7110574357669509336 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8920611595360822172} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: dc4985268de75b145aca7a4528af2725, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!1 &8940840849310574652 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 8180796123622374865} - - component: {fileID: 5608573127048696453} - - component: {fileID: 1659142367063837685} - m_Layer: 5 - m_Name: light - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &8180796123622374865 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8940840849310574652} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 6484377644207641412} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 252, y: 197} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &5608573127048696453 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8940840849310574652} - m_CullTransparentMesh: 1 ---- !u!114 &1659142367063837685 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8940840849310574652} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 12ab29ecbf0d5bb44a8c12e85e68dee7, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!1 &9043925611963935032 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 2640216896897408253} - - component: {fileID: 1383326586964723780} - - component: {fileID: 1945786864321007473} - m_Layer: 5 - m_Name: icon - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &2640216896897408253 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 9043925611963935032} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 9119954169337438105} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -20, y: -15} - m_SizeDelta: {x: 18, y: 18} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &1383326586964723780 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 9043925611963935032} - m_CullTransparentMesh: 1 ---- !u!114 &1945786864321007473 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 9043925611963935032} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 115f26d16db83bf409d630b9013e05f9, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!1 &9168396836327561710 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 4289587899336796939} - - component: {fileID: 462875406704598640} - - component: {fileID: 6417274249442477111} - m_Layer: 5 - m_Name: progress_tx - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &4289587899336796939 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 9168396836327561710} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 6484377644207641412} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 1} - m_AnchorMax: {x: 0.5, y: 1} - m_AnchoredPosition: {x: 0, y: -115} - m_SizeDelta: {x: 250, y: 30} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &462875406704598640 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 9168396836327561710} - m_CullTransparentMesh: 1 ---- !u!114 &6417274249442477111 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 9168396836327561710} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 9d1aadd9ebaf54ce2b217ab8427fa0db, type: 2} - m_sharedMaterial: {fileID: 2100000, guid: 09210edd46ea1463596717e00ea9e8be, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4284243199 - m_fontColor: {r: 1, g: 0.36078432, b: 0.36078432, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 20 - m_fontSizeBase: 34 - m_fontWeight: 400 - m_enableAutoSizing: 1 - m_fontSizeMin: 16 - m_fontSizeMax: 20 - m_fontStyle: 0 - m_HorizontalAlignment: 2 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 0 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 1 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!1001 &55696777499218425 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - m_TransformParent: {fileID: 1081292617687036162} - m_Modifications: - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_RootOrder - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_AnchorMax.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_AnchorMax.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_AnchorMin.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_AnchorMin.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_SizeDelta.x - value: 96 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_SizeDelta.y - value: 96 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_LocalScale.x - value: 0.4 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_LocalScale.y - value: 0.4 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_LocalRotation.x - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_LocalRotation.y - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_LocalRotation.z - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3838290293284238013, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: IsShowClickAnimation - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 7471363632449712567, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_Name - value: avatar_cell - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} ---- !u!224 &2484547138025502725 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - m_PrefabInstance: {fileID: 55696777499218425} - m_PrefabAsset: {fileID: 0} ---- !u!1 &7451841440744104014 stripped -GameObject: - m_CorrespondingSourceObject: {fileID: 7471363632449712567, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - m_PrefabInstance: {fileID: 55696777499218425} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &1121571633087537244 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - m_TransformParent: {fileID: 4830373999101852056} - m_Modifications: - - target: {fileID: 14791137684454287, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 14791137684454287, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 14791137684454287, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 14791137684454287, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 14791137684454287, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 355 - objectReference: {fileID: 0} - - target: {fileID: 14791137684454287, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -62.5 - objectReference: {fileID: 0} - - target: {fileID: 14791137688782878, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 14791137688782878, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 14791137688782878, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 14791137688782878, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 14791137688782878, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 95 - objectReference: {fileID: 0} - - target: {fileID: 14791137688782878, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -62.5 - objectReference: {fileID: 0} - - target: {fileID: 14791137821923828, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 14791137821923828, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 14791137821923828, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 14791137821923828, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 14791137821923828, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 485 - objectReference: {fileID: 0} - - target: {fileID: 14791137821923828, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -62.5 - objectReference: {fileID: 0} - - target: {fileID: 14791138527289086, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 14791138527289086, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 14791138527289086, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 14791138527289086, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 14791138527289086, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 225 - objectReference: {fileID: 0} - - target: {fileID: 14791138527289086, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -62.5 - objectReference: {fileID: 0} - - target: {fileID: 98265154338358503, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_text - value: - objectReference: {fileID: 0} - - target: {fileID: 108914898050910605, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_Material - value: - objectReference: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - - target: {fileID: 201997002806954779, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 201997002806954779, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 201997002806954779, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 220 - objectReference: {fileID: 0} - - target: {fileID: 201997002806954779, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 400 - objectReference: {fileID: 0} - - target: {fileID: 201997002806954779, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 360 - objectReference: {fileID: 0} - - target: {fileID: 201997002806954779, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -220 - objectReference: {fileID: 0} - - target: {fileID: 202536134014095934, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_Layer - value: 5 - objectReference: {fileID: 0} - - target: {fileID: 298589826780876349, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 298589826780876349, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 298589826780876349, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 298589826780876349, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 298589826780876349, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 225 - objectReference: {fileID: 0} - - target: {fileID: 298589826780876349, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -57.5 - objectReference: {fileID: 0} - - target: {fileID: 298589828019935453, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 298589828019935453, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 298589828019935453, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 298589828019935453, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 298589828019935453, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 95 - objectReference: {fileID: 0} - - target: {fileID: 298589828019935453, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -57.5 - objectReference: {fileID: 0} - - target: {fileID: 298589828024281932, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 298589828024281932, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 298589828024281932, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 298589828024281932, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 298589828024281932, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 95 - objectReference: {fileID: 0} - - target: {fileID: 298589828024281932, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -172.5 - objectReference: {fileID: 0} - - target: {fileID: 298589828157327671, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 298589828157327671, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 298589828157327671, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 298589828157327671, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 298589828157327671, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 225 - objectReference: {fileID: 0} - - target: {fileID: 298589828157327671, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -172.5 - objectReference: {fileID: 0} - - target: {fileID: 349484214829827135, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 349484214829827135, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 349484214829827135, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 349484214829827135, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 349484214829827135, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 355 - objectReference: {fileID: 0} - - target: {fileID: 349484214829827135, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -177.5 - objectReference: {fileID: 0} - - target: {fileID: 554393119621066600, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 554393119621066600, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 554393119621066600, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 554393119621066600, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 554393119621066600, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 485 - objectReference: {fileID: 0} - - target: {fileID: 554393119621066600, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -177.5 - objectReference: {fileID: 0} - - target: {fileID: 870995681460766738, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_Layer - value: 5 - objectReference: {fileID: 0} - - target: {fileID: 1064979714024064279, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_Layer - value: 5 - objectReference: {fileID: 0} - - target: {fileID: 1127391346531714379, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 1127391346531714379, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 1127391346531714379, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 720 - objectReference: {fileID: 0} - - target: {fileID: 1127391346531714379, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 447 - objectReference: {fileID: 0} - - target: {fileID: 1127391346531714379, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 360 - objectReference: {fileID: 0} - - target: {fileID: 1127391346531714379, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -2171.5 - objectReference: {fileID: 0} - - target: {fileID: 1184602915003886949, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 1184602915003886949, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 1184602915003886949, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 220 - objectReference: {fileID: 0} - - target: {fileID: 1184602915003886949, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 400 - objectReference: {fileID: 0} - - target: {fileID: 1184602915003886949, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 126 - objectReference: {fileID: 0} - - target: {fileID: 1184602915003886949, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -635 - objectReference: {fileID: 0} - - target: {fileID: 1339676575296688618, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_Material - value: - objectReference: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - - target: {fileID: 1399968882788246489, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 1399968882788246489, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 1399968882788246489, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 1399968882788246489, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 1399968882788246489, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 95 - objectReference: {fileID: 0} - - target: {fileID: 1399968882788246489, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -172.5 - objectReference: {fileID: 0} - - target: {fileID: 1399968882792550472, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 1399968882792550472, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 1399968882792550472, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 1399968882792550472, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 1399968882792550472, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 95 - objectReference: {fileID: 0} - - target: {fileID: 1399968882792550472, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -57.5 - objectReference: {fileID: 0} - - target: {fileID: 1399968883187892642, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 1399968883187892642, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 1399968883187892642, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 1399968883187892642, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 1399968883187892642, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 225 - objectReference: {fileID: 0} - - target: {fileID: 1399968883187892642, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -172.5 - objectReference: {fileID: 0} - - target: {fileID: 1399968883624822440, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 1399968883624822440, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 1399968883624822440, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 1399968883624822440, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 1399968883624822440, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 225 - objectReference: {fileID: 0} - - target: {fileID: 1399968883624822440, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -57.5 - objectReference: {fileID: 0} - - target: {fileID: 1545698659924589149, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 1545698659924589149, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 1545698659924589149, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 1545698659924589149, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 1545698659924589149, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 615 - objectReference: {fileID: 0} - - target: {fileID: 1545698659924589149, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -62.5 - objectReference: {fileID: 0} - - target: {fileID: 1701322136087726395, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_text - value: - objectReference: {fileID: 0} - - target: {fileID: 1701322136098077231, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_Material - value: - objectReference: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - - target: {fileID: 1701322136124224287, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_text - value: - objectReference: {fileID: 0} - - target: {fileID: 1701322136217299815, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_text - value: - objectReference: {fileID: 0} - - target: {fileID: 1701322136233992401, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_Name - value: shop_main_comp - objectReference: {fileID: 0} - - target: {fileID: 1701322136233992401, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_IsActive - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 1701322136233992402, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 1701322136233992402, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 1701322136233992402, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_RootOrder - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 1701322136233992402, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.x - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 1701322136233992402, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 1701322136233992402, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 1701322136233992402, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 1701322136233992402, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 1701322136233992402, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 1701322136233992402, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 1701322136233992402, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 1701322136233992402, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 1701322136233992402, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 1701322136233992402, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 1701322136233992402, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 1701322136233992402, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 1701322136233992402, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 1701322136233992402, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 1701322136233992402, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 1701322136233992402, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 1701322136233992402, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 1701322136248777433, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_text - value: - objectReference: {fileID: 0} - - target: {fileID: 1701322136297557621, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_text - value: - objectReference: {fileID: 0} - - target: {fileID: 1701322136531093591, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_Material - value: - objectReference: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - - target: {fileID: 1701322136582057847, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_Material - value: - objectReference: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - - target: {fileID: 1701322136643630795, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_text - value: - objectReference: {fileID: 0} - - target: {fileID: 1701322136647874313, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_text - value: - objectReference: {fileID: 0} - - target: {fileID: 1701322136738728135, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_text - value: - objectReference: {fileID: 0} - - target: {fileID: 1701322136765839563, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_text - value: - objectReference: {fileID: 0} - - target: {fileID: 1701322136770612314, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_IsActive - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 1701322136815703235, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_IsActive - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 1701322136888281466, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_Material - value: - objectReference: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - - target: {fileID: 1701322136895259328, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_text - value: - objectReference: {fileID: 0} - - target: {fileID: 1701322137074262732, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_text - value: - objectReference: {fileID: 0} - - target: {fileID: 1701322137076462606, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_text - value: - objectReference: {fileID: 0} - - target: {fileID: 1701322137279518807, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_text - value: - objectReference: {fileID: 0} - - target: {fileID: 1701322137436462046, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_Material - value: - objectReference: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - - target: {fileID: 1701322137478584772, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_text - value: - objectReference: {fileID: 0} - - target: {fileID: 1701322137565857807, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_Material - value: - objectReference: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - - target: {fileID: 1701322137633402394, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_IsActive - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 1701322137706721110, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_text - value: - objectReference: {fileID: 0} - - target: {fileID: 1701322137781054650, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_Material - value: - objectReference: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - - target: {fileID: 1701322137809006571, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_IsActive - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 1701322137865664670, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_text - value: - objectReference: {fileID: 0} - - target: {fileID: 1701322137895848245, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_text - value: - objectReference: {fileID: 0} - - target: {fileID: 1701322137902829832, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_text - value: - objectReference: {fileID: 0} - - target: {fileID: 1701322137909079082, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_Material - value: - objectReference: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - - target: {fileID: 1701322137920938309, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_IsActive - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 1701322137948950980, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 70 - objectReference: {fileID: 0} - - target: {fileID: 1701322137948950980, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 38 - objectReference: {fileID: 0} - - target: {fileID: 1701322137948950980, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_LocalScale.x - value: 0.6 - objectReference: {fileID: 0} - - target: {fileID: 1701322137948950980, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_LocalScale.y - value: 0.6 - objectReference: {fileID: 0} - - target: {fileID: 1701322137948950980, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -12.6 - objectReference: {fileID: 0} - - target: {fileID: 1701322138000283275, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 1701322138000283275, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 1701322138000283275, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 162 - objectReference: {fileID: 0} - - target: {fileID: 1701322138000283275, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -41.608334 - objectReference: {fileID: 0} - - target: {fileID: 1701322138093053713, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_text - value: - objectReference: {fileID: 0} - - target: {fileID: 1701322138200560449, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_text - value: - objectReference: {fileID: 0} - - target: {fileID: 1715699663003540479, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 1715699663003540479, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 1715699663003540479, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 220 - objectReference: {fileID: 0} - - target: {fileID: 1715699663003540479, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 400 - objectReference: {fileID: 0} - - target: {fileID: 1715699663003540479, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 126 - objectReference: {fileID: 0} - - target: {fileID: 1715699663003540479, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -220 - objectReference: {fileID: 0} - - target: {fileID: 1832646652709255253, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 1832646652709255253, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 1832646652709255253, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 162 - objectReference: {fileID: 0} - - target: {fileID: 1832646652709255253, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -129.825 - objectReference: {fileID: 0} - - target: {fileID: 1994166575633546273, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 1994166575633546273, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 1994166575633546273, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 1994166575633546273, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 1994166575633546273, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 225 - objectReference: {fileID: 0} - - target: {fileID: 1994166575633546273, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -177.5 - objectReference: {fileID: 0} - - target: {fileID: 2098718926428971920, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_Material - value: - objectReference: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - - target: {fileID: 2260150130105071078, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_Layer - value: 5 - objectReference: {fileID: 0} - - target: {fileID: 2340433207213661301, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 2340433207213661301, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 2340433207213661301, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 220 - objectReference: {fileID: 0} - - target: {fileID: 2340433207213661301, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 400 - objectReference: {fileID: 0} - - target: {fileID: 2340433207213661301, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 594 - objectReference: {fileID: 0} - - target: {fileID: 2340433207213661301, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -635 - objectReference: {fileID: 0} - - target: {fileID: 2399619156515777316, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_Material - value: - objectReference: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - - target: {fileID: 2504204978683734657, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 2504204978683734657, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 2504204978683734657, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 162 - objectReference: {fileID: 0} - - target: {fileID: 2504204978683734657, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -218.04167 - objectReference: {fileID: 0} - - target: {fileID: 2531988650249231601, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_text - value: - objectReference: {fileID: 0} - - target: {fileID: 2563223942375737295, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 2563223942375737295, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 2563223942375737295, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 720 - objectReference: {fileID: 0} - - target: {fileID: 2563223942375737295, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 447 - objectReference: {fileID: 0} - - target: {fileID: 2563223942375737295, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 360 - objectReference: {fileID: 0} - - target: {fileID: 2563223942375737295, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -1684.5 - objectReference: {fileID: 0} - - target: {fileID: 2741183955043255867, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 2741183955043255867, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 2741183955043255867, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 2741183955043255867, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 2741183955043255867, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 225 - objectReference: {fileID: 0} - - target: {fileID: 2741183955043255867, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -57.5 - objectReference: {fileID: 0} - - target: {fileID: 2741183955814809905, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 2741183955814809905, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 2741183955814809905, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 2741183955814809905, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 2741183955814809905, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 225 - objectReference: {fileID: 0} - - target: {fileID: 2741183955814809905, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -172.5 - objectReference: {fileID: 0} - - target: {fileID: 2741183956482724059, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 2741183956482724059, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 2741183956482724059, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 2741183956482724059, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 2741183956482724059, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 95 - objectReference: {fileID: 0} - - target: {fileID: 2741183956482724059, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -57.5 - objectReference: {fileID: 0} - - target: {fileID: 2741183956486841162, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 2741183956486841162, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 2741183956486841162, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 2741183956486841162, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 2741183956486841162, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 95 - objectReference: {fileID: 0} - - target: {fileID: 2741183956486841162, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -172.5 - objectReference: {fileID: 0} - - target: {fileID: 3085687067902600087, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3085687067902600087, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3085687067902600087, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 3085687067902600087, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 3085687067902600087, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 225 - objectReference: {fileID: 0} - - target: {fileID: 3085687067902600087, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -57.5 - objectReference: {fileID: 0} - - target: {fileID: 3085687068606915741, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3085687068606915741, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3085687068606915741, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 3085687068606915741, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 3085687068606915741, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 225 - objectReference: {fileID: 0} - - target: {fileID: 3085687068606915741, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -172.5 - objectReference: {fileID: 0} - - target: {fileID: 3085687069274830199, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3085687069274830199, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3085687069274830199, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 3085687069274830199, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 3085687069274830199, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 95 - objectReference: {fileID: 0} - - target: {fileID: 3085687069274830199, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -57.5 - objectReference: {fileID: 0} - - target: {fileID: 3085687069279160038, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3085687069279160038, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3085687069279160038, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 3085687069279160038, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 3085687069279160038, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 95 - objectReference: {fileID: 0} - - target: {fileID: 3085687069279160038, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -172.5 - objectReference: {fileID: 0} - - target: {fileID: 3136391511661702636, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3136391511661702636, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3136391511661702636, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 3136391511661702636, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 3136391511661702636, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 485 - objectReference: {fileID: 0} - - target: {fileID: 3136391511661702636, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -177.5 - objectReference: {fileID: 0} - - target: {fileID: 3171561745404250778, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3171561745404250778, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3171561745404250778, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 3171561745404250778, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 3171561745404250778, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 95 - objectReference: {fileID: 0} - - target: {fileID: 3171561745404250778, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -62.5 - objectReference: {fileID: 0} - - target: {fileID: 3171561745408538891, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3171561745408538891, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3171561745408538891, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 3171561745408538891, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 3171561745408538891, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 355 - objectReference: {fileID: 0} - - target: {fileID: 3171561745408538891, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -62.5 - objectReference: {fileID: 0} - - target: {fileID: 3171561745814215536, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3171561745814215536, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3171561745814215536, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 3171561745814215536, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 3171561745814215536, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 485 - objectReference: {fileID: 0} - - target: {fileID: 3171561745814215536, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -62.5 - objectReference: {fileID: 0} - - target: {fileID: 3171561746250095738, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3171561746250095738, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3171561746250095738, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 3171561746250095738, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 3171561746250095738, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 225 - objectReference: {fileID: 0} - - target: {fileID: 3171561746250095738, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -62.5 - objectReference: {fileID: 0} - - target: {fileID: 3304702249015708805, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_Layer - value: 5 - objectReference: {fileID: 0} - - target: {fileID: 3763502502519971147, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3763502502519971147, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3763502502519971147, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 3763502502519971147, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 3763502502519971147, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 225 - objectReference: {fileID: 0} - - target: {fileID: 3763502502519971147, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -57.5 - objectReference: {fileID: 0} - - target: {fileID: 3763502503820430251, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3763502503820430251, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3763502503820430251, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 3763502503820430251, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 3763502503820430251, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 95 - objectReference: {fileID: 0} - - target: {fileID: 3763502503820430251, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -57.5 - objectReference: {fileID: 0} - - target: {fileID: 3763502503824488506, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3763502503824488506, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3763502503824488506, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 3763502503824488506, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 3763502503824488506, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 95 - objectReference: {fileID: 0} - - target: {fileID: 3763502503824488506, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -172.5 - objectReference: {fileID: 0} - - target: {fileID: 3763502503961958977, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3763502503961958977, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3763502503961958977, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 3763502503961958977, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 3763502503961958977, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 225 - objectReference: {fileID: 0} - - target: {fileID: 3763502503961958977, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -172.5 - objectReference: {fileID: 0} - - target: {fileID: 3884658972899426537, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_text - value: - objectReference: {fileID: 0} - - target: {fileID: 3932732765896366161, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3932732765896366161, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3932732765896366161, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 3932732765896366161, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 3932732765896366161, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 615 - objectReference: {fileID: 0} - - target: {fileID: 3932732765896366161, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -177.5 - objectReference: {fileID: 0} - - target: {fileID: 3952396420378876232, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3952396420378876232, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3952396420378876232, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 3952396420378876232, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 3952396420378876232, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 95 - objectReference: {fileID: 0} - - target: {fileID: 3952396420378876232, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -172.5 - objectReference: {fileID: 0} - - target: {fileID: 3952396420383222489, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3952396420383222489, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3952396420383222489, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 3952396420383222489, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 3952396420383222489, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 95 - objectReference: {fileID: 0} - - target: {fileID: 3952396420383222489, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -57.5 - objectReference: {fileID: 0} - - target: {fileID: 3952396421046942515, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3952396421046942515, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3952396421046942515, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 3952396421046942515, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 3952396421046942515, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 225 - objectReference: {fileID: 0} - - target: {fileID: 3952396421046942515, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -172.5 - objectReference: {fileID: 0} - - target: {fileID: 3952396421818891321, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3952396421818891321, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3952396421818891321, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 3952396421818891321, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 3952396421818891321, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 225 - objectReference: {fileID: 0} - - target: {fileID: 3952396421818891321, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -57.5 - objectReference: {fileID: 0} - - target: {fileID: 4088490189440702298, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_text - value: - objectReference: {fileID: 0} - - target: {fileID: 4094373796613286391, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 4094373796613286391, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 4094373796613286391, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 4094373796613286391, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 4094373796613286391, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 95 - objectReference: {fileID: 0} - - target: {fileID: 4094373796613286391, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -177.5 - objectReference: {fileID: 0} - - target: {fileID: 4126500474084948185, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 4126500474084948185, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 4126500474084948185, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 4126500474084948185, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 4126500474084948185, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 615 - objectReference: {fileID: 0} - - target: {fileID: 4126500474084948185, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -62.5 - objectReference: {fileID: 0} - - target: {fileID: 4127555966789233737, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_Layer - value: 5 - objectReference: {fileID: 0} - - target: {fileID: 4461911410771907827, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_Layer - value: 5 - objectReference: {fileID: 0} - - target: {fileID: 4751518405729293970, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 4751518405729293970, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 4751518405729293970, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 220 - objectReference: {fileID: 0} - - target: {fileID: 4751518405729293970, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 400 - objectReference: {fileID: 0} - - target: {fileID: 4751518405729293970, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 594 - objectReference: {fileID: 0} - - target: {fileID: 4751518405729293970, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -220 - objectReference: {fileID: 0} - - target: {fileID: 4870179019059584143, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_Layer - value: 5 - objectReference: {fileID: 0} - - target: {fileID: 4881421947973947472, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_Layer - value: 5 - objectReference: {fileID: 0} - - target: {fileID: 4961765828647404080, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 4961765828647404080, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 4961765828647404080, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 4961765828647404080, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 4961765828647404080, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 95 - objectReference: {fileID: 0} - - target: {fileID: 4961765828647404080, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -177.5 - objectReference: {fileID: 0} - - target: {fileID: 5055056586849179756, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 5055056586849179756, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 5055056586849179756, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 720 - objectReference: {fileID: 0} - - target: {fileID: 5055056586849179756, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 447 - objectReference: {fileID: 0} - - target: {fileID: 5055056586849179756, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 360 - objectReference: {fileID: 0} - - target: {fileID: 5055056586849179756, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -223.5 - objectReference: {fileID: 0} - - target: {fileID: 5148033805315221648, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_Material - value: - objectReference: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - - target: {fileID: 5375687586422780822, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 5375687586422780822, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 5375687586422780822, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 5375687586422780822, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 5375687586422780822, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 615 - objectReference: {fileID: 0} - - target: {fileID: 5375687586422780822, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -177.5 - objectReference: {fileID: 0} - - target: {fileID: 5445417090778158434, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 5445417090778158434, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 5445417090778158434, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 5445417090778158434, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 5445417090778158434, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 225 - objectReference: {fileID: 0} - - target: {fileID: 5445417090778158434, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -177.5 - objectReference: {fileID: 0} - - target: {fileID: 5593620889105354223, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_text - value: - objectReference: {fileID: 0} - - target: {fileID: 5767490885500172221, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 5767490885500172221, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 5767490885500172221, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 5767490885500172221, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 5767490885500172221, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 225 - objectReference: {fileID: 0} - - target: {fileID: 5767490885500172221, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -62.5 - objectReference: {fileID: 0} - - target: {fileID: 5767490886204616887, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 5767490886204616887, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 5767490886204616887, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 5767490886204616887, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 5767490886204616887, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 485 - objectReference: {fileID: 0} - - target: {fileID: 5767490886204616887, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -62.5 - objectReference: {fileID: 0} - - target: {fileID: 5767490886878696140, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 5767490886878696140, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 5767490886878696140, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 5767490886878696140, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 5767490886878696140, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 355 - objectReference: {fileID: 0} - - target: {fileID: 5767490886878696140, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -62.5 - objectReference: {fileID: 0} - - target: {fileID: 5767490886883074397, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 5767490886883074397, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 5767490886883074397, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 5767490886883074397, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 5767490886883074397, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 95 - objectReference: {fileID: 0} - - target: {fileID: 5767490886883074397, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -62.5 - objectReference: {fileID: 0} - - target: {fileID: 5804890287123609817, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_text - value: - objectReference: {fileID: 0} - - target: {fileID: 5881647482551114075, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 5881647482551114075, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 5881647482551114075, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 5881647482551114075, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 5881647482551114075, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 95 - objectReference: {fileID: 0} - - target: {fileID: 5881647482551114075, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -57.5 - objectReference: {fileID: 0} - - target: {fileID: 5881647482555165386, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 5881647482555165386, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 5881647482555165386, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 5881647482555165386, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 5881647482555165386, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 95 - objectReference: {fileID: 0} - - target: {fileID: 5881647482555165386, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -172.5 - objectReference: {fileID: 0} - - target: {fileID: 5881647482692634801, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 5881647482692634801, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 5881647482692634801, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 5881647482692634801, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 5881647482692634801, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 225 - objectReference: {fileID: 0} - - target: {fileID: 5881647482692634801, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -172.5 - objectReference: {fileID: 0} - - target: {fileID: 5881647483397476283, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 5881647483397476283, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 5881647483397476283, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 5881647483397476283, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 5881647483397476283, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 225 - objectReference: {fileID: 0} - - target: {fileID: 5881647483397476283, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -57.5 - objectReference: {fileID: 0} - - target: {fileID: 5881960861594908782, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_Layer - value: 5 - objectReference: {fileID: 0} - - target: {fileID: 6045560984169023796, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_Material - value: - objectReference: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - - target: {fileID: 6117907116532280700, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 6117907116532280700, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 6117907116532280700, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 6117907116532280700, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 6117907116532280700, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 355 - objectReference: {fileID: 0} - - target: {fileID: 6117907116532280700, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -177.5 - objectReference: {fileID: 0} - - target: {fileID: 6145414501516276936, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_Layer - value: 5 - objectReference: {fileID: 0} - - target: {fileID: 6238275830054965226, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_Material - value: - objectReference: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - - target: {fileID: 6412276010479381391, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_Material - value: - objectReference: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - - target: {fileID: 6527882518956944812, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 6527882518956944812, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 6527882518956944812, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 6527882518956944812, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 6527882518956944812, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 225 - objectReference: {fileID: 0} - - target: {fileID: 6527882518956944812, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -57.5 - objectReference: {fileID: 0} - - target: {fileID: 6527882519723162444, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 6527882519723162444, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 6527882519723162444, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 6527882519723162444, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 6527882519723162444, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 95 - objectReference: {fileID: 0} - - target: {fileID: 6527882519723162444, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -57.5 - objectReference: {fileID: 0} - - target: {fileID: 6527882519727458525, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 6527882519727458525, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 6527882519727458525, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 6527882519727458525, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 6527882519727458525, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 95 - objectReference: {fileID: 0} - - target: {fileID: 6527882519727458525, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -172.5 - objectReference: {fileID: 0} - - target: {fileID: 6527882520667892390, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 6527882520667892390, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 6527882520667892390, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 6527882520667892390, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 6527882520667892390, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 225 - objectReference: {fileID: 0} - - target: {fileID: 6527882520667892390, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -172.5 - objectReference: {fileID: 0} - - target: {fileID: 6720690149722046691, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_Material - value: - objectReference: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - - target: {fileID: 6785300643693147598, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 6785300643693147598, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 6785300643693147598, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 720 - objectReference: {fileID: 0} - - target: {fileID: 6785300643693147598, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 447 - objectReference: {fileID: 0} - - target: {fileID: 6785300643693147598, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 360 - objectReference: {fileID: 0} - - target: {fileID: 6785300643693147598, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -710.5 - objectReference: {fileID: 0} - - target: {fileID: 7322553198041829171, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_text - value: - objectReference: {fileID: 0} - - target: {fileID: 7335250248224505253, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_text - value: - objectReference: {fileID: 0} - - target: {fileID: 7381768000873021692, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_text - value: - objectReference: {fileID: 0} - - target: {fileID: 7398690212479414546, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 7398690212479414546, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 7398690212479414546, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 7398690212479414546, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 7398690212479414546, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 615 - objectReference: {fileID: 0} - - target: {fileID: 7398690212479414546, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -177.5 - objectReference: {fileID: 0} - - target: {fileID: 7468422916534048742, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 7468422916534048742, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 7468422916534048742, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 7468422916534048742, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 7468422916534048742, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 225 - objectReference: {fileID: 0} - - target: {fileID: 7468422916534048742, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -177.5 - objectReference: {fileID: 0} - - target: {fileID: 7560577677346275508, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 7560577677346275508, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 7560577677346275508, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 7560577677346275508, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 7560577677346275508, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 95 - objectReference: {fileID: 0} - - target: {fileID: 7560577677346275508, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -177.5 - objectReference: {fileID: 0} - - target: {fileID: 7600655876946661786, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 7600655876946661786, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 7600655876946661786, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 7600655876946661786, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 7600655876946661786, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 615 - objectReference: {fileID: 0} - - target: {fileID: 7600655876946661786, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -62.5 - objectReference: {fileID: 0} - - target: {fileID: 8175048146375410279, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_Material - value: - objectReference: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - - target: {fileID: 8335270696223600268, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 8335270696223600268, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 8335270696223600268, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 720 - objectReference: {fileID: 0} - - target: {fileID: 8335270696223600268, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 447 - objectReference: {fileID: 0} - - target: {fileID: 8335270696223600268, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 360 - objectReference: {fileID: 0} - - target: {fileID: 8335270696223600268, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -1197.5 - objectReference: {fileID: 0} - - target: {fileID: 8364202069740336531, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_text - value: - objectReference: {fileID: 0} - - target: {fileID: 8366207433751552025, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_text - value: - objectReference: {fileID: 0} - - target: {fileID: 8459065273202774457, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 8459065273202774457, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 8459065273202774457, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 220 - objectReference: {fileID: 0} - - target: {fileID: 8459065273202774457, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 400 - objectReference: {fileID: 0} - - target: {fileID: 8459065273202774457, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 360 - objectReference: {fileID: 0} - - target: {fileID: 8459065273202774457, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -635 - objectReference: {fileID: 0} - - target: {fileID: 8705465738849677304, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 8705465738849677304, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 8705465738849677304, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 8705465738849677304, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 8705465738849677304, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 355 - objectReference: {fileID: 0} - - target: {fileID: 8705465738849677304, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -177.5 - objectReference: {fileID: 0} - - target: {fileID: 8914877004391711919, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 8914877004391711919, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 8914877004391711919, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.x - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 8914877004391711919, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_SizeDelta.y - value: 110 - objectReference: {fileID: 0} - - target: {fileID: 8914877004391711919, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.x - value: 485 - objectReference: {fileID: 0} - - target: {fileID: 8914877004391711919, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_AnchoredPosition.y - value: -177.5 - objectReference: {fileID: 0} - - target: {fileID: 9012867488293082964, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - propertyPath: m_text - value: - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} ---- !u!224 &1732988711805255822 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 1701322136233992402, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - m_PrefabInstance: {fileID: 1121571633087537244} - m_PrefabAsset: {fileID: 0} ---- !u!1 &1732988711805255821 stripped -GameObject: - m_CorrespondingSourceObject: {fileID: 1701322136233992401, guid: d0b8aa1c3d119c3418c4d7ba5772d9a1, type: 3} - m_PrefabInstance: {fileID: 1121571633087537244} - m_PrefabAsset: {fileID: 0} --- !u!1001 &1431276768093649736 PrefabInstance: m_ObjectHideFlags: 0 @@ -6650,376 +400,6 @@ RectTransform: m_CorrespondingSourceObject: {fileID: 7299832657607748247, guid: 9e14408e32dd7c846bad0b53ce8d580f, type: 3} m_PrefabInstance: {fileID: 1431276768093649736} m_PrefabAsset: {fileID: 0} ---- !u!1001 &1970795245074893764 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - m_TransformParent: {fileID: 4830373999101852056} - m_Modifications: - - target: {fileID: 926700321488261724, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_Layer - value: 5 - objectReference: {fileID: 0} - - target: {fileID: 1008549154035763467, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_Layer - value: 5 - objectReference: {fileID: 0} - - target: {fileID: 1149460439445112250, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_Layer - value: 5 - objectReference: {fileID: 0} - - target: {fileID: 2066648508487384811, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_text - value: - objectReference: {fileID: 0} - - target: {fileID: 2066648508487384811, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_fontSize - value: 24 - objectReference: {fileID: 0} - - target: {fileID: 2066648508487384811, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_fontSizeMax - value: 24 - objectReference: {fileID: 0} - - target: {fileID: 2066648508487384811, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_enableAutoSizing - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 2129480015038244284, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_text - value: - objectReference: {fileID: 0} - - target: {fileID: 2129480015038244284, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_fontSize - value: 24 - objectReference: {fileID: 0} - - target: {fileID: 2129480015038244284, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_fontSizeMax - value: 24 - objectReference: {fileID: 0} - - target: {fileID: 2129480015038244284, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_enableAutoSizing - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 2349900529899576667, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_text - value: - objectReference: {fileID: 0} - - target: {fileID: 2431905315964601868, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_text - value: - objectReference: {fileID: 0} - - target: {fileID: 3379341823375340220, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_Layer - value: 5 - objectReference: {fileID: 0} - - target: {fileID: 3442595573632772587, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_Layer - value: 5 - objectReference: {fileID: 0} - - target: {fileID: 3506450487610440803, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_Layer - value: 5 - objectReference: {fileID: 0} - - target: {fileID: 3569719767404980020, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_Layer - value: 5 - objectReference: {fileID: 0} - - target: {fileID: 3641784883560652613, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_Layer - value: 5 - objectReference: {fileID: 0} - - target: {fileID: 3722615532975539218, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_Layer - value: 5 - objectReference: {fileID: 0} - - target: {fileID: 3789343014309348781, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_Layer - value: 5 - objectReference: {fileID: 0} - - target: {fileID: 3870043924606918394, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_Layer - value: 5 - objectReference: {fileID: 0} - - target: {fileID: 3943986851189449243, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_Layer - value: 5 - objectReference: {fileID: 0} - - target: {fileID: 4006092820726921548, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_Layer - value: 5 - objectReference: {fileID: 0} - - target: {fileID: 6402823710102666537, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_Layer - value: 5 - objectReference: {fileID: 0} - - target: {fileID: 6482998911031109246, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_Layer - value: 5 - objectReference: {fileID: 0} - - target: {fileID: 7131039631313610357, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_text - value: - objectReference: {fileID: 0} - - target: {fileID: 7193886703909666082, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_text - value: - objectReference: {fileID: 0} - - target: {fileID: 7418299048581370455, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_Layer - value: 5 - objectReference: {fileID: 0} - - target: {fileID: 7480563345747167488, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_Layer - value: 5 - objectReference: {fileID: 0} - - target: {fileID: 7784802966771508565, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 7784802966771508565, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 7784802966771508565, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_RootOrder - value: 4 - objectReference: {fileID: 0} - - target: {fileID: 7784802966771508565, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_AnchorMax.x - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 7784802966771508565, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 7784802966771508565, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 7784802966771508565, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 7784802966771508565, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 7784802966771508565, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 7784802966771508565, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 7784802966771508565, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 7784802966771508565, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 7784802966771508565, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 7784802966771508565, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 7784802966771508565, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 7784802966771508565, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 7784802966771508565, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 7784802966771508565, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 7784802966771508565, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 7784802966771508565, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 7784802966771508565, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8040026409620268246, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_Name - value: mining_main_comp - objectReference: {fileID: 0} - - target: {fileID: 8040026409620268246, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_IsActive - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8134797448943577605, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_SizeDelta.x - value: 84 - objectReference: {fileID: 0} - - target: {fileID: 8134797448943577605, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_AnchoredPosition.x - value: 28.9616 - objectReference: {fileID: 0} - - target: {fileID: 8134797448943577605, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_AnchoredPosition.y - value: 7.7 - objectReference: {fileID: 0} - - target: {fileID: 8198733005940322642, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_SizeDelta.x - value: 84 - objectReference: {fileID: 0} - - target: {fileID: 8198733005940322642, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_AnchoredPosition.x - value: 26.394 - objectReference: {fileID: 0} - - target: {fileID: 8198733005940322642, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_AnchoredPosition.y - value: 7.7 - objectReference: {fileID: 0} - - target: {fileID: 8417155163309681474, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_Layer - value: 5 - objectReference: {fileID: 0} - - target: {fileID: 8497418464749023253, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - propertyPath: m_Layer - value: 5 - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} ---- !u!1 &8415612240083496722 stripped -GameObject: - m_CorrespondingSourceObject: {fileID: 8040026409620268246, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - m_PrefabInstance: {fileID: 1970795245074893764} - m_PrefabAsset: {fileID: 0} ---- !u!224 &8597519951246749329 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 7784802966771508565, guid: 6786b5663dd797845ab9a0526e0bef24, type: 3} - m_PrefabInstance: {fileID: 1970795245074893764} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &2580824037999075236 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - m_TransformParent: {fileID: 4830373999101852056} - m_Modifications: - - target: {fileID: 5997397792976241942, guid: fd97c7873af6d0d46abf625575fbd614, type: 3} - propertyPath: m_Name - value: hero_main_comp - objectReference: {fileID: 0} - - target: {fileID: 5997397792976241942, guid: fd97c7873af6d0d46abf625575fbd614, type: 3} - propertyPath: m_IsActive - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8461932745927490369, guid: fd97c7873af6d0d46abf625575fbd614, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 8461932745927490369, guid: fd97c7873af6d0d46abf625575fbd614, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 8461932745927490369, guid: fd97c7873af6d0d46abf625575fbd614, type: 3} - propertyPath: m_RootOrder - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 8461932745927490369, guid: fd97c7873af6d0d46abf625575fbd614, type: 3} - propertyPath: m_AnchorMax.x - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 8461932745927490369, guid: fd97c7873af6d0d46abf625575fbd614, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 8461932745927490369, guid: fd97c7873af6d0d46abf625575fbd614, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8461932745927490369, guid: fd97c7873af6d0d46abf625575fbd614, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8461932745927490369, guid: fd97c7873af6d0d46abf625575fbd614, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8461932745927490369, guid: fd97c7873af6d0d46abf625575fbd614, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8461932745927490369, guid: fd97c7873af6d0d46abf625575fbd614, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8461932745927490369, guid: fd97c7873af6d0d46abf625575fbd614, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8461932745927490369, guid: fd97c7873af6d0d46abf625575fbd614, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8461932745927490369, guid: fd97c7873af6d0d46abf625575fbd614, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 8461932745927490369, guid: fd97c7873af6d0d46abf625575fbd614, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8461932745927490369, guid: fd97c7873af6d0d46abf625575fbd614, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8461932745927490369, guid: fd97c7873af6d0d46abf625575fbd614, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8461932745927490369, guid: fd97c7873af6d0d46abf625575fbd614, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8461932745927490369, guid: fd97c7873af6d0d46abf625575fbd614, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8461932745927490369, guid: fd97c7873af6d0d46abf625575fbd614, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8461932745927490369, guid: fd97c7873af6d0d46abf625575fbd614, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8461932745927490369, guid: fd97c7873af6d0d46abf625575fbd614, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: fd97c7873af6d0d46abf625575fbd614, type: 3} ---- !u!224 &6250502834651505893 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 8461932745927490369, guid: fd97c7873af6d0d46abf625575fbd614, type: 3} - m_PrefabInstance: {fileID: 2580824037999075236} - m_PrefabAsset: {fileID: 0} ---- !u!1 &8136848173549673138 stripped -GameObject: - m_CorrespondingSourceObject: {fileID: 5997397792976241942, guid: fd97c7873af6d0d46abf625575fbd614, type: 3} - m_PrefabInstance: {fileID: 2580824037999075236} - m_PrefabAsset: {fileID: 0} --- !u!1001 &4293175125742766344 PrefabInstance: m_ObjectHideFlags: 0 @@ -7127,256 +507,6 @@ RectTransform: m_CorrespondingSourceObject: {fileID: 7299832657607748247, guid: 9e14408e32dd7c846bad0b53ce8d580f, type: 3} m_PrefabInstance: {fileID: 4293175125742766344} m_PrefabAsset: {fileID: 0} ---- !u!1001 &4744593303339729461 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - m_TransformParent: {fileID: 6484377644207641412} - m_Modifications: - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_RootOrder - value: 6 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_AnchorMax.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_AnchorMax.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_AnchorMin.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_AnchorMin.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalRotation.x - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalRotation.y - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalRotation.z - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 1057860640232312995, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_AnchoredPosition.y - value: -80.43 - objectReference: {fileID: 0} - - target: {fileID: 2900356439553018252, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_Name - value: tutorial_finger - objectReference: {fileID: 0} - - target: {fileID: 2900356439553018252, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_IsActive - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3423298877502561106, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalRotation.w - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3423298877502561106, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3423298877502561106, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3423298877502561106, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalRotation.z - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3423298877502561106, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3423298877502561106, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_AnchoredPosition.y - value: -49 - objectReference: {fileID: 0} - - target: {fileID: 3423298877502561106, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 180 - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 54591f727a9537c4f90335d4754e3855, type: 3} ---- !u!224 &5084038302792689701 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - m_PrefabInstance: {fileID: 4744593303339729461} - m_PrefabAsset: {fileID: 0} ---- !u!1 &7608845486485670841 stripped -GameObject: - m_CorrespondingSourceObject: {fileID: 2900356439553018252, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - m_PrefabInstance: {fileID: 4744593303339729461} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &5191694941628518305 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - m_TransformParent: {fileID: 1848150626198586907} - m_Modifications: - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_Pivot.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_RootOrder - value: 6 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_AnchorMax.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_AnchorMax.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_AnchorMin.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_SizeDelta.x - value: 144 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_SizeDelta.y - value: 116 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 2900356439553018252, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_Name - value: tutorial_finger - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 54591f727a9537c4f90335d4754e3855, type: 3} ---- !u!224 &5718046041329558961 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - m_PrefabInstance: {fileID: 5191694941628518305} - m_PrefabAsset: {fileID: 0} ---- !u!1 &6939125473106904621 stripped -GameObject: - m_CorrespondingSourceObject: {fileID: 2900356439553018252, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - m_PrefabInstance: {fileID: 5191694941628518305} - m_PrefabAsset: {fileID: 0} --- !u!1001 &5519193341354011109 PrefabInstance: m_ObjectHideFlags: 0 @@ -7484,494 +614,6 @@ RectTransform: m_CorrespondingSourceObject: {fileID: 7299832657607748247, guid: 9e14408e32dd7c846bad0b53ce8d580f, type: 3} m_PrefabInstance: {fileID: 5519193341354011109} m_PrefabAsset: {fileID: 0} ---- !u!1001 &5537327819705919615 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - m_TransformParent: {fileID: 674336807508876720} - m_Modifications: - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_RootOrder - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_AnchorMax.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_AnchorMax.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_AnchorMin.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_AnchorMin.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalRotation.x - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalRotation.y - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalRotation.z - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_AnchoredPosition.x - value: 1.5 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_AnchoredPosition.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 1057860640232312995, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalRotation.w - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 1057860640232312995, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalRotation.z - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 1057860640232312995, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_AnchoredPosition.y - value: -80 - objectReference: {fileID: 0} - - target: {fileID: 1057860640232312995, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 180 - objectReference: {fileID: 0} - - target: {fileID: 2900356439553018252, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_Name - value: finger_node - objectReference: {fileID: 0} - - target: {fileID: 3423298877502561106, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3423298877502561106, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3423298877502561106, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3423298877502561106, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3423298877502561106, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 54591f727a9537c4f90335d4754e3855, type: 3} ---- !u!224 &5444436122388562543 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 528627181152315920, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - m_PrefabInstance: {fileID: 5537327819705919615} - m_PrefabAsset: {fileID: 0} ---- !u!1 &7248728871315874291 stripped -GameObject: - m_CorrespondingSourceObject: {fileID: 2900356439553018252, guid: 54591f727a9537c4f90335d4754e3855, type: 3} - m_PrefabInstance: {fileID: 5537327819705919615} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &6715602776263567111 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - m_TransformParent: {fileID: 4830373999101852056} - m_Modifications: - - target: {fileID: 6358120307551232115, guid: 16963b82b2ba337449085bf8249dea29, type: 3} - propertyPath: m_Name - value: train_main_comp - objectReference: {fileID: 0} - - target: {fileID: 6358120307551232115, guid: 16963b82b2ba337449085bf8249dea29, type: 3} - propertyPath: m_IsActive - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8899233175582104638, guid: 16963b82b2ba337449085bf8249dea29, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 8899233175582104638, guid: 16963b82b2ba337449085bf8249dea29, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 8899233175582104638, guid: 16963b82b2ba337449085bf8249dea29, type: 3} - propertyPath: m_RootOrder - value: 2 - objectReference: {fileID: 0} - - target: {fileID: 8899233175582104638, guid: 16963b82b2ba337449085bf8249dea29, type: 3} - propertyPath: m_AnchorMax.x - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 8899233175582104638, guid: 16963b82b2ba337449085bf8249dea29, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 8899233175582104638, guid: 16963b82b2ba337449085bf8249dea29, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8899233175582104638, guid: 16963b82b2ba337449085bf8249dea29, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8899233175582104638, guid: 16963b82b2ba337449085bf8249dea29, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8899233175582104638, guid: 16963b82b2ba337449085bf8249dea29, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8899233175582104638, guid: 16963b82b2ba337449085bf8249dea29, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8899233175582104638, guid: 16963b82b2ba337449085bf8249dea29, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8899233175582104638, guid: 16963b82b2ba337449085bf8249dea29, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8899233175582104638, guid: 16963b82b2ba337449085bf8249dea29, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 8899233175582104638, guid: 16963b82b2ba337449085bf8249dea29, type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8899233175582104638, guid: 16963b82b2ba337449085bf8249dea29, type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8899233175582104638, guid: 16963b82b2ba337449085bf8249dea29, type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8899233175582104638, guid: 16963b82b2ba337449085bf8249dea29, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8899233175582104638, guid: 16963b82b2ba337449085bf8249dea29, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8899233175582104638, guid: 16963b82b2ba337449085bf8249dea29, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8899233175582104638, guid: 16963b82b2ba337449085bf8249dea29, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8899233175582104638, guid: 16963b82b2ba337449085bf8249dea29, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 16963b82b2ba337449085bf8249dea29, type: 3} ---- !u!224 &2788555314010553145 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 8899233175582104638, guid: 16963b82b2ba337449085bf8249dea29, type: 3} - m_PrefabInstance: {fileID: 6715602776263567111} - m_PrefabAsset: {fileID: 0} ---- !u!1 &364239199594399604 stripped -GameObject: - m_CorrespondingSourceObject: {fileID: 6358120307551232115, guid: 16963b82b2ba337449085bf8249dea29, type: 3} - m_PrefabInstance: {fileID: 6715602776263567111} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &6870951813924417535 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - m_TransformParent: {fileID: 6527057472834029731} - m_Modifications: - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_Pivot.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_Pivot.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_RootOrder - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_AnchorMax.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_SizeDelta.x - value: 84 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_SizeDelta.y - value: 84 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_LocalRotation.x - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_LocalRotation.y - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_LocalRotation.z - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_AnchoredPosition.x - value: 28 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_AnchoredPosition.y - value: -28 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 7471363632449712567, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_Name - value: avatar_cell - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} ---- !u!1 &4104217313734401608 stripped -GameObject: - m_CorrespondingSourceObject: {fileID: 7471363632449712567, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - m_PrefabInstance: {fileID: 6870951813924417535} - m_PrefabAsset: {fileID: 0} ---- !u!224 &9071863580148286979 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - m_PrefabInstance: {fileID: 6870951813924417535} - m_PrefabAsset: {fileID: 0} ---- !u!1001 &7099454793856927287 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - m_TransformParent: {fileID: 511600445208496078} - m_Modifications: - - target: {fileID: 2208668869273176484, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_Sprite - value: - objectReference: {fileID: 21300000, guid: e3b7229127becf74e822a3acd36f82c2, type: 3} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_RootOrder - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_AnchorMax.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_AnchorMax.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_AnchorMin.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_AnchorMin.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_SizeDelta.x - value: 96 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_SizeDelta.y - value: 96 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_LocalScale.x - value: 0.6 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_LocalScale.y - value: 0.6 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_LocalRotation.x - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_LocalRotation.y - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_LocalRotation.z - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3838290293284238013, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: IsShowClickAnimation - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 7219871643565735272, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_Sprite - value: - objectReference: {fileID: 21300000, guid: 48500fc02c59fa64daf2837b15a8b7c5, type: 3} - - target: {fileID: 7471363632449712567, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - propertyPath: m_Name - value: avatar_cell - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} ---- !u!1 &372049612454147968 stripped -GameObject: - m_CorrespondingSourceObject: {fileID: 7471363632449712567, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - m_PrefabInstance: {fileID: 7099454793856927287} - m_PrefabAsset: {fileID: 0} ---- !u!224 &4627845664947695563 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 2503787648808692220, guid: d76c993a9967c994fb4758f1cb258ac9, type: 3} - m_PrefabInstance: {fileID: 7099454793856927287} - m_PrefabAsset: {fileID: 0} --- !u!1001 &7107661493102638618 PrefabInstance: m_ObjectHideFlags: 0 @@ -8069,130 +711,15 @@ PrefabInstance: objectReference: {fileID: 0} m_RemovedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 9e14408e32dd7c846bad0b53ce8d580f, type: 3} ---- !u!224 &571195570897263757 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 7299832657607748247, guid: 9e14408e32dd7c846bad0b53ce8d580f, type: 3} - m_PrefabInstance: {fileID: 7107661493102638618} - m_PrefabAsset: {fileID: 0} --- !u!1 &2360577077168802558 stripped GameObject: m_CorrespondingSourceObject: {fileID: 4783113213137485028, guid: 9e14408e32dd7c846bad0b53ce8d580f, type: 3} m_PrefabInstance: {fileID: 7107661493102638618} m_PrefabAsset: {fileID: 0} ---- !u!1001 &8121461642536257324 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - m_TransformParent: {fileID: 4830373999101852056} - m_Modifications: - - target: {fileID: 1137632996750287226, guid: 5eaf027a9afe4ee4685dcbcab3b705ca, type: 3} - propertyPath: m_Material - value: - objectReference: {fileID: 2100000, guid: 8fbea6f32a7344f69af606d42e8d880a, type: 2} - - target: {fileID: 8767137244584389044, guid: 5eaf027a9afe4ee4685dcbcab3b705ca, type: 3} - propertyPath: m_Pivot.x - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 8767137244584389044, guid: 5eaf027a9afe4ee4685dcbcab3b705ca, type: 3} - propertyPath: m_Pivot.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 8767137244584389044, guid: 5eaf027a9afe4ee4685dcbcab3b705ca, type: 3} - propertyPath: m_RootOrder - value: 3 - objectReference: {fileID: 0} - - target: {fileID: 8767137244584389044, guid: 5eaf027a9afe4ee4685dcbcab3b705ca, type: 3} - propertyPath: m_AnchorMax.x - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 8767137244584389044, guid: 5eaf027a9afe4ee4685dcbcab3b705ca, type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 8767137244584389044, guid: 5eaf027a9afe4ee4685dcbcab3b705ca, type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8767137244584389044, guid: 5eaf027a9afe4ee4685dcbcab3b705ca, type: 3} - propertyPath: m_AnchorMin.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8767137244584389044, guid: 5eaf027a9afe4ee4685dcbcab3b705ca, type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8767137244584389044, guid: 5eaf027a9afe4ee4685dcbcab3b705ca, type: 3} - propertyPath: m_SizeDelta.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8767137244584389044, guid: 5eaf027a9afe4ee4685dcbcab3b705ca, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8767137244584389044, guid: 5eaf027a9afe4ee4685dcbcab3b705ca, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8767137244584389044, guid: 5eaf027a9afe4ee4685dcbcab3b705ca, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8767137244584389044, guid: 5eaf027a9afe4ee4685dcbcab3b705ca, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 8767137244584389044, guid: 5eaf027a9afe4ee4685dcbcab3b705ca, type: 3} - propertyPath: m_LocalRotation.x - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 8767137244584389044, guid: 5eaf027a9afe4ee4685dcbcab3b705ca, type: 3} - propertyPath: m_LocalRotation.y - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 8767137244584389044, guid: 5eaf027a9afe4ee4685dcbcab3b705ca, type: 3} - propertyPath: m_LocalRotation.z - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 8767137244584389044, guid: 5eaf027a9afe4ee4685dcbcab3b705ca, type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8767137244584389044, guid: 5eaf027a9afe4ee4685dcbcab3b705ca, type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8767137244584389044, guid: 5eaf027a9afe4ee4685dcbcab3b705ca, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8767137244584389044, guid: 5eaf027a9afe4ee4685dcbcab3b705ca, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8767137244584389044, guid: 5eaf027a9afe4ee4685dcbcab3b705ca, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8767137244584389045, guid: 5eaf027a9afe4ee4685dcbcab3b705ca, type: 3} - propertyPath: m_Name - value: dungeon_main_comp - objectReference: {fileID: 0} - - target: {fileID: 8767137244584389045, guid: 5eaf027a9afe4ee4685dcbcab3b705ca, type: 3} - propertyPath: m_IsActive - value: 0 - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 5eaf027a9afe4ee4685dcbcab3b705ca, type: 3} ---- !u!1 &656991775866039961 stripped -GameObject: - m_CorrespondingSourceObject: {fileID: 8767137244584389045, guid: 5eaf027a9afe4ee4685dcbcab3b705ca, type: 3} - m_PrefabInstance: {fileID: 8121461642536257324} - m_PrefabAsset: {fileID: 0} ---- !u!224 &656991775866039960 stripped +--- !u!224 &571195570897263757 stripped RectTransform: - m_CorrespondingSourceObject: {fileID: 8767137244584389044, guid: 5eaf027a9afe4ee4685dcbcab3b705ca, type: 3} - m_PrefabInstance: {fileID: 8121461642536257324} + m_CorrespondingSourceObject: {fileID: 7299832657607748247, guid: 9e14408e32dd7c846bad0b53ce8d580f, type: 3} + m_PrefabInstance: {fileID: 7107661493102638618} m_PrefabAsset: {fileID: 0} --- !u!1001 &8709733409520877248 PrefabInstance: @@ -8291,13 +818,13 @@ PrefabInstance: objectReference: {fileID: 0} m_RemovedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 9e14408e32dd7c846bad0b53ce8d580f, type: 3} ---- !u!224 &2130492087200027735 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 7299832657607748247, guid: 9e14408e32dd7c846bad0b53ce8d580f, type: 3} - m_PrefabInstance: {fileID: 8709733409520877248} - m_PrefabAsset: {fileID: 0} --- !u!1 &4232882563936322084 stripped GameObject: m_CorrespondingSourceObject: {fileID: 4783113213137485028, guid: 9e14408e32dd7c846bad0b53ce8d580f, type: 3} m_PrefabInstance: {fileID: 8709733409520877248} m_PrefabAsset: {fileID: 0} +--- !u!224 &2130492087200027735 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 7299832657607748247, guid: 9e14408e32dd7c846bad0b53ce8d580f, type: 3} + m_PrefabInstance: {fileID: 8709733409520877248} + m_PrefabAsset: {fileID: 0}