diff --git a/Assets/XLua/Gen/AndroidAgentWrap.cs b/Assets/XLua/Gen/AndroidAgentWrap.cs new file mode 100644 index 000000000..0ef548ce7 --- /dev/null +++ b/Assets/XLua/Gen/AndroidAgentWrap.cs @@ -0,0 +1,1536 @@ +#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 AndroidAgentWrap + { + public static void __Register(RealStatePtr L) + { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + System.Type type = typeof(AndroidAgent); + Utils.BeginObjectRegister(type, L, translator, 0, 47, 0, 0); + + Utils.RegisterFunc(L, Utils.METHOD_IDX, "getBridge", _m_getBridge); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "SetWaterfallConfiguration", _m_SetWaterfallConfiguration); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "onApplicationPause", _m_onApplicationPause); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "getAdvertiserId", _m_getAdvertiserId); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "validateIntegration", _m_validateIntegration); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "shouldTrackNetworkState", _m_shouldTrackNetworkState); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "setDynamicUserId", _m_setDynamicUserId); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "setAdaptersDebug", _m_setAdaptersDebug); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "setMetaData", _m_setMetaData); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "getConversionValue", _m_getConversionValue); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "setManualLoadRewardedVideo", _m_setManualLoadRewardedVideo); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "setNetworkData", _m_setNetworkData); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "SetPauseGame", _m_SetPauseGame); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "setUserId", _m_setUserId); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "init", _m_init); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "initISDemandOnly", _m_initISDemandOnly); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "loadRewardedVideo", _m_loadRewardedVideo); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "showRewardedVideo", _m_showRewardedVideo); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "isRewardedVideoAvailable", _m_isRewardedVideoAvailable); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "isRewardedVideoPlacementCapped", _m_isRewardedVideoPlacementCapped); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "getPlacementInfo", _m_getPlacementInfo); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "setRewardedVideoServerParams", _m_setRewardedVideoServerParams); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "clearRewardedVideoServerParams", _m_clearRewardedVideoServerParams); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "showISDemandOnlyRewardedVideo", _m_showISDemandOnlyRewardedVideo); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "loadISDemandOnlyRewardedVideo", _m_loadISDemandOnlyRewardedVideo); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "isISDemandOnlyRewardedVideoAvailable", _m_isISDemandOnlyRewardedVideoAvailable); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "loadInterstitial", _m_loadInterstitial); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "showInterstitial", _m_showInterstitial); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "isInterstitialReady", _m_isInterstitialReady); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "isInterstitialPlacementCapped", _m_isInterstitialPlacementCapped); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "loadISDemandOnlyInterstitial", _m_loadISDemandOnlyInterstitial); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "showISDemandOnlyInterstitial", _m_showISDemandOnlyInterstitial); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "isISDemandOnlyInterstitialReady", _m_isISDemandOnlyInterstitialReady); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "showOfferwall", _m_showOfferwall); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "getOfferwallCredits", _m_getOfferwallCredits); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "isOfferwallAvailable", _m_isOfferwallAvailable); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "loadBanner", _m_loadBanner); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "destroyBanner", _m_destroyBanner); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "displayBanner", _m_displayBanner); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "hideBanner", _m_hideBanner); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "isBannerPlacementCapped", _m_isBannerPlacementCapped); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "setSegment", _m_setSegment); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "setConsent", _m_setConsent); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "loadConsentViewWithType", _m_loadConsentViewWithType); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "showConsentViewWithType", _m_showConsentViewWithType); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "setAdRevenueData", _m_setAdRevenueData); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "launchTestSuite", _m_launchTestSuite); + + + + + + 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 AndroidAgent(); + 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 AndroidAgent constructor!"); + + } + + + + + + + + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_getBridge(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + + { + + var gen_ret = gen_to_be_invoked.getBridge( ); + translator.Push(L, gen_ret); + + + + return 1; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_SetWaterfallConfiguration(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + + { + WaterfallConfiguration _waterfallConfiguration = (WaterfallConfiguration)translator.GetObject(L, 2, typeof(WaterfallConfiguration)); + AdFormat _adFormat;translator.Get(L, 3, out _adFormat); + + gen_to_be_invoked.SetWaterfallConfiguration( _waterfallConfiguration, _adFormat ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_onApplicationPause(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + + { + bool _pause = LuaAPI.lua_toboolean(L, 2); + + gen_to_be_invoked.onApplicationPause( _pause ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_getAdvertiserId(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + + { + + var gen_ret = gen_to_be_invoked.getAdvertiserId( ); + LuaAPI.lua_pushstring(L, gen_ret); + + + + return 1; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_validateIntegration(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + + { + + gen_to_be_invoked.validateIntegration( ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_shouldTrackNetworkState(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + + { + bool _track = LuaAPI.lua_toboolean(L, 2); + + gen_to_be_invoked.shouldTrackNetworkState( _track ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_setDynamicUserId(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + + { + string _dynamicUserId = LuaAPI.lua_tostring(L, 2); + + var gen_ret = gen_to_be_invoked.setDynamicUserId( _dynamicUserId ); + LuaAPI.lua_pushboolean(L, gen_ret); + + + + return 1; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_setAdaptersDebug(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + + { + bool _enabled = LuaAPI.lua_toboolean(L, 2); + + gen_to_be_invoked.setAdaptersDebug( _enabled ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_setMetaData(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + int gen_param_count = LuaAPI.lua_gettop(L); + + if(gen_param_count == 3&& (LuaAPI.lua_isnil(L, 2) || LuaAPI.lua_type(L, 2) == LuaTypes.LUA_TSTRING)&& (LuaAPI.lua_isnil(L, 3) || LuaAPI.lua_type(L, 3) == LuaTypes.LUA_TSTRING)) + { + string _key = LuaAPI.lua_tostring(L, 2); + string _value = LuaAPI.lua_tostring(L, 3); + + gen_to_be_invoked.setMetaData( _key, _value ); + + + + return 0; + } + if(gen_param_count >= 2&& (LuaAPI.lua_isnil(L, 2) || LuaAPI.lua_type(L, 2) == LuaTypes.LUA_TSTRING)&& (LuaTypes.LUA_TNONE == LuaAPI.lua_type(L, 3) || (LuaAPI.lua_isnil(L, 3) || LuaAPI.lua_type(L, 3) == LuaTypes.LUA_TSTRING))) + { + string _key = LuaAPI.lua_tostring(L, 2); + string[] _values = translator.GetParams(L, 3); + + gen_to_be_invoked.setMetaData( _key, _values ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + return LuaAPI.luaL_error(L, "invalid arguments to AndroidAgent.setMetaData!"); + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_getConversionValue(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + + { + + var gen_ret = gen_to_be_invoked.getConversionValue( ); + translator.PushAny(L, gen_ret); + + + + return 1; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_setManualLoadRewardedVideo(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + + { + bool _isOn = LuaAPI.lua_toboolean(L, 2); + + gen_to_be_invoked.setManualLoadRewardedVideo( _isOn ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_setNetworkData(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + + { + string _networkKey = LuaAPI.lua_tostring(L, 2); + string _networkData = LuaAPI.lua_tostring(L, 3); + + gen_to_be_invoked.setNetworkData( _networkKey, _networkData ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_SetPauseGame(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + + { + bool _pause = LuaAPI.lua_toboolean(L, 2); + + gen_to_be_invoked.SetPauseGame( _pause ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_setUserId(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + + { + string _userId = LuaAPI.lua_tostring(L, 2); + + gen_to_be_invoked.setUserId( _userId ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_init(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + int gen_param_count = LuaAPI.lua_gettop(L); + + if(gen_param_count == 2&& (LuaAPI.lua_isnil(L, 2) || LuaAPI.lua_type(L, 2) == LuaTypes.LUA_TSTRING)) + { + string _appKey = LuaAPI.lua_tostring(L, 2); + + gen_to_be_invoked.init( _appKey ); + + + + return 0; + } + if(gen_param_count >= 2&& (LuaAPI.lua_isnil(L, 2) || LuaAPI.lua_type(L, 2) == LuaTypes.LUA_TSTRING)&& (LuaTypes.LUA_TNONE == LuaAPI.lua_type(L, 3) || (LuaAPI.lua_isnil(L, 3) || LuaAPI.lua_type(L, 3) == LuaTypes.LUA_TSTRING))) + { + string _appKey = LuaAPI.lua_tostring(L, 2); + string[] _adUnits = translator.GetParams(L, 3); + + gen_to_be_invoked.init( _appKey, _adUnits ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + return LuaAPI.luaL_error(L, "invalid arguments to AndroidAgent.init!"); + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_initISDemandOnly(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + + { + string _appKey = LuaAPI.lua_tostring(L, 2); + string[] _adUnits = translator.GetParams(L, 3); + + gen_to_be_invoked.initISDemandOnly( _appKey, _adUnits ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_loadRewardedVideo(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + + { + + gen_to_be_invoked.loadRewardedVideo( ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_showRewardedVideo(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + int gen_param_count = LuaAPI.lua_gettop(L); + + if(gen_param_count == 1) + { + + gen_to_be_invoked.showRewardedVideo( ); + + + + return 0; + } + if(gen_param_count == 2&& (LuaAPI.lua_isnil(L, 2) || LuaAPI.lua_type(L, 2) == LuaTypes.LUA_TSTRING)) + { + string _placementName = LuaAPI.lua_tostring(L, 2); + + gen_to_be_invoked.showRewardedVideo( _placementName ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + return LuaAPI.luaL_error(L, "invalid arguments to AndroidAgent.showRewardedVideo!"); + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_isRewardedVideoAvailable(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + + { + + var gen_ret = gen_to_be_invoked.isRewardedVideoAvailable( ); + LuaAPI.lua_pushboolean(L, gen_ret); + + + + return 1; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_isRewardedVideoPlacementCapped(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + + { + string _placementName = LuaAPI.lua_tostring(L, 2); + + var gen_ret = gen_to_be_invoked.isRewardedVideoPlacementCapped( _placementName ); + LuaAPI.lua_pushboolean(L, gen_ret); + + + + return 1; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_getPlacementInfo(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + + { + string _placementName = LuaAPI.lua_tostring(L, 2); + + var gen_ret = gen_to_be_invoked.getPlacementInfo( _placementName ); + translator.Push(L, gen_ret); + + + + return 1; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_setRewardedVideoServerParams(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + + { + System.Collections.Generic.Dictionary _parameters = (System.Collections.Generic.Dictionary)translator.GetObject(L, 2, typeof(System.Collections.Generic.Dictionary)); + + gen_to_be_invoked.setRewardedVideoServerParams( _parameters ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_clearRewardedVideoServerParams(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + + { + + gen_to_be_invoked.clearRewardedVideoServerParams( ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_showISDemandOnlyRewardedVideo(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + + { + string _instanceId = LuaAPI.lua_tostring(L, 2); + + gen_to_be_invoked.showISDemandOnlyRewardedVideo( _instanceId ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_loadISDemandOnlyRewardedVideo(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + + { + string _instanceId = LuaAPI.lua_tostring(L, 2); + + gen_to_be_invoked.loadISDemandOnlyRewardedVideo( _instanceId ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_isISDemandOnlyRewardedVideoAvailable(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + + { + string _instanceId = LuaAPI.lua_tostring(L, 2); + + var gen_ret = gen_to_be_invoked.isISDemandOnlyRewardedVideoAvailable( _instanceId ); + LuaAPI.lua_pushboolean(L, gen_ret); + + + + return 1; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_loadInterstitial(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + + { + + gen_to_be_invoked.loadInterstitial( ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_showInterstitial(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + int gen_param_count = LuaAPI.lua_gettop(L); + + if(gen_param_count == 1) + { + + gen_to_be_invoked.showInterstitial( ); + + + + return 0; + } + if(gen_param_count == 2&& (LuaAPI.lua_isnil(L, 2) || LuaAPI.lua_type(L, 2) == LuaTypes.LUA_TSTRING)) + { + string _placementName = LuaAPI.lua_tostring(L, 2); + + gen_to_be_invoked.showInterstitial( _placementName ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + return LuaAPI.luaL_error(L, "invalid arguments to AndroidAgent.showInterstitial!"); + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_isInterstitialReady(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + + { + + var gen_ret = gen_to_be_invoked.isInterstitialReady( ); + LuaAPI.lua_pushboolean(L, gen_ret); + + + + return 1; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_isInterstitialPlacementCapped(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + + { + string _placementName = LuaAPI.lua_tostring(L, 2); + + var gen_ret = gen_to_be_invoked.isInterstitialPlacementCapped( _placementName ); + LuaAPI.lua_pushboolean(L, gen_ret); + + + + return 1; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_loadISDemandOnlyInterstitial(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + + { + string _instanceId = LuaAPI.lua_tostring(L, 2); + + gen_to_be_invoked.loadISDemandOnlyInterstitial( _instanceId ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_showISDemandOnlyInterstitial(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + + { + string _instanceId = LuaAPI.lua_tostring(L, 2); + + gen_to_be_invoked.showISDemandOnlyInterstitial( _instanceId ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_isISDemandOnlyInterstitialReady(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + + { + string _instanceId = LuaAPI.lua_tostring(L, 2); + + var gen_ret = gen_to_be_invoked.isISDemandOnlyInterstitialReady( _instanceId ); + LuaAPI.lua_pushboolean(L, gen_ret); + + + + return 1; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_showOfferwall(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + int gen_param_count = LuaAPI.lua_gettop(L); + + if(gen_param_count == 1) + { + + gen_to_be_invoked.showOfferwall( ); + + + + return 0; + } + if(gen_param_count == 2&& (LuaAPI.lua_isnil(L, 2) || LuaAPI.lua_type(L, 2) == LuaTypes.LUA_TSTRING)) + { + string _placementName = LuaAPI.lua_tostring(L, 2); + + gen_to_be_invoked.showOfferwall( _placementName ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + return LuaAPI.luaL_error(L, "invalid arguments to AndroidAgent.showOfferwall!"); + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_getOfferwallCredits(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + + { + + gen_to_be_invoked.getOfferwallCredits( ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_isOfferwallAvailable(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + + { + + var gen_ret = gen_to_be_invoked.isOfferwallAvailable( ); + LuaAPI.lua_pushboolean(L, gen_ret); + + + + return 1; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_loadBanner(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + int gen_param_count = LuaAPI.lua_gettop(L); + + if(gen_param_count == 3&& translator.Assignable(L, 2)&& translator.Assignable(L, 3)) + { + IronSourceBannerSize _size = (IronSourceBannerSize)translator.GetObject(L, 2, typeof(IronSourceBannerSize)); + IronSourceBannerPosition _position;translator.Get(L, 3, out _position); + + gen_to_be_invoked.loadBanner( _size, _position ); + + + + return 0; + } + if(gen_param_count == 4&& translator.Assignable(L, 2)&& translator.Assignable(L, 3)&& (LuaAPI.lua_isnil(L, 4) || LuaAPI.lua_type(L, 4) == LuaTypes.LUA_TSTRING)) + { + IronSourceBannerSize _size = (IronSourceBannerSize)translator.GetObject(L, 2, typeof(IronSourceBannerSize)); + IronSourceBannerPosition _position;translator.Get(L, 3, out _position); + string _placementName = LuaAPI.lua_tostring(L, 4); + + gen_to_be_invoked.loadBanner( _size, _position, _placementName ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + return LuaAPI.luaL_error(L, "invalid arguments to AndroidAgent.loadBanner!"); + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_destroyBanner(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + + { + + gen_to_be_invoked.destroyBanner( ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_displayBanner(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + + { + + gen_to_be_invoked.displayBanner( ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_hideBanner(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + + { + + gen_to_be_invoked.hideBanner( ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_isBannerPlacementCapped(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + + { + string _placementName = LuaAPI.lua_tostring(L, 2); + + var gen_ret = gen_to_be_invoked.isBannerPlacementCapped( _placementName ); + LuaAPI.lua_pushboolean(L, gen_ret); + + + + return 1; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_setSegment(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + + { + IronSourceSegment _segment = (IronSourceSegment)translator.GetObject(L, 2, typeof(IronSourceSegment)); + + gen_to_be_invoked.setSegment( _segment ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_setConsent(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + + { + bool _consent = LuaAPI.lua_toboolean(L, 2); + + gen_to_be_invoked.setConsent( _consent ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_loadConsentViewWithType(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + + { + string _consentViewType = LuaAPI.lua_tostring(L, 2); + + gen_to_be_invoked.loadConsentViewWithType( _consentViewType ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_showConsentViewWithType(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + + { + string _consentViewType = LuaAPI.lua_tostring(L, 2); + + gen_to_be_invoked.showConsentViewWithType( _consentViewType ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_setAdRevenueData(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + + { + string _dataSource = LuaAPI.lua_tostring(L, 2); + System.Collections.Generic.Dictionary _impressionData = (System.Collections.Generic.Dictionary)translator.GetObject(L, 3, typeof(System.Collections.Generic.Dictionary)); + + gen_to_be_invoked.setAdRevenueData( _dataSource, _impressionData ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_launchTestSuite(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + AndroidAgent gen_to_be_invoked = (AndroidAgent)translator.FastGetCSObj(L, 1); + + + + { + + gen_to_be_invoked.launchTestSuite( ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + + + + + + + + + + } +} diff --git a/Assets/XLua/Gen/DelegatesGensBridge.cs b/Assets/XLua/Gen/DelegatesGensBridge.cs index af6ef9428..4479d75d3 100644 --- a/Assets/XLua/Gen/DelegatesGensBridge.cs +++ b/Assets/XLua/Gen/DelegatesGensBridge.cs @@ -1075,7 +1075,7 @@ namespace XLua #endif } - public void __Gen_Delegate_Imp47(IronSourceAdInfo p0) + public void __Gen_Delegate_Imp47(IronSourceError p0) { #if THREAD_SAFE || HOTFIX_ENABLE lock (luaEnv.luaEnvLock) @@ -1097,7 +1097,7 @@ namespace XLua #endif } - public void __Gen_Delegate_Imp48(IronSourceError p0) + public void __Gen_Delegate_Imp48(IronSourceAdInfo p0) { #if THREAD_SAFE || HOTFIX_ENABLE lock (luaEnv.luaEnvLock) @@ -1119,7 +1119,7 @@ namespace XLua #endif } - public void __Gen_Delegate_Imp49(IronSourceImpressionData p0) + public void __Gen_Delegate_Imp49(IronSourcePlacement p0) { #if THREAD_SAFE || HOTFIX_ENABLE lock (luaEnv.luaEnvLock) @@ -1141,29 +1141,7 @@ namespace XLua #endif } - public void __Gen_Delegate_Imp50(IronSourcePlacement p0) - { -#if THREAD_SAFE || HOTFIX_ENABLE - lock (luaEnv.luaEnvLock) - { -#endif - RealStatePtr L = luaEnv.rawL; - int errFunc = LuaAPI.pcall_prepare(L, errorFuncRef, luaReference); - ObjectTranslator translator = luaEnv.translator; - translator.Push(L, p0); - - PCall(L, 1, 0, errFunc); - - - - LuaAPI.lua_settop(L, errFunc - 1); - -#if THREAD_SAFE || HOTFIX_ENABLE - } -#endif - } - - public void __Gen_Delegate_Imp51(string p0, IronSourceError p1) + public void __Gen_Delegate_Imp50(string p0, IronSourceError p1) { #if THREAD_SAFE || HOTFIX_ENABLE lock (luaEnv.luaEnvLock) @@ -1186,7 +1164,29 @@ namespace XLua #endif } - public void __Gen_Delegate_Imp52(System.Collections.Generic.Dictionary p0) + public void __Gen_Delegate_Imp51(System.Collections.Generic.Dictionary p0) + { +#if THREAD_SAFE || HOTFIX_ENABLE + lock (luaEnv.luaEnvLock) + { +#endif + RealStatePtr L = luaEnv.rawL; + int errFunc = LuaAPI.pcall_prepare(L, errorFuncRef, luaReference); + ObjectTranslator translator = luaEnv.translator; + translator.Push(L, p0); + + PCall(L, 1, 0, errFunc); + + + + LuaAPI.lua_settop(L, errFunc - 1); + +#if THREAD_SAFE || HOTFIX_ENABLE + } +#endif + } + + public void __Gen_Delegate_Imp52(IronSourceImpressionData p0) { #if THREAD_SAFE || HOTFIX_ENABLE lock (luaEnv.luaEnvLock) @@ -3381,34 +3381,34 @@ namespace XLua return new System.Func>(__Gen_Delegate_Imp46); } - if (type == typeof(System.Action)) - { - return new System.Action(__Gen_Delegate_Imp47); - } - if (type == typeof(System.Action)) { - return new System.Action(__Gen_Delegate_Imp48); + return new System.Action(__Gen_Delegate_Imp47); } - if (type == typeof(System.Action)) + if (type == typeof(System.Action)) { - return new System.Action(__Gen_Delegate_Imp49); + return new System.Action(__Gen_Delegate_Imp48); } if (type == typeof(System.Action)) { - return new System.Action(__Gen_Delegate_Imp50); + return new System.Action(__Gen_Delegate_Imp49); } if (type == typeof(System.Action)) { - return new System.Action(__Gen_Delegate_Imp51); + return new System.Action(__Gen_Delegate_Imp50); } if (type == typeof(System.Action>)) { - return new System.Action>(__Gen_Delegate_Imp52); + return new System.Action>(__Gen_Delegate_Imp51); + } + + if (type == typeof(System.Action)) + { + return new System.Action(__Gen_Delegate_Imp52); } if (type == typeof(System.Action)) diff --git a/Assets/XLua/Gen/IronSourceBannerAndroidWrap.cs b/Assets/XLua/Gen/IronSourceBannerAndroidWrap.cs new file mode 100644 index 000000000..ba4a315cf --- /dev/null +++ b/Assets/XLua/Gen/IronSourceBannerAndroidWrap.cs @@ -0,0 +1,294 @@ +#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 IronSourceBannerAndroidWrap + { + public static void __Register(RealStatePtr L) + { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + System.Type type = typeof(IronSourceBannerAndroid); + Utils.BeginObjectRegister(type, L, translator, 0, 6, 0, 0); + + + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnBannerAdLoaded", _e_OnBannerAdLoaded); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnBannerAdLeftApplication", _e_OnBannerAdLeftApplication); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnBannerAdScreenDismissed", _e_OnBannerAdScreenDismissed); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnBannerAdScreenPresented", _e_OnBannerAdScreenPresented); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnBannerAdClicked", _e_OnBannerAdClicked); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnBannerAdLoadFailed", _e_OnBannerAdLoadFailed); + + + + + 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 IronSourceBannerAndroid(); + 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 IronSourceBannerAndroid constructor!"); + + } + + + + + + + + + + + + + + + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnBannerAdLoaded(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceBannerAndroid gen_to_be_invoked = (IronSourceBannerAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnBannerAdLoaded += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnBannerAdLoaded -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceBannerAndroid.OnBannerAdLoaded!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnBannerAdLeftApplication(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceBannerAndroid gen_to_be_invoked = (IronSourceBannerAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnBannerAdLeftApplication += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnBannerAdLeftApplication -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceBannerAndroid.OnBannerAdLeftApplication!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnBannerAdScreenDismissed(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceBannerAndroid gen_to_be_invoked = (IronSourceBannerAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnBannerAdScreenDismissed += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnBannerAdScreenDismissed -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceBannerAndroid.OnBannerAdScreenDismissed!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnBannerAdScreenPresented(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceBannerAndroid gen_to_be_invoked = (IronSourceBannerAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnBannerAdScreenPresented += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnBannerAdScreenPresented -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceBannerAndroid.OnBannerAdScreenPresented!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnBannerAdClicked(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceBannerAndroid gen_to_be_invoked = (IronSourceBannerAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnBannerAdClicked += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnBannerAdClicked -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceBannerAndroid.OnBannerAdClicked!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnBannerAdLoadFailed(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceBannerAndroid gen_to_be_invoked = (IronSourceBannerAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnBannerAdLoadFailed += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnBannerAdLoadFailed -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceBannerAndroid.OnBannerAdLoadFailed!"); + return 0; + } + + + + } +} diff --git a/Assets/XLua/Gen/IronSourceBannerEventsWrap.cs b/Assets/XLua/Gen/IronSourceBannerEventsWrap.cs index 6cfcd73f3..4b4414ef3 100644 --- a/Assets/XLua/Gen/IronSourceBannerEventsWrap.cs +++ b/Assets/XLua/Gen/IronSourceBannerEventsWrap.cs @@ -34,11 +34,11 @@ namespace XLua.CSObjectWrap Utils.BeginClassRegister(type, L, __CreateInstance, 7, 0, 0); Utils.RegisterFunc(L, Utils.CLS_IDX, "onAdLoadedEvent", _e_onAdLoadedEvent); - Utils.RegisterFunc(L, Utils.CLS_IDX, "onAdLoadFailedEvent", _e_onAdLoadFailedEvent); - Utils.RegisterFunc(L, Utils.CLS_IDX, "onAdClickedEvent", _e_onAdClickedEvent); - Utils.RegisterFunc(L, Utils.CLS_IDX, "onAdScreenPresentedEvent", _e_onAdScreenPresentedEvent); - Utils.RegisterFunc(L, Utils.CLS_IDX, "onAdScreenDismissedEvent", _e_onAdScreenDismissedEvent); Utils.RegisterFunc(L, Utils.CLS_IDX, "onAdLeftApplicationEvent", _e_onAdLeftApplicationEvent); + Utils.RegisterFunc(L, Utils.CLS_IDX, "onAdScreenDismissedEvent", _e_onAdScreenDismissedEvent); + Utils.RegisterFunc(L, Utils.CLS_IDX, "onAdScreenPresentedEvent", _e_onAdScreenPresentedEvent); + Utils.RegisterFunc(L, Utils.CLS_IDX, "onAdClickedEvent", _e_onAdClickedEvent); + Utils.RegisterFunc(L, Utils.CLS_IDX, "onAdLoadFailedEvent", _e_onAdLoadFailedEvent); @@ -116,36 +116,7 @@ namespace XLua.CSObjectWrap } [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] - static int _e_onAdLoadFailedEvent(RealStatePtr L) - { - try { - ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); - int gen_param_count = LuaAPI.lua_gettop(L); - System.Action gen_delegate = translator.GetDelegate>(L, 2); - if (gen_delegate == null) { - return LuaAPI.luaL_error(L, "#2 need System.Action!"); - } - - - if (gen_param_count == 2 && LuaAPI.xlua_is_eq_str(L, 1, "+")) { - IronSourceBannerEvents.onAdLoadFailedEvent += gen_delegate; - return 0; - } - - - if (gen_param_count == 2 && LuaAPI.xlua_is_eq_str(L, 1, "-")) { - IronSourceBannerEvents.onAdLoadFailedEvent -= gen_delegate; - return 0; - } - - } catch(System.Exception gen_e) { - return LuaAPI.luaL_error(L, "c# exception:" + gen_e); - } - return LuaAPI.luaL_error(L, "invalid arguments to IronSourceBannerEvents.onAdLoadFailedEvent!"); - } - - [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] - static int _e_onAdClickedEvent(RealStatePtr L) + static int _e_onAdLeftApplicationEvent(RealStatePtr L) { try { ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); @@ -157,49 +128,20 @@ namespace XLua.CSObjectWrap if (gen_param_count == 2 && LuaAPI.xlua_is_eq_str(L, 1, "+")) { - IronSourceBannerEvents.onAdClickedEvent += gen_delegate; + IronSourceBannerEvents.onAdLeftApplicationEvent += gen_delegate; return 0; } if (gen_param_count == 2 && LuaAPI.xlua_is_eq_str(L, 1, "-")) { - IronSourceBannerEvents.onAdClickedEvent -= gen_delegate; + IronSourceBannerEvents.onAdLeftApplicationEvent -= gen_delegate; return 0; } } catch(System.Exception gen_e) { return LuaAPI.luaL_error(L, "c# exception:" + gen_e); } - return LuaAPI.luaL_error(L, "invalid arguments to IronSourceBannerEvents.onAdClickedEvent!"); - } - - [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] - static int _e_onAdScreenPresentedEvent(RealStatePtr L) - { - try { - ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); - int gen_param_count = LuaAPI.lua_gettop(L); - System.Action gen_delegate = translator.GetDelegate>(L, 2); - if (gen_delegate == null) { - return LuaAPI.luaL_error(L, "#2 need System.Action!"); - } - - - if (gen_param_count == 2 && LuaAPI.xlua_is_eq_str(L, 1, "+")) { - IronSourceBannerEvents.onAdScreenPresentedEvent += gen_delegate; - return 0; - } - - - if (gen_param_count == 2 && LuaAPI.xlua_is_eq_str(L, 1, "-")) { - IronSourceBannerEvents.onAdScreenPresentedEvent -= gen_delegate; - return 0; - } - - } catch(System.Exception gen_e) { - return LuaAPI.luaL_error(L, "c# exception:" + gen_e); - } - return LuaAPI.luaL_error(L, "invalid arguments to IronSourceBannerEvents.onAdScreenPresentedEvent!"); + return LuaAPI.luaL_error(L, "invalid arguments to IronSourceBannerEvents.onAdLeftApplicationEvent!"); } [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] @@ -232,7 +174,7 @@ namespace XLua.CSObjectWrap } [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] - static int _e_onAdLeftApplicationEvent(RealStatePtr L) + static int _e_onAdScreenPresentedEvent(RealStatePtr L) { try { ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); @@ -244,20 +186,78 @@ namespace XLua.CSObjectWrap if (gen_param_count == 2 && LuaAPI.xlua_is_eq_str(L, 1, "+")) { - IronSourceBannerEvents.onAdLeftApplicationEvent += gen_delegate; + IronSourceBannerEvents.onAdScreenPresentedEvent += gen_delegate; return 0; } if (gen_param_count == 2 && LuaAPI.xlua_is_eq_str(L, 1, "-")) { - IronSourceBannerEvents.onAdLeftApplicationEvent -= gen_delegate; + IronSourceBannerEvents.onAdScreenPresentedEvent -= gen_delegate; return 0; } } catch(System.Exception gen_e) { return LuaAPI.luaL_error(L, "c# exception:" + gen_e); } - return LuaAPI.luaL_error(L, "invalid arguments to IronSourceBannerEvents.onAdLeftApplicationEvent!"); + return LuaAPI.luaL_error(L, "invalid arguments to IronSourceBannerEvents.onAdScreenPresentedEvent!"); + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_onAdClickedEvent(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + System.Action gen_delegate = translator.GetDelegate>(L, 2); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#2 need System.Action!"); + } + + + if (gen_param_count == 2 && LuaAPI.xlua_is_eq_str(L, 1, "+")) { + IronSourceBannerEvents.onAdClickedEvent += gen_delegate; + return 0; + } + + + if (gen_param_count == 2 && LuaAPI.xlua_is_eq_str(L, 1, "-")) { + IronSourceBannerEvents.onAdClickedEvent -= gen_delegate; + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + return LuaAPI.luaL_error(L, "invalid arguments to IronSourceBannerEvents.onAdClickedEvent!"); + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_onAdLoadFailedEvent(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + System.Action gen_delegate = translator.GetDelegate>(L, 2); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#2 need System.Action!"); + } + + + if (gen_param_count == 2 && LuaAPI.xlua_is_eq_str(L, 1, "+")) { + IronSourceBannerEvents.onAdLoadFailedEvent += gen_delegate; + return 0; + } + + + if (gen_param_count == 2 && LuaAPI.xlua_is_eq_str(L, 1, "-")) { + IronSourceBannerEvents.onAdLoadFailedEvent -= gen_delegate; + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + return LuaAPI.luaL_error(L, "invalid arguments to IronSourceBannerEvents.onAdLoadFailedEvent!"); } } diff --git a/Assets/XLua/Gen/IronSourceBannerLevelPlayAndroidWrap.cs b/Assets/XLua/Gen/IronSourceBannerLevelPlayAndroidWrap.cs new file mode 100644 index 000000000..cefff2e5f --- /dev/null +++ b/Assets/XLua/Gen/IronSourceBannerLevelPlayAndroidWrap.cs @@ -0,0 +1,294 @@ +#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 IronSourceBannerLevelPlayAndroidWrap + { + public static void __Register(RealStatePtr L) + { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + System.Type type = typeof(IronSourceBannerLevelPlayAndroid); + Utils.BeginObjectRegister(type, L, translator, 0, 6, 0, 0); + + + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnAdLoaded", _e_OnAdLoaded); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnAdLeftApplication", _e_OnAdLeftApplication); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnAdScreenDismissed", _e_OnAdScreenDismissed); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnAdScreenPresented", _e_OnAdScreenPresented); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnAdClicked", _e_OnAdClicked); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnAdLoadFailed", _e_OnAdLoadFailed); + + + + + 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 IronSourceBannerLevelPlayAndroid(); + 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 IronSourceBannerLevelPlayAndroid constructor!"); + + } + + + + + + + + + + + + + + + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnAdLoaded(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceBannerLevelPlayAndroid gen_to_be_invoked = (IronSourceBannerLevelPlayAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnAdLoaded += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnAdLoaded -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceBannerLevelPlayAndroid.OnAdLoaded!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnAdLeftApplication(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceBannerLevelPlayAndroid gen_to_be_invoked = (IronSourceBannerLevelPlayAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnAdLeftApplication += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnAdLeftApplication -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceBannerLevelPlayAndroid.OnAdLeftApplication!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnAdScreenDismissed(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceBannerLevelPlayAndroid gen_to_be_invoked = (IronSourceBannerLevelPlayAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnAdScreenDismissed += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnAdScreenDismissed -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceBannerLevelPlayAndroid.OnAdScreenDismissed!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnAdScreenPresented(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceBannerLevelPlayAndroid gen_to_be_invoked = (IronSourceBannerLevelPlayAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnAdScreenPresented += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnAdScreenPresented -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceBannerLevelPlayAndroid.OnAdScreenPresented!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnAdClicked(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceBannerLevelPlayAndroid gen_to_be_invoked = (IronSourceBannerLevelPlayAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnAdClicked += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnAdClicked -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceBannerLevelPlayAndroid.OnAdClicked!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnAdLoadFailed(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceBannerLevelPlayAndroid gen_to_be_invoked = (IronSourceBannerLevelPlayAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnAdLoadFailed += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnAdLoadFailed -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceBannerLevelPlayAndroid.OnAdLoadFailed!"); + return 0; + } + + + + } +} diff --git a/Assets/XLua/Gen/IronSourceEventsWrap.cs b/Assets/XLua/Gen/IronSourceEventsWrap.cs index f1e393d3c..8ac08f259 100644 --- a/Assets/XLua/Gen/IronSourceEventsWrap.cs +++ b/Assets/XLua/Gen/IronSourceEventsWrap.cs @@ -39,9 +39,9 @@ namespace XLua.CSObjectWrap Utils.BeginClassRegister(type, L, __CreateInstance, 10, 0, 0); - Utils.RegisterFunc(L, Utils.CLS_IDX, "onImpressionDataReadyEvent", _e_onImpressionDataReadyEvent); Utils.RegisterFunc(L, Utils.CLS_IDX, "onSdkInitializationCompletedEvent", _e_onSdkInitializationCompletedEvent); Utils.RegisterFunc(L, Utils.CLS_IDX, "onSegmentReceivedEvent", _e_onSegmentReceivedEvent); + Utils.RegisterFunc(L, Utils.CLS_IDX, "onImpressionDataReadyEvent", _e_onImpressionDataReadyEvent); Utils.RegisterFunc(L, Utils.CLS_IDX, "onConsentViewDidFailToLoadWithErrorEvent", _e_onConsentViewDidFailToLoadWithErrorEvent); Utils.RegisterFunc(L, Utils.CLS_IDX, "onConsentViewDidFailToShowWithErrorEvent", _e_onConsentViewDidFailToShowWithErrorEvent); Utils.RegisterFunc(L, Utils.CLS_IDX, "onConsentViewDidAcceptEvent", _e_onConsentViewDidAcceptEvent); @@ -263,35 +263,6 @@ namespace XLua.CSObjectWrap - [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] - static int _e_onImpressionDataReadyEvent(RealStatePtr L) - { - try { - ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); - int gen_param_count = LuaAPI.lua_gettop(L); - System.Action gen_delegate = translator.GetDelegate>(L, 2); - if (gen_delegate == null) { - return LuaAPI.luaL_error(L, "#2 need System.Action!"); - } - - - if (gen_param_count == 2 && LuaAPI.xlua_is_eq_str(L, 1, "+")) { - IronSourceEvents.onImpressionDataReadyEvent += gen_delegate; - return 0; - } - - - if (gen_param_count == 2 && LuaAPI.xlua_is_eq_str(L, 1, "-")) { - IronSourceEvents.onImpressionDataReadyEvent -= gen_delegate; - return 0; - } - - } catch(System.Exception gen_e) { - return LuaAPI.luaL_error(L, "c# exception:" + gen_e); - } - return LuaAPI.luaL_error(L, "invalid arguments to IronSourceEvents.onImpressionDataReadyEvent!"); - } - [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] static int _e_onSdkInitializationCompletedEvent(RealStatePtr L) { @@ -350,6 +321,35 @@ namespace XLua.CSObjectWrap return LuaAPI.luaL_error(L, "invalid arguments to IronSourceEvents.onSegmentReceivedEvent!"); } + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_onImpressionDataReadyEvent(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + System.Action gen_delegate = translator.GetDelegate>(L, 2); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#2 need System.Action!"); + } + + + if (gen_param_count == 2 && LuaAPI.xlua_is_eq_str(L, 1, "+")) { + IronSourceEvents.onImpressionDataReadyEvent += gen_delegate; + return 0; + } + + + if (gen_param_count == 2 && LuaAPI.xlua_is_eq_str(L, 1, "-")) { + IronSourceEvents.onImpressionDataReadyEvent -= gen_delegate; + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + return LuaAPI.luaL_error(L, "invalid arguments to IronSourceEvents.onImpressionDataReadyEvent!"); + } + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] static int _e_onConsentViewDidFailToLoadWithErrorEvent(RealStatePtr L) { diff --git a/Assets/XLua/Gen/IronSourceImpressionDataAndroidWrap.cs b/Assets/XLua/Gen/IronSourceImpressionDataAndroidWrap.cs new file mode 100644 index 000000000..813130e35 --- /dev/null +++ b/Assets/XLua/Gen/IronSourceImpressionDataAndroidWrap.cs @@ -0,0 +1,212 @@ +#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 IronSourceImpressionDataAndroidWrap + { + public static void __Register(RealStatePtr L) + { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + System.Type type = typeof(IronSourceImpressionDataAndroid); + Utils.BeginObjectRegister(type, L, translator, 0, 4, 0, 0); + + Utils.RegisterFunc(L, Utils.METHOD_IDX, "onImpressionSuccess", _m_onImpressionSuccess); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "onImpressionDataReady", _m_onImpressionDataReady); + + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnImpressionSuccess", _e_OnImpressionSuccess); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnImpressionDataReady", _e_OnImpressionDataReady); + + + + + 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 IronSourceImpressionDataAndroid(); + 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 IronSourceImpressionDataAndroid constructor!"); + + } + + + + + + + + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_onImpressionSuccess(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + IronSourceImpressionDataAndroid gen_to_be_invoked = (IronSourceImpressionDataAndroid)translator.FastGetCSObj(L, 1); + + + + { + string _data = LuaAPI.lua_tostring(L, 2); + + gen_to_be_invoked.onImpressionSuccess( _data ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_onImpressionDataReady(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + IronSourceImpressionDataAndroid gen_to_be_invoked = (IronSourceImpressionDataAndroid)translator.FastGetCSObj(L, 1); + + + + { + string _data = LuaAPI.lua_tostring(L, 2); + + gen_to_be_invoked.onImpressionDataReady( _data ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + + + + + + + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnImpressionSuccess(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceImpressionDataAndroid gen_to_be_invoked = (IronSourceImpressionDataAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnImpressionSuccess += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnImpressionSuccess -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceImpressionDataAndroid.OnImpressionSuccess!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnImpressionDataReady(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceImpressionDataAndroid gen_to_be_invoked = (IronSourceImpressionDataAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnImpressionDataReady += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnImpressionDataReady -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceImpressionDataAndroid.OnImpressionDataReady!"); + return 0; + } + + + + } +} diff --git a/Assets/XLua/Gen/IronSourceInitializationAndroidWrap.cs b/Assets/XLua/Gen/IronSourceInitializationAndroidWrap.cs new file mode 100644 index 000000000..0bbf264e2 --- /dev/null +++ b/Assets/XLua/Gen/IronSourceInitializationAndroidWrap.cs @@ -0,0 +1,119 @@ +#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 IronSourceInitializationAndroidWrap + { + public static void __Register(RealStatePtr L) + { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + System.Type type = typeof(IronSourceInitializationAndroid); + Utils.BeginObjectRegister(type, L, translator, 0, 1, 0, 0); + + + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnSdkInitializationCompletedEvent", _e_OnSdkInitializationCompletedEvent); + + + + + 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 IronSourceInitializationAndroid(); + 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 IronSourceInitializationAndroid constructor!"); + + } + + + + + + + + + + + + + + + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnSdkInitializationCompletedEvent(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceInitializationAndroid gen_to_be_invoked = (IronSourceInitializationAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnSdkInitializationCompletedEvent += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnSdkInitializationCompletedEvent -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceInitializationAndroid.OnSdkInitializationCompletedEvent!"); + return 0; + } + + + + } +} diff --git a/Assets/XLua/Gen/IronSourceInterstitialAndroidWrap.cs b/Assets/XLua/Gen/IronSourceInterstitialAndroidWrap.cs new file mode 100644 index 000000000..eae9c5a39 --- /dev/null +++ b/Assets/XLua/Gen/IronSourceInterstitialAndroidWrap.cs @@ -0,0 +1,574 @@ +#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 IronSourceInterstitialAndroidWrap + { + public static void __Register(RealStatePtr L) + { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + System.Type type = typeof(IronSourceInterstitialAndroid); + Utils.BeginObjectRegister(type, L, translator, 0, 14, 0, 0); + + + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnInterstitialAdShowFailed", _e_OnInterstitialAdShowFailed); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnInterstitialAdLoadFailed", _e_OnInterstitialAdLoadFailed); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnInterstitialAdReady", _e_OnInterstitialAdReady); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnInterstitialAdOpened", _e_OnInterstitialAdOpened); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnInterstitialAdClosed", _e_OnInterstitialAdClosed); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnInterstitialAdShowSucceeded", _e_OnInterstitialAdShowSucceeded); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnInterstitialAdClicked", _e_OnInterstitialAdClicked); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnInterstitialAdRewarded", _e_OnInterstitialAdRewarded); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnInterstitialAdReadyDemandOnly", _e_OnInterstitialAdReadyDemandOnly); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnInterstitialAdOpenedDemandOnly", _e_OnInterstitialAdOpenedDemandOnly); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnInterstitialAdClosedDemandOnly", _e_OnInterstitialAdClosedDemandOnly); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnInterstitialAdLoadFailedDemandOnly", _e_OnInterstitialAdLoadFailedDemandOnly); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnInterstitialAdClickedDemandOnly", _e_OnInterstitialAdClickedDemandOnly); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnInterstitialAdShowFailedDemandOnly", _e_OnInterstitialAdShowFailedDemandOnly); + + + + + 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 IronSourceInterstitialAndroid(); + 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 IronSourceInterstitialAndroid constructor!"); + + } + + + + + + + + + + + + + + + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnInterstitialAdShowFailed(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceInterstitialAndroid gen_to_be_invoked = (IronSourceInterstitialAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnInterstitialAdShowFailed += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnInterstitialAdShowFailed -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceInterstitialAndroid.OnInterstitialAdShowFailed!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnInterstitialAdLoadFailed(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceInterstitialAndroid gen_to_be_invoked = (IronSourceInterstitialAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnInterstitialAdLoadFailed += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnInterstitialAdLoadFailed -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceInterstitialAndroid.OnInterstitialAdLoadFailed!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnInterstitialAdReady(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceInterstitialAndroid gen_to_be_invoked = (IronSourceInterstitialAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnInterstitialAdReady += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnInterstitialAdReady -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceInterstitialAndroid.OnInterstitialAdReady!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnInterstitialAdOpened(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceInterstitialAndroid gen_to_be_invoked = (IronSourceInterstitialAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnInterstitialAdOpened += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnInterstitialAdOpened -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceInterstitialAndroid.OnInterstitialAdOpened!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnInterstitialAdClosed(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceInterstitialAndroid gen_to_be_invoked = (IronSourceInterstitialAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnInterstitialAdClosed += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnInterstitialAdClosed -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceInterstitialAndroid.OnInterstitialAdClosed!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnInterstitialAdShowSucceeded(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceInterstitialAndroid gen_to_be_invoked = (IronSourceInterstitialAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnInterstitialAdShowSucceeded += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnInterstitialAdShowSucceeded -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceInterstitialAndroid.OnInterstitialAdShowSucceeded!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnInterstitialAdClicked(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceInterstitialAndroid gen_to_be_invoked = (IronSourceInterstitialAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnInterstitialAdClicked += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnInterstitialAdClicked -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceInterstitialAndroid.OnInterstitialAdClicked!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnInterstitialAdRewarded(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceInterstitialAndroid gen_to_be_invoked = (IronSourceInterstitialAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnInterstitialAdRewarded += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnInterstitialAdRewarded -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceInterstitialAndroid.OnInterstitialAdRewarded!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnInterstitialAdReadyDemandOnly(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceInterstitialAndroid gen_to_be_invoked = (IronSourceInterstitialAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnInterstitialAdReadyDemandOnly += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnInterstitialAdReadyDemandOnly -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceInterstitialAndroid.OnInterstitialAdReadyDemandOnly!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnInterstitialAdOpenedDemandOnly(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceInterstitialAndroid gen_to_be_invoked = (IronSourceInterstitialAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnInterstitialAdOpenedDemandOnly += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnInterstitialAdOpenedDemandOnly -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceInterstitialAndroid.OnInterstitialAdOpenedDemandOnly!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnInterstitialAdClosedDemandOnly(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceInterstitialAndroid gen_to_be_invoked = (IronSourceInterstitialAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnInterstitialAdClosedDemandOnly += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnInterstitialAdClosedDemandOnly -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceInterstitialAndroid.OnInterstitialAdClosedDemandOnly!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnInterstitialAdLoadFailedDemandOnly(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceInterstitialAndroid gen_to_be_invoked = (IronSourceInterstitialAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnInterstitialAdLoadFailedDemandOnly += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnInterstitialAdLoadFailedDemandOnly -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceInterstitialAndroid.OnInterstitialAdLoadFailedDemandOnly!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnInterstitialAdClickedDemandOnly(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceInterstitialAndroid gen_to_be_invoked = (IronSourceInterstitialAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnInterstitialAdClickedDemandOnly += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnInterstitialAdClickedDemandOnly -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceInterstitialAndroid.OnInterstitialAdClickedDemandOnly!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnInterstitialAdShowFailedDemandOnly(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceInterstitialAndroid gen_to_be_invoked = (IronSourceInterstitialAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnInterstitialAdShowFailedDemandOnly += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnInterstitialAdShowFailedDemandOnly -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceInterstitialAndroid.OnInterstitialAdShowFailedDemandOnly!"); + return 0; + } + + + + } +} diff --git a/Assets/XLua/Gen/IronSourceInterstitialLevelPlayAndroidWrap.cs b/Assets/XLua/Gen/IronSourceInterstitialLevelPlayAndroidWrap.cs new file mode 100644 index 000000000..23ac0e36a --- /dev/null +++ b/Assets/XLua/Gen/IronSourceInterstitialLevelPlayAndroidWrap.cs @@ -0,0 +1,329 @@ +#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 IronSourceInterstitialLevelPlayAndroidWrap + { + public static void __Register(RealStatePtr L) + { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + System.Type type = typeof(IronSourceInterstitialLevelPlayAndroid); + Utils.BeginObjectRegister(type, L, translator, 0, 7, 0, 0); + + + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnAdShowFailed", _e_OnAdShowFailed); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnAdLoadFailed", _e_OnAdLoadFailed); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnAdReady", _e_OnAdReady); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnAdOpened", _e_OnAdOpened); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnAdClosed", _e_OnAdClosed); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnAdShowSucceeded", _e_OnAdShowSucceeded); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnAdClicked", _e_OnAdClicked); + + + + + 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 IronSourceInterstitialLevelPlayAndroid(); + 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 IronSourceInterstitialLevelPlayAndroid constructor!"); + + } + + + + + + + + + + + + + + + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnAdShowFailed(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceInterstitialLevelPlayAndroid gen_to_be_invoked = (IronSourceInterstitialLevelPlayAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnAdShowFailed += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnAdShowFailed -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceInterstitialLevelPlayAndroid.OnAdShowFailed!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnAdLoadFailed(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceInterstitialLevelPlayAndroid gen_to_be_invoked = (IronSourceInterstitialLevelPlayAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnAdLoadFailed += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnAdLoadFailed -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceInterstitialLevelPlayAndroid.OnAdLoadFailed!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnAdReady(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceInterstitialLevelPlayAndroid gen_to_be_invoked = (IronSourceInterstitialLevelPlayAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnAdReady += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnAdReady -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceInterstitialLevelPlayAndroid.OnAdReady!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnAdOpened(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceInterstitialLevelPlayAndroid gen_to_be_invoked = (IronSourceInterstitialLevelPlayAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnAdOpened += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnAdOpened -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceInterstitialLevelPlayAndroid.OnAdOpened!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnAdClosed(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceInterstitialLevelPlayAndroid gen_to_be_invoked = (IronSourceInterstitialLevelPlayAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnAdClosed += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnAdClosed -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceInterstitialLevelPlayAndroid.OnAdClosed!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnAdShowSucceeded(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceInterstitialLevelPlayAndroid gen_to_be_invoked = (IronSourceInterstitialLevelPlayAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnAdShowSucceeded += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnAdShowSucceeded -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceInterstitialLevelPlayAndroid.OnAdShowSucceeded!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnAdClicked(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceInterstitialLevelPlayAndroid gen_to_be_invoked = (IronSourceInterstitialLevelPlayAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnAdClicked += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnAdClicked -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceInterstitialLevelPlayAndroid.OnAdClicked!"); + return 0; + } + + + + } +} diff --git a/Assets/XLua/Gen/IronSourceOfferwallAndroidWrap.cs b/Assets/XLua/Gen/IronSourceOfferwallAndroidWrap.cs new file mode 100644 index 000000000..bf4e1a258 --- /dev/null +++ b/Assets/XLua/Gen/IronSourceOfferwallAndroidWrap.cs @@ -0,0 +1,466 @@ +#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 IronSourceOfferwallAndroidWrap + { + public static void __Register(RealStatePtr L) + { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + System.Type type = typeof(IronSourceOfferwallAndroid); + Utils.BeginObjectRegister(type, L, translator, 0, 12, 0, 0); + + Utils.RegisterFunc(L, Utils.METHOD_IDX, "onOfferwallOpened", _m_onOfferwallOpened); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "onOfferwallShowFailed", _m_onOfferwallShowFailed); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "onOfferwallClosed", _m_onOfferwallClosed); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "onGetOfferwallCreditsFailed", _m_onGetOfferwallCreditsFailed); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "onOfferwallAdCredited", _m_onOfferwallAdCredited); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "onOfferwallAvailable", _m_onOfferwallAvailable); + + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnOfferwallShowFailed", _e_OnOfferwallShowFailed); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnOfferwallOpened", _e_OnOfferwallOpened); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnOfferwallClosed", _e_OnOfferwallClosed); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnGetOfferwallCreditsFailed", _e_OnGetOfferwallCreditsFailed); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnOfferwallAdCredited", _e_OnOfferwallAdCredited); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnOfferwallAvailable", _e_OnOfferwallAvailable); + + + + + 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 IronSourceOfferwallAndroid(); + 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 IronSourceOfferwallAndroid constructor!"); + + } + + + + + + + + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_onOfferwallOpened(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + IronSourceOfferwallAndroid gen_to_be_invoked = (IronSourceOfferwallAndroid)translator.FastGetCSObj(L, 1); + + + + { + + gen_to_be_invoked.onOfferwallOpened( ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_onOfferwallShowFailed(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + IronSourceOfferwallAndroid gen_to_be_invoked = (IronSourceOfferwallAndroid)translator.FastGetCSObj(L, 1); + + + + { + string _description = LuaAPI.lua_tostring(L, 2); + + gen_to_be_invoked.onOfferwallShowFailed( _description ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_onOfferwallClosed(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + IronSourceOfferwallAndroid gen_to_be_invoked = (IronSourceOfferwallAndroid)translator.FastGetCSObj(L, 1); + + + + { + + gen_to_be_invoked.onOfferwallClosed( ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_onGetOfferwallCreditsFailed(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + IronSourceOfferwallAndroid gen_to_be_invoked = (IronSourceOfferwallAndroid)translator.FastGetCSObj(L, 1); + + + + { + string _description = LuaAPI.lua_tostring(L, 2); + + gen_to_be_invoked.onGetOfferwallCreditsFailed( _description ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_onOfferwallAdCredited(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + IronSourceOfferwallAndroid gen_to_be_invoked = (IronSourceOfferwallAndroid)translator.FastGetCSObj(L, 1); + + + + { + string _json = LuaAPI.lua_tostring(L, 2); + + gen_to_be_invoked.onOfferwallAdCredited( _json ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_onOfferwallAvailable(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + IronSourceOfferwallAndroid gen_to_be_invoked = (IronSourceOfferwallAndroid)translator.FastGetCSObj(L, 1); + + + + { + string _stringAvailable = LuaAPI.lua_tostring(L, 2); + + gen_to_be_invoked.onOfferwallAvailable( _stringAvailable ); + + + + return 0; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + + + + + + + + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnOfferwallShowFailed(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceOfferwallAndroid gen_to_be_invoked = (IronSourceOfferwallAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnOfferwallShowFailed += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnOfferwallShowFailed -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceOfferwallAndroid.OnOfferwallShowFailed!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnOfferwallOpened(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceOfferwallAndroid gen_to_be_invoked = (IronSourceOfferwallAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnOfferwallOpened += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnOfferwallOpened -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceOfferwallAndroid.OnOfferwallOpened!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnOfferwallClosed(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceOfferwallAndroid gen_to_be_invoked = (IronSourceOfferwallAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnOfferwallClosed += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnOfferwallClosed -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceOfferwallAndroid.OnOfferwallClosed!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnGetOfferwallCreditsFailed(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceOfferwallAndroid gen_to_be_invoked = (IronSourceOfferwallAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnGetOfferwallCreditsFailed += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnGetOfferwallCreditsFailed -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceOfferwallAndroid.OnGetOfferwallCreditsFailed!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnOfferwallAdCredited(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceOfferwallAndroid gen_to_be_invoked = (IronSourceOfferwallAndroid)translator.FastGetCSObj(L, 1); + System.Action> gen_delegate = translator.GetDelegate>>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action>!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnOfferwallAdCredited += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnOfferwallAdCredited -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceOfferwallAndroid.OnOfferwallAdCredited!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnOfferwallAvailable(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceOfferwallAndroid gen_to_be_invoked = (IronSourceOfferwallAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnOfferwallAvailable += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnOfferwallAvailable -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceOfferwallAndroid.OnOfferwallAvailable!"); + return 0; + } + + + + } +} diff --git a/Assets/XLua/Gen/IronSourceRewardedVideoAndroidWrap.cs b/Assets/XLua/Gen/IronSourceRewardedVideoAndroidWrap.cs new file mode 100644 index 000000000..008c5187b --- /dev/null +++ b/Assets/XLua/Gen/IronSourceRewardedVideoAndroidWrap.cs @@ -0,0 +1,609 @@ +#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 IronSourceRewardedVideoAndroidWrap + { + public static void __Register(RealStatePtr L) + { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + System.Type type = typeof(IronSourceRewardedVideoAndroid); + Utils.BeginObjectRegister(type, L, translator, 0, 15, 0, 0); + + + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnRewardedVideoAdShowFailed", _e_OnRewardedVideoAdShowFailed); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnRewardedVideoAdOpened", _e_OnRewardedVideoAdOpened); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnRewardedVideoAdClosed", _e_OnRewardedVideoAdClosed); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnRewardedVideoAdStarted", _e_OnRewardedVideoAdStarted); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnRewardedVideoAdEnded", _e_OnRewardedVideoAdEnded); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnRewardedVideoAdRewarded", _e_OnRewardedVideoAdRewarded); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnRewardedVideoAdClicked", _e_OnRewardedVideoAdClicked); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnRewardedVideoAvailabilityChanged", _e_OnRewardedVideoAvailabilityChanged); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnRewardedVideoAdOpenedDemandOnlyEvent", _e_OnRewardedVideoAdOpenedDemandOnlyEvent); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnRewardedVideoAdClosedDemandOnlyEvent", _e_OnRewardedVideoAdClosedDemandOnlyEvent); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnRewardedVideoAdLoadedDemandOnlyEvent", _e_OnRewardedVideoAdLoadedDemandOnlyEvent); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnRewardedVideoAdRewardedDemandOnlyEvent", _e_OnRewardedVideoAdRewardedDemandOnlyEvent); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnRewardedVideoAdShowFailedDemandOnlyEvent", _e_OnRewardedVideoAdShowFailedDemandOnlyEvent); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnRewardedVideoAdClickedDemandOnlyEvent", _e_OnRewardedVideoAdClickedDemandOnlyEvent); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnRewardedVideoAdLoadFailedDemandOnlyEvent", _e_OnRewardedVideoAdLoadFailedDemandOnlyEvent); + + + + + 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 IronSourceRewardedVideoAndroid(); + 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 IronSourceRewardedVideoAndroid constructor!"); + + } + + + + + + + + + + + + + + + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnRewardedVideoAdShowFailed(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceRewardedVideoAndroid gen_to_be_invoked = (IronSourceRewardedVideoAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnRewardedVideoAdShowFailed += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnRewardedVideoAdShowFailed -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceRewardedVideoAndroid.OnRewardedVideoAdShowFailed!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnRewardedVideoAdOpened(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceRewardedVideoAndroid gen_to_be_invoked = (IronSourceRewardedVideoAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnRewardedVideoAdOpened += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnRewardedVideoAdOpened -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceRewardedVideoAndroid.OnRewardedVideoAdOpened!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnRewardedVideoAdClosed(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceRewardedVideoAndroid gen_to_be_invoked = (IronSourceRewardedVideoAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnRewardedVideoAdClosed += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnRewardedVideoAdClosed -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceRewardedVideoAndroid.OnRewardedVideoAdClosed!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnRewardedVideoAdStarted(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceRewardedVideoAndroid gen_to_be_invoked = (IronSourceRewardedVideoAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnRewardedVideoAdStarted += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnRewardedVideoAdStarted -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceRewardedVideoAndroid.OnRewardedVideoAdStarted!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnRewardedVideoAdEnded(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceRewardedVideoAndroid gen_to_be_invoked = (IronSourceRewardedVideoAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnRewardedVideoAdEnded += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnRewardedVideoAdEnded -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceRewardedVideoAndroid.OnRewardedVideoAdEnded!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnRewardedVideoAdRewarded(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceRewardedVideoAndroid gen_to_be_invoked = (IronSourceRewardedVideoAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnRewardedVideoAdRewarded += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnRewardedVideoAdRewarded -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceRewardedVideoAndroid.OnRewardedVideoAdRewarded!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnRewardedVideoAdClicked(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceRewardedVideoAndroid gen_to_be_invoked = (IronSourceRewardedVideoAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnRewardedVideoAdClicked += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnRewardedVideoAdClicked -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceRewardedVideoAndroid.OnRewardedVideoAdClicked!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnRewardedVideoAvailabilityChanged(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceRewardedVideoAndroid gen_to_be_invoked = (IronSourceRewardedVideoAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnRewardedVideoAvailabilityChanged += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnRewardedVideoAvailabilityChanged -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceRewardedVideoAndroid.OnRewardedVideoAvailabilityChanged!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnRewardedVideoAdOpenedDemandOnlyEvent(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceRewardedVideoAndroid gen_to_be_invoked = (IronSourceRewardedVideoAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnRewardedVideoAdOpenedDemandOnlyEvent += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnRewardedVideoAdOpenedDemandOnlyEvent -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceRewardedVideoAndroid.OnRewardedVideoAdOpenedDemandOnlyEvent!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnRewardedVideoAdClosedDemandOnlyEvent(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceRewardedVideoAndroid gen_to_be_invoked = (IronSourceRewardedVideoAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnRewardedVideoAdClosedDemandOnlyEvent += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnRewardedVideoAdClosedDemandOnlyEvent -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceRewardedVideoAndroid.OnRewardedVideoAdClosedDemandOnlyEvent!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnRewardedVideoAdLoadedDemandOnlyEvent(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceRewardedVideoAndroid gen_to_be_invoked = (IronSourceRewardedVideoAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnRewardedVideoAdLoadedDemandOnlyEvent += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnRewardedVideoAdLoadedDemandOnlyEvent -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceRewardedVideoAndroid.OnRewardedVideoAdLoadedDemandOnlyEvent!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnRewardedVideoAdRewardedDemandOnlyEvent(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceRewardedVideoAndroid gen_to_be_invoked = (IronSourceRewardedVideoAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnRewardedVideoAdRewardedDemandOnlyEvent += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnRewardedVideoAdRewardedDemandOnlyEvent -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceRewardedVideoAndroid.OnRewardedVideoAdRewardedDemandOnlyEvent!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnRewardedVideoAdShowFailedDemandOnlyEvent(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceRewardedVideoAndroid gen_to_be_invoked = (IronSourceRewardedVideoAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnRewardedVideoAdShowFailedDemandOnlyEvent += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnRewardedVideoAdShowFailedDemandOnlyEvent -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceRewardedVideoAndroid.OnRewardedVideoAdShowFailedDemandOnlyEvent!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnRewardedVideoAdClickedDemandOnlyEvent(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceRewardedVideoAndroid gen_to_be_invoked = (IronSourceRewardedVideoAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnRewardedVideoAdClickedDemandOnlyEvent += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnRewardedVideoAdClickedDemandOnlyEvent -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceRewardedVideoAndroid.OnRewardedVideoAdClickedDemandOnlyEvent!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnRewardedVideoAdLoadFailedDemandOnlyEvent(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceRewardedVideoAndroid gen_to_be_invoked = (IronSourceRewardedVideoAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnRewardedVideoAdLoadFailedDemandOnlyEvent += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnRewardedVideoAdLoadFailedDemandOnlyEvent -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceRewardedVideoAndroid.OnRewardedVideoAdLoadFailedDemandOnlyEvent!"); + return 0; + } + + + + } +} diff --git a/Assets/XLua/Gen/IronSourceRewardedVideoLevelPlayAndroidWrap.cs b/Assets/XLua/Gen/IronSourceRewardedVideoLevelPlayAndroidWrap.cs new file mode 100644 index 000000000..c51898b15 --- /dev/null +++ b/Assets/XLua/Gen/IronSourceRewardedVideoLevelPlayAndroidWrap.cs @@ -0,0 +1,329 @@ +#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 IronSourceRewardedVideoLevelPlayAndroidWrap + { + public static void __Register(RealStatePtr L) + { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + System.Type type = typeof(IronSourceRewardedVideoLevelPlayAndroid); + Utils.BeginObjectRegister(type, L, translator, 0, 7, 0, 0); + + + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnAdShowFailed", _e_OnAdShowFailed); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnAdOpened", _e_OnAdOpened); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnAdClosed", _e_OnAdClosed); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnAdRewarded", _e_OnAdRewarded); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnAdClicked", _e_OnAdClicked); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnAdAvailable", _e_OnAdAvailable); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnAdUnavailable", _e_OnAdUnavailable); + + + + + 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 IronSourceRewardedVideoLevelPlayAndroid(); + 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 IronSourceRewardedVideoLevelPlayAndroid constructor!"); + + } + + + + + + + + + + + + + + + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnAdShowFailed(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceRewardedVideoLevelPlayAndroid gen_to_be_invoked = (IronSourceRewardedVideoLevelPlayAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnAdShowFailed += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnAdShowFailed -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceRewardedVideoLevelPlayAndroid.OnAdShowFailed!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnAdOpened(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceRewardedVideoLevelPlayAndroid gen_to_be_invoked = (IronSourceRewardedVideoLevelPlayAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnAdOpened += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnAdOpened -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceRewardedVideoLevelPlayAndroid.OnAdOpened!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnAdClosed(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceRewardedVideoLevelPlayAndroid gen_to_be_invoked = (IronSourceRewardedVideoLevelPlayAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnAdClosed += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnAdClosed -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceRewardedVideoLevelPlayAndroid.OnAdClosed!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnAdRewarded(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceRewardedVideoLevelPlayAndroid gen_to_be_invoked = (IronSourceRewardedVideoLevelPlayAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnAdRewarded += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnAdRewarded -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceRewardedVideoLevelPlayAndroid.OnAdRewarded!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnAdClicked(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceRewardedVideoLevelPlayAndroid gen_to_be_invoked = (IronSourceRewardedVideoLevelPlayAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnAdClicked += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnAdClicked -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceRewardedVideoLevelPlayAndroid.OnAdClicked!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnAdAvailable(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceRewardedVideoLevelPlayAndroid gen_to_be_invoked = (IronSourceRewardedVideoLevelPlayAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnAdAvailable += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnAdAvailable -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceRewardedVideoLevelPlayAndroid.OnAdAvailable!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnAdUnavailable(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceRewardedVideoLevelPlayAndroid gen_to_be_invoked = (IronSourceRewardedVideoLevelPlayAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnAdUnavailable += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnAdUnavailable -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceRewardedVideoLevelPlayAndroid.OnAdUnavailable!"); + return 0; + } + + + + } +} diff --git a/Assets/XLua/Gen/IronSourceRewardedVideoLevelPlayManualAndroidWrap.cs b/Assets/XLua/Gen/IronSourceRewardedVideoLevelPlayManualAndroidWrap.cs new file mode 100644 index 000000000..ae47d2e90 --- /dev/null +++ b/Assets/XLua/Gen/IronSourceRewardedVideoLevelPlayManualAndroidWrap.cs @@ -0,0 +1,154 @@ +#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 IronSourceRewardedVideoLevelPlayManualAndroidWrap + { + public static void __Register(RealStatePtr L) + { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + System.Type type = typeof(IronSourceRewardedVideoLevelPlayManualAndroid); + Utils.BeginObjectRegister(type, L, translator, 0, 2, 0, 0); + + + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnAdLoadFailed", _e_OnAdLoadFailed); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnAdReady", _e_OnAdReady); + + + + + 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 IronSourceRewardedVideoLevelPlayManualAndroid(); + 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 IronSourceRewardedVideoLevelPlayManualAndroid constructor!"); + + } + + + + + + + + + + + + + + + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnAdLoadFailed(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceRewardedVideoLevelPlayManualAndroid gen_to_be_invoked = (IronSourceRewardedVideoLevelPlayManualAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnAdLoadFailed += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnAdLoadFailed -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceRewardedVideoLevelPlayManualAndroid.OnAdLoadFailed!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnAdReady(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceRewardedVideoLevelPlayManualAndroid gen_to_be_invoked = (IronSourceRewardedVideoLevelPlayManualAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnAdReady += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnAdReady -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceRewardedVideoLevelPlayManualAndroid.OnAdReady!"); + return 0; + } + + + + } +} diff --git a/Assets/XLua/Gen/IronSourceRewardedVideoManualAndroidWrap.cs b/Assets/XLua/Gen/IronSourceRewardedVideoManualAndroidWrap.cs new file mode 100644 index 000000000..5a61a975c --- /dev/null +++ b/Assets/XLua/Gen/IronSourceRewardedVideoManualAndroidWrap.cs @@ -0,0 +1,154 @@ +#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 IronSourceRewardedVideoManualAndroidWrap + { + public static void __Register(RealStatePtr L) + { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + System.Type type = typeof(IronSourceRewardedVideoManualAndroid); + Utils.BeginObjectRegister(type, L, translator, 0, 2, 0, 0); + + + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnRewardedVideoAdLoadFailed", _e_OnRewardedVideoAdLoadFailed); + Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnRewardedVideoAdReady", _e_OnRewardedVideoAdReady); + + + + + 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 IronSourceRewardedVideoManualAndroid(); + 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 IronSourceRewardedVideoManualAndroid constructor!"); + + } + + + + + + + + + + + + + + + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnRewardedVideoAdLoadFailed(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceRewardedVideoManualAndroid gen_to_be_invoked = (IronSourceRewardedVideoManualAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate>(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnRewardedVideoAdLoadFailed += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnRewardedVideoAdLoadFailed -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceRewardedVideoManualAndroid.OnRewardedVideoAdLoadFailed!"); + return 0; + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _e_OnRewardedVideoAdReady(RealStatePtr L) + { + try { + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + int gen_param_count = LuaAPI.lua_gettop(L); + IronSourceRewardedVideoManualAndroid gen_to_be_invoked = (IronSourceRewardedVideoManualAndroid)translator.FastGetCSObj(L, 1); + System.Action gen_delegate = translator.GetDelegate(L, 3); + if (gen_delegate == null) { + return LuaAPI.luaL_error(L, "#3 need System.Action!"); + } + + if (gen_param_count == 3) + { + + if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { + gen_to_be_invoked.OnRewardedVideoAdReady += gen_delegate; + return 0; + } + + + if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { + gen_to_be_invoked.OnRewardedVideoAdReady -= gen_delegate; + return 0; + } + + } + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + LuaAPI.luaL_error(L, "invalid arguments to IronSourceRewardedVideoManualAndroid.OnRewardedVideoAdReady!"); + return 0; + } + + + + } +} diff --git a/Assets/XLua/Gen/XLuaGenAutoRegister.cs b/Assets/XLua/Gen/XLuaGenAutoRegister.cs index 3f134f480..a111023ea 100644 --- a/Assets/XLua/Gen/XLuaGenAutoRegister.cs +++ b/Assets/XLua/Gen/XLuaGenAutoRegister.cs @@ -650,15 +650,24 @@ namespace XLua.CSObjectWrap static void wrapInit4(LuaEnv luaenv, ObjectTranslator translator) { + translator.DelayWrapLoader(typeof(AndroidAgent), AndroidAgentWrap.__Register); + + translator.DelayWrapLoader(typeof(IronSource), IronSourceWrap.__Register); translator.DelayWrapLoader(typeof(IronSourceAdInfo), IronSourceAdInfoWrap.__Register); + translator.DelayWrapLoader(typeof(IronSourceBannerAndroid), IronSourceBannerAndroidWrap.__Register); + + translator.DelayWrapLoader(typeof(IronSourceBannerEvents), IronSourceBannerEventsWrap.__Register); + translator.DelayWrapLoader(typeof(IronSourceBannerLevelPlayAndroid), IronSourceBannerLevelPlayAndroidWrap.__Register); + + translator.DelayWrapLoader(typeof(IronSourceConfig), IronSourceConfigWrap.__Register); @@ -692,21 +701,48 @@ namespace XLua.CSObjectWrap translator.DelayWrapLoader(typeof(IronSourceImpressionData), IronSourceImpressionDataWrap.__Register); + translator.DelayWrapLoader(typeof(IronSourceImpressionDataAndroid), IronSourceImpressionDataAndroidWrap.__Register); + + + translator.DelayWrapLoader(typeof(IronSourceInitializationAndroid), IronSourceInitializationAndroidWrap.__Register); + + translator.DelayWrapLoader(typeof(IronSourceInitilizer), IronSourceInitilizerWrap.__Register); + translator.DelayWrapLoader(typeof(IronSourceInterstitialAndroid), IronSourceInterstitialAndroidWrap.__Register); + + translator.DelayWrapLoader(typeof(IronSourceInterstitialEvents), IronSourceInterstitialEventsWrap.__Register); + translator.DelayWrapLoader(typeof(IronSourceInterstitialLevelPlayAndroid), IronSourceInterstitialLevelPlayAndroidWrap.__Register); + + translator.DelayWrapLoader(typeof(IronSourceMediationSettings), IronSourceMediationSettingsWrap.__Register); + translator.DelayWrapLoader(typeof(IronSourceOfferwallAndroid), IronSourceOfferwallAndroidWrap.__Register); + + translator.DelayWrapLoader(typeof(IronSourcePlacement), IronSourcePlacementWrap.__Register); + translator.DelayWrapLoader(typeof(IronSourceRewardedVideoAndroid), IronSourceRewardedVideoAndroidWrap.__Register); + + translator.DelayWrapLoader(typeof(IronSourceRewardedVideoEvents), IronSourceRewardedVideoEventsWrap.__Register); + translator.DelayWrapLoader(typeof(IronSourceRewardedVideoLevelPlayAndroid), IronSourceRewardedVideoLevelPlayAndroidWrap.__Register); + + + translator.DelayWrapLoader(typeof(IronSourceRewardedVideoLevelPlayManualAndroid), IronSourceRewardedVideoLevelPlayManualAndroidWrap.__Register); + + + translator.DelayWrapLoader(typeof(IronSourceRewardedVideoManualAndroid), IronSourceRewardedVideoManualAndroidWrap.__Register); + + translator.DelayWrapLoader(typeof(IronSourceSegment), IronSourceSegmentWrap.__Register); @@ -766,6 +802,10 @@ namespace XLua.CSObjectWrap translator.DelayWrapLoader(typeof(SignInWithAppleTest_EventSystem), SignInWithAppleTest_EventSystemWrap.__Register); + } + + static void wrapInit5(LuaEnv luaenv, ObjectTranslator translator) + { translator.DelayWrapLoader(typeof(LuaAsset), LuaAssetWrap.__Register); @@ -802,10 +842,6 @@ namespace XLua.CSObjectWrap translator.DelayWrapLoader(typeof(ThinkingAnalytics.Utils.TD_PropertiesChecker), ThinkingAnalyticsUtilsTD_PropertiesCheckerWrap.__Register); - } - - static void wrapInit5(LuaEnv luaenv, ObjectTranslator translator) - { translator.DelayWrapLoader(typeof(ThinkingAnalytics.TaException.ThinkingSDKExceptionHandler), ThinkingAnalyticsTaExceptionThinkingSDKExceptionHandlerWrap.__Register); @@ -923,6 +959,10 @@ namespace XLua.CSObjectWrap translator.DelayWrapLoader(typeof(BF.NativeCore.ThirdPlatform.AppsFlyerSdk), BFNativeCoreThirdPlatformAppsFlyerSdkWrap.__Register); + } + + static void wrapInit6(LuaEnv luaenv, ObjectTranslator translator) + { translator.DelayWrapLoader(typeof(BF.NativeCore.ThirdPlatform.FacebookSdk), BFNativeCoreThirdPlatformFacebookSdkWrap.__Register); @@ -959,10 +999,6 @@ namespace XLua.CSObjectWrap translator.DelayWrapLoader(typeof(DG.Tweening.DOTweenCYInstruction.WaitForElapsedLoops), DGTweeningDOTweenCYInstructionWaitForElapsedLoopsWrap.__Register); - } - - static void wrapInit6(LuaEnv luaenv, ObjectTranslator translator) - { translator.DelayWrapLoader(typeof(DG.Tweening.DOTweenCYInstruction.WaitForPosition), DGTweeningDOTweenCYInstructionWaitForPositionWrap.__Register); @@ -1080,6 +1116,10 @@ namespace XLua.CSObjectWrap translator.DelayWrapLoader(typeof(UnityEngine.Camera.RenderRequestOutputSpace), UnityEngineCameraRenderRequestOutputSpaceWrap.__Register); + } + + static void wrapInit7(LuaEnv luaenv, ObjectTranslator translator) + { translator.DelayWrapLoader(typeof(UnityEngine.Camera.SceneViewFilterMode), UnityEngineCameraSceneViewFilterModeWrap.__Register); @@ -1116,10 +1156,6 @@ namespace XLua.CSObjectWrap translator.DelayWrapLoader(typeof(UnityEngine.Vector3), UnityEngineVector3Wrap.__Register); - } - - static void wrapInit7(LuaEnv luaenv, ObjectTranslator translator) - { translator.DelayWrapLoader(typeof(UnityEngine.Vector4), UnityEngineVector4Wrap.__Register); @@ -1237,6 +1273,10 @@ namespace XLua.CSObjectWrap translator.DelayWrapLoader(typeof(UnityEngine.ParticleSystem.SizeBySpeedModule), UnityEngineParticleSystemSizeBySpeedModuleWrap.__Register); + } + + static void wrapInit8(LuaEnv luaenv, ObjectTranslator translator) + { translator.DelayWrapLoader(typeof(UnityEngine.ParticleSystem.RotationBySpeedModule), UnityEngineParticleSystemRotationBySpeedModuleWrap.__Register); @@ -1273,10 +1313,6 @@ namespace XLua.CSObjectWrap translator.DelayWrapLoader(typeof(UnityEngine.ParticleSystem.MinMaxCurve), UnityEngineParticleSystemMinMaxCurveWrap.__Register); - } - - static void wrapInit8(LuaEnv luaenv, ObjectTranslator translator) - { translator.DelayWrapLoader(typeof(UnityEngine.ParticleSystem.Particle), UnityEngineParticleSystemParticleWrap.__Register); @@ -1394,6 +1430,10 @@ namespace XLua.CSObjectWrap translator.DelayWrapLoader(typeof(UnityEngine.Material), UnityEngineMaterialWrap.__Register); + } + + static void wrapInit9(LuaEnv luaenv, ObjectTranslator translator) + { translator.DelayWrapLoader(typeof(UnityEngine.MaterialPropertyBlock), UnityEngineMaterialPropertyBlockWrap.__Register); @@ -1430,10 +1470,6 @@ namespace XLua.CSObjectWrap translator.DelayWrapLoader(typeof(UnityEngine.LineRenderer), UnityEngineLineRendererWrap.__Register); - } - - static void wrapInit9(LuaEnv luaenv, ObjectTranslator translator) - { translator.DelayWrapLoader(typeof(UnityEngine.Texture2D), UnityEngineTexture2DWrap.__Register); @@ -1551,6 +1587,10 @@ namespace XLua.CSObjectWrap translator.DelayWrapLoader(typeof(UnityEngine.UI.Image.OriginHorizontal), UnityEngineUIImageOriginHorizontalWrap.__Register); + } + + static void wrapInit10(LuaEnv luaenv, ObjectTranslator translator) + { translator.DelayWrapLoader(typeof(UnityEngine.UI.Image.OriginVertical), UnityEngineUIImageOriginVerticalWrap.__Register); @@ -1587,10 +1627,6 @@ namespace XLua.CSObjectWrap translator.DelayWrapLoader(typeof(UnityEngine.UI.InputField.LineType), UnityEngineUIInputFieldLineTypeWrap.__Register); - } - - static void wrapInit10(LuaEnv luaenv, ObjectTranslator translator) - { translator.DelayWrapLoader(typeof(UnityEngine.UI.InputField.SubmitEvent), UnityEngineUIInputFieldSubmitEventWrap.__Register); @@ -1708,6 +1744,10 @@ namespace XLua.CSObjectWrap translator.DelayWrapLoader(typeof(Spine.AnimationStateData.AnimationPair), SpineAnimationStateDataAnimationPairWrap.__Register); + } + + static void wrapInit11(LuaEnv luaenv, ObjectTranslator translator) + { translator.DelayWrapLoader(typeof(Spine.AnimationStateData.AnimationPairComparer), SpineAnimationStateDataAnimationPairComparerWrap.__Register); @@ -1744,10 +1784,6 @@ namespace XLua.CSObjectWrap translator.DelayWrapLoader(typeof(Spine.Unity.BoneFollower.AxisOrientation), SpineUnityBoneFollowerAxisOrientationWrap.__Register); - } - - static void wrapInit11(LuaEnv luaenv, ObjectTranslator translator) - { translator.DelayWrapLoader(typeof(Spine.Unity.SkeletonGraphic.LayoutMode), SpineUnitySkeletonGraphicLayoutModeWrap.__Register); @@ -1865,6 +1901,10 @@ namespace XLua.CSObjectWrap translator.DelayWrapLoader(typeof(DG.Tweening.Core.TweenerCore), DGTweeningCoreTweenerCore_3_UnityEngineQuaternionUnityEngineVector3DGTweeningPluginsOptionsQuaternionOptions_Wrap.__Register); + } + + static void wrapInit12(LuaEnv luaenv, ObjectTranslator translator) + { translator.DelayWrapLoader(typeof(DG.Tweening.Core.TweenerCore), DGTweeningCoreTweenerCore_3_UnityEngineVector3DGTweeningPluginsCorePathCorePathDGTweeningPluginsOptionsPathOptions_Wrap.__Register); @@ -1901,10 +1941,6 @@ namespace XLua.CSObjectWrap translator.DelayWrapLoader(typeof(DG.Tweening.TweenSettingsExtensions), DGTweeningTweenSettingsExtensionsWrap.__Register); - } - - static void wrapInit12(LuaEnv luaenv, ObjectTranslator translator) - { translator.DelayWrapLoader(typeof(DG.Tweening.ShortcutExtensions), DGTweeningShortcutExtensionsWrap.__Register); diff --git a/Assets/XLua/Gen/com_adjust_sdk_AdjustUtilsWrap.cs b/Assets/XLua/Gen/com_adjust_sdk_AdjustUtilsWrap.cs index 0a27ea9b0..092500ebe 100644 --- a/Assets/XLua/Gen/com_adjust_sdk_AdjustUtilsWrap.cs +++ b/Assets/XLua/Gen/com_adjust_sdk_AdjustUtilsWrap.cs @@ -31,7 +31,7 @@ namespace XLua.CSObjectWrap Utils.EndObjectRegister(type, L, translator, null, null, null, null, null); - Utils.BeginClassRegister(type, L, __CreateInstance, 14, 37, 37); + Utils.BeginClassRegister(type, L, __CreateInstance, 15, 37, 37); Utils.RegisterFunc(L, Utils.CLS_IDX, "ConvertLogLevel", _m_ConvertLogLevel_xlua_st_); Utils.RegisterFunc(L, Utils.CLS_IDX, "ConvertBool", _m_ConvertBool_xlua_st_); Utils.RegisterFunc(L, Utils.CLS_IDX, "ConvertDouble", _m_ConvertDouble_xlua_st_); @@ -45,6 +45,7 @@ namespace XLua.CSObjectWrap Utils.RegisterFunc(L, Utils.CLS_IDX, "GetSkad4ConversionValue", _m_GetSkad4ConversionValue_xlua_st_); Utils.RegisterFunc(L, Utils.CLS_IDX, "GetSkad4CoarseValue", _m_GetSkad4CoarseValue_xlua_st_); Utils.RegisterFunc(L, Utils.CLS_IDX, "GetSkad4LockWindow", _m_GetSkad4LockWindow_xlua_st_); + Utils.RegisterFunc(L, Utils.CLS_IDX, "TestOptionsMap2AndroidJavaObject", _m_TestOptionsMap2AndroidJavaObject_xlua_st_); @@ -505,6 +506,34 @@ namespace XLua.CSObjectWrap } + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int _m_TestOptionsMap2AndroidJavaObject_xlua_st_(RealStatePtr L) + { + try { + + ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); + + + + + { + System.Collections.Generic.Dictionary _testOptionsMap = (System.Collections.Generic.Dictionary)translator.GetObject(L, 1, typeof(System.Collections.Generic.Dictionary)); + UnityEngine.AndroidJavaObject _ajoCurrentActivity = (UnityEngine.AndroidJavaObject)translator.GetObject(L, 2, typeof(UnityEngine.AndroidJavaObject)); + + var gen_ret = com.adjust.sdk.AdjustUtils.TestOptionsMap2AndroidJavaObject( _testOptionsMap, _ajoCurrentActivity ); + translator.Push(L, gen_ret); + + + + return 1; + } + + } catch(System.Exception gen_e) { + return LuaAPI.luaL_error(L, "c# exception:" + gen_e); + } + + } + diff --git a/Assets/XLua/Gen/link.xml b/Assets/XLua/Gen/link.xml index ac57abc97..f617e9d09 100644 --- a/Assets/XLua/Gen/link.xml +++ b/Assets/XLua/Gen/link.xml @@ -207,9 +207,12 @@ + + + @@ -221,11 +224,20 @@ + + + + + + + + + diff --git a/Assets/arts/shaders/models/CloudInclude.cginc.meta b/Assets/arts/shaders/models/CloudInclude.cginc.meta index cfbb3e5f3..eef79543c 100644 --- a/Assets/arts/shaders/models/CloudInclude.cginc.meta +++ b/Assets/arts/shaders/models/CloudInclude.cginc.meta @@ -3,5 +3,5 @@ guid: 84b68ec89e1638f449679d4c168e43a6 ShaderIncludeImporter: externalObjects: {} userData: - assetBundleName: + assetBundleName: arts/shaders.ab assetBundleVariant: diff --git a/Assets/arts/shaders/models/DiffuseInclude.cginc.meta b/Assets/arts/shaders/models/DiffuseInclude.cginc.meta index db387711b..79c7e2371 100644 --- a/Assets/arts/shaders/models/DiffuseInclude.cginc.meta +++ b/Assets/arts/shaders/models/DiffuseInclude.cginc.meta @@ -3,5 +3,5 @@ guid: 4f416cada7739734d9ee98e70ad6726d ShaderIncludeImporter: externalObjects: {} userData: - assetBundleName: + assetBundleName: arts/shaders.ab assetBundleVariant: diff --git a/Assets/arts/shaders/models/NoiseInclude.cginc.meta b/Assets/arts/shaders/models/NoiseInclude.cginc.meta index 74585f490..f9441aad3 100644 --- a/Assets/arts/shaders/models/NoiseInclude.cginc.meta +++ b/Assets/arts/shaders/models/NoiseInclude.cginc.meta @@ -3,5 +3,5 @@ guid: 66445eb8256774e4ea0f9bcce0bb55c2 ShaderIncludeImporter: externalObjects: {} userData: - assetBundleName: + assetBundleName: arts/shaders.ab assetBundleVariant: diff --git a/Assets/arts/shaders/models/PointLightInclude.cginc.meta b/Assets/arts/shaders/models/PointLightInclude.cginc.meta index dd85e45a9..cb6ff6e19 100644 --- a/Assets/arts/shaders/models/PointLightInclude.cginc.meta +++ b/Assets/arts/shaders/models/PointLightInclude.cginc.meta @@ -3,5 +3,5 @@ guid: 44ce92b5aac20644ca45289d47b75597 ShaderIncludeImporter: externalObjects: {} userData: - assetBundleName: + assetBundleName: arts/shaders.ab assetBundleVariant: diff --git a/Assets/arts/shaders/models/SideInclude.cginc.meta b/Assets/arts/shaders/models/SideInclude.cginc.meta index 17999c714..e04324770 100644 --- a/Assets/arts/shaders/models/SideInclude.cginc.meta +++ b/Assets/arts/shaders/models/SideInclude.cginc.meta @@ -3,5 +3,5 @@ guid: 9e2126c6e29322e4eade7d5358629402 ShaderIncludeImporter: externalObjects: {} userData: - assetBundleName: + assetBundleName: arts/shaders.ab assetBundleVariant: diff --git a/Assets/arts/shaders/spine/CGIncludes/Spine-BlendModes-NormalPass.cginc.meta b/Assets/arts/shaders/spine/CGIncludes/Spine-BlendModes-NormalPass.cginc.meta index ede1a61d9..305a6c33c 100644 --- a/Assets/arts/shaders/spine/CGIncludes/Spine-BlendModes-NormalPass.cginc.meta +++ b/Assets/arts/shaders/spine/CGIncludes/Spine-BlendModes-NormalPass.cginc.meta @@ -3,5 +3,5 @@ guid: 599ff43d19098534eb36d93e9e8a6aec ShaderIncludeImporter: externalObjects: {} userData: - assetBundleName: + assetBundleName: arts/shaders.ab assetBundleVariant: diff --git a/Assets/arts/shaders/spine/CGIncludes/Spine-BlendModes-ShadowCasterPass.cginc.meta b/Assets/arts/shaders/spine/CGIncludes/Spine-BlendModes-ShadowCasterPass.cginc.meta index 5efc7ef55..a3e6025ab 100644 --- a/Assets/arts/shaders/spine/CGIncludes/Spine-BlendModes-ShadowCasterPass.cginc.meta +++ b/Assets/arts/shaders/spine/CGIncludes/Spine-BlendModes-ShadowCasterPass.cginc.meta @@ -3,5 +3,5 @@ guid: 309b064c2d387a1488d017f7e22cee42 ShaderIncludeImporter: externalObjects: {} userData: - assetBundleName: + assetBundleName: arts/shaders.ab assetBundleVariant: diff --git a/Assets/arts/shaders/spine/CGIncludes/Spine-Common.cginc.meta b/Assets/arts/shaders/spine/CGIncludes/Spine-Common.cginc.meta index 7489ebc6c..08593c568 100644 --- a/Assets/arts/shaders/spine/CGIncludes/Spine-Common.cginc.meta +++ b/Assets/arts/shaders/spine/CGIncludes/Spine-Common.cginc.meta @@ -3,5 +3,5 @@ guid: 72d1b88bdb0c29540b8011cf9ceefbe9 ShaderIncludeImporter: externalObjects: {} userData: - assetBundleName: + assetBundleName: arts/shaders.ab assetBundleVariant: diff --git a/Assets/arts/shaders/spine/CGIncludes/Spine-DepthOnlyPass.cginc.meta b/Assets/arts/shaders/spine/CGIncludes/Spine-DepthOnlyPass.cginc.meta index 214293585..8c4aec846 100644 --- a/Assets/arts/shaders/spine/CGIncludes/Spine-DepthOnlyPass.cginc.meta +++ b/Assets/arts/shaders/spine/CGIncludes/Spine-DepthOnlyPass.cginc.meta @@ -3,5 +3,5 @@ guid: d3d44d78f31fe7f4a9627e1efac99df4 ShaderIncludeImporter: externalObjects: {} userData: - assetBundleName: + assetBundleName: arts/shaders.ab assetBundleVariant: diff --git a/Assets/arts/shaders/spine/CGIncludes/Spine-Outline-Common.cginc.meta b/Assets/arts/shaders/spine/CGIncludes/Spine-Outline-Common.cginc.meta index 641455a24..0dffffc69 100644 --- a/Assets/arts/shaders/spine/CGIncludes/Spine-Outline-Common.cginc.meta +++ b/Assets/arts/shaders/spine/CGIncludes/Spine-Outline-Common.cginc.meta @@ -3,5 +3,5 @@ guid: a962176ef0e36884bb5eac0dedfc1f37 ShaderIncludeImporter: externalObjects: {} userData: - assetBundleName: + assetBundleName: arts/shaders.ab assetBundleVariant: diff --git a/Assets/arts/shaders/spine/CGIncludes/Spine-Skeleton-Lit-Common-Shadow.cginc.meta b/Assets/arts/shaders/spine/CGIncludes/Spine-Skeleton-Lit-Common-Shadow.cginc.meta index c59d9cabe..9a4242046 100644 --- a/Assets/arts/shaders/spine/CGIncludes/Spine-Skeleton-Lit-Common-Shadow.cginc.meta +++ b/Assets/arts/shaders/spine/CGIncludes/Spine-Skeleton-Lit-Common-Shadow.cginc.meta @@ -3,5 +3,5 @@ guid: 4f2881d5f32941c478ab383dccf53760 ShaderIncludeImporter: externalObjects: {} userData: - assetBundleName: + assetBundleName: arts/shaders.ab assetBundleVariant: diff --git a/Assets/arts/shaders/spine/CGIncludes/Spine-Skeleton-Lit-Common.cginc.meta b/Assets/arts/shaders/spine/CGIncludes/Spine-Skeleton-Lit-Common.cginc.meta index 8510638f3..6dfcdc7aa 100644 --- a/Assets/arts/shaders/spine/CGIncludes/Spine-Skeleton-Lit-Common.cginc.meta +++ b/Assets/arts/shaders/spine/CGIncludes/Spine-Skeleton-Lit-Common.cginc.meta @@ -3,5 +3,5 @@ guid: 7c31a408e840b5441aff4c1e805281b9 ShaderIncludeImporter: externalObjects: {} userData: - assetBundleName: + assetBundleName: arts/shaders.ab assetBundleVariant: diff --git a/Assets/arts/shaders/spine/CGIncludes/Spine-Skeleton-Tint-Common.cginc.meta b/Assets/arts/shaders/spine/CGIncludes/Spine-Skeleton-Tint-Common.cginc.meta index f1816c6be..58e3e8a98 100644 --- a/Assets/arts/shaders/spine/CGIncludes/Spine-Skeleton-Tint-Common.cginc.meta +++ b/Assets/arts/shaders/spine/CGIncludes/Spine-Skeleton-Tint-Common.cginc.meta @@ -3,5 +3,5 @@ guid: 9f2dd1465d444e54a90ce0abd81d0f59 ShaderIncludeImporter: externalObjects: {} userData: - assetBundleName: + assetBundleName: arts/shaders.ab assetBundleVariant: diff --git a/Assets/arts/shaders/spine/SkeletonGraphic/CGIncludes/Spine-SkeletonGraphic-NormalPass.cginc.meta b/Assets/arts/shaders/spine/SkeletonGraphic/CGIncludes/Spine-SkeletonGraphic-NormalPass.cginc.meta index b297d955e..b0decede0 100644 --- a/Assets/arts/shaders/spine/SkeletonGraphic/CGIncludes/Spine-SkeletonGraphic-NormalPass.cginc.meta +++ b/Assets/arts/shaders/spine/SkeletonGraphic/CGIncludes/Spine-SkeletonGraphic-NormalPass.cginc.meta @@ -3,5 +3,5 @@ guid: 14051cff4859e9c4f8c3926a4d01488b ShaderIncludeImporter: externalObjects: {} userData: - assetBundleName: + assetBundleName: arts/shaders.ab assetBundleVariant: diff --git a/Assets/arts/shaders/text_mesh_pro/TMPro.cginc.meta b/Assets/arts/shaders/text_mesh_pro/TMPro.cginc.meta index 79c0e2237..4265f5bab 100644 --- a/Assets/arts/shaders/text_mesh_pro/TMPro.cginc.meta +++ b/Assets/arts/shaders/text_mesh_pro/TMPro.cginc.meta @@ -3,5 +3,5 @@ guid: 407bc68d299748449bbf7f48ee690f8d ShaderIncludeImporter: externalObjects: {} userData: - assetBundleName: + assetBundleName: arts/shaders.ab assetBundleVariant: diff --git a/Assets/arts/shaders/text_mesh_pro/TMPro_Mobile.cginc.meta b/Assets/arts/shaders/text_mesh_pro/TMPro_Mobile.cginc.meta index 7246ec305..d4a0deb95 100644 --- a/Assets/arts/shaders/text_mesh_pro/TMPro_Mobile.cginc.meta +++ b/Assets/arts/shaders/text_mesh_pro/TMPro_Mobile.cginc.meta @@ -3,5 +3,5 @@ guid: c334973cef89a9840b0b0c507e0377ab ShaderIncludeImporter: externalObjects: {} userData: - assetBundleName: + assetBundleName: arts/shaders.ab assetBundleVariant: diff --git a/Assets/arts/shaders/text_mesh_pro/TMPro_Properties.cginc.meta b/Assets/arts/shaders/text_mesh_pro/TMPro_Properties.cginc.meta index 873716a39..a43decc63 100644 --- a/Assets/arts/shaders/text_mesh_pro/TMPro_Properties.cginc.meta +++ b/Assets/arts/shaders/text_mesh_pro/TMPro_Properties.cginc.meta @@ -3,5 +3,5 @@ guid: 3997e2241185407d80309a82f9148466 ShaderIncludeImporter: externalObjects: {} userData: - assetBundleName: + assetBundleName: arts/shaders.ab assetBundleVariant: diff --git a/Assets/arts/shaders/text_mesh_pro/TMPro_Surface.cginc.meta b/Assets/arts/shaders/text_mesh_pro/TMPro_Surface.cginc.meta index 6a355625e..1d4870f0b 100644 --- a/Assets/arts/shaders/text_mesh_pro/TMPro_Surface.cginc.meta +++ b/Assets/arts/shaders/text_mesh_pro/TMPro_Surface.cginc.meta @@ -3,5 +3,5 @@ guid: d930090c0cd643c7b55f19a38538c162 ShaderIncludeImporter: externalObjects: {} userData: - assetBundleName: + assetBundleName: arts/shaders.ab assetBundleVariant: diff --git a/Assets/arts/spines/characters/m20040.meta b/Assets/arts/spines/characters/m20040.meta deleted file mode 100644 index 5b5d0f342..000000000 --- a/Assets/arts/spines/characters/m20040.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: a23daad62d5f5db479cc3394ee62105b -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/arts/spines/characters/m20040/m20040.atlas.txt b/Assets/arts/spines/characters/m20040/m20040.atlas.txt deleted file mode 100644 index 85f4c19b1..000000000 --- a/Assets/arts/spines/characters/m20040/m20040.atlas.txt +++ /dev/null @@ -1,92 +0,0 @@ -m20040.png -size:1024,1024 -filter:Linear,Linear -duyan_01 -bounds:110,197,38,25 -offsets:1,1,40,27 -rotate:90 -duyan_02 -bounds:2,237,145,183 -duyan_03 -bounds:775,905,62,93 -eye_l -bounds:249,405,14,15 -offsets:1,1,16,17 -eye_r -bounds:456,606,14,14 -offsets:1,1,16,16 -eye_xuanyun -bounds:149,239,20,20 -gutou -bounds:678,822,70,53 -gutou_01 -bounds:580,704,51,45 -offsets:1,1,53,47 -gutou_02 -bounds:896,954,51,44 -offsets:1,1,53,46 -gutou_03 -bounds:2,14,55,47 -offsets:1,1,57,49 -hand_l -bounds:949,956,42,49 -offsets:1,1,44,51 -rotate:90 -hand_r -bounds:2,63,85,67 -offsets:1,1,87,69 -head -bounds:149,339,98,81 -offsets:1,1,100,83 -hit_yan1 -bounds:89,112,16,18 -hit_yan2 -bounds:227,317,20,20 -hongdeng -bounds:580,877,193,121 -jiao -bounds:334,525,37,55 -offsets:1,1,39,57 -kulou -bounds:580,751,77,62 -offsets:0,1,77,63 -leg -bounds:2,422,262,158 -maozi_01 -bounds:456,622,75,70 -offsets:1,1,77,72 -maozi_02 -bounds:839,937,55,61 -offsets:1,1,57,63 -maozi_03 -bounds:2,132,106,103 -pelvis -bounds:266,427,153,66 -rotate:90 -shouhuan -bounds:580,815,96,60 -offsets:1,1,98,62 -spine -bounds:374,845,204,153 -upperarm_l_01 -bounds:149,261,76,76 -offsets:1,1,78,78 -upperarm_r_01 -bounds:149,261,76,76 -offsets:1,1,78,78 -upperarm_l_02 -bounds:374,595,80,97 -offsets:1,1,82,99 -upperarm_r_02 -bounds:374,595,80,97 -offsets:1,1,82,99 -weapon_1 -bounds:374,694,177,149 -xuying -bounds:2,582,370,416 -yinying -bounds:553,702,141,25 -rotate:90 -zui -bounds:775,879,38,24 -offsets:1,1,40,26 diff --git a/Assets/arts/spines/characters/m20040/m20040.atlas.txt.meta b/Assets/arts/spines/characters/m20040/m20040.atlas.txt.meta deleted file mode 100644 index 5ee891535..000000000 --- a/Assets/arts/spines/characters/m20040/m20040.atlas.txt.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: f5bfa3c333d90264fb5b48450fb60130 -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/characters/m20040.ab - assetBundleVariant: diff --git a/Assets/arts/spines/characters/m20040/m20040.png b/Assets/arts/spines/characters/m20040/m20040.png deleted file mode 100644 index 8515544c7..000000000 Binary files a/Assets/arts/spines/characters/m20040/m20040.png and /dev/null differ diff --git a/Assets/arts/spines/characters/m20040/m20040.png.meta b/Assets/arts/spines/characters/m20040/m20040.png.meta deleted file mode 100644 index d317447c9..000000000 --- a/Assets/arts/spines/characters/m20040/m20040.png.meta +++ /dev/null @@ -1,147 +0,0 @@ -fileFormatVersion: 2 -guid: b2e77eed82acc624794501e819f45019 -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 1 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 0 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 0 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 47 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 1 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 50 - textureCompression: 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 - - serializedVersion: 3 - buildTarget: Server - 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: [] - nameFileIdTable: {} - spritePackingTag: - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: arts/spines/characters/m20040.ab - assetBundleVariant: diff --git a/Assets/arts/spines/characters/m20040/m20040.skel.bytes b/Assets/arts/spines/characters/m20040/m20040.skel.bytes deleted file mode 100644 index 0c0459ef3..000000000 Binary files a/Assets/arts/spines/characters/m20040/m20040.skel.bytes and /dev/null differ diff --git a/Assets/arts/spines/characters/m20040/m20040.skel.bytes.meta b/Assets/arts/spines/characters/m20040/m20040.skel.bytes.meta deleted file mode 100644 index 288477c24..000000000 --- a/Assets/arts/spines/characters/m20040/m20040.skel.bytes.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: fef5f5cb678dc6344b31331409952eb2 -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/characters/m20040.ab - assetBundleVariant: diff --git a/Assets/arts/spines/characters/m20040/m20040_atlas.asset b/Assets/arts/spines/characters/m20040/m20040_atlas.asset deleted file mode 100644 index fafabf190..000000000 --- a/Assets/arts/spines/characters/m20040/m20040_atlas.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: a6b194f808b1af6499c93410e504af42, type: 3} - m_Name: m20040_atlas - m_EditorClassIdentifier: - textureLoadingMode: 0 - onDemandTextureLoader: {fileID: 0} - atlasFile: {fileID: 4900000, guid: f5bfa3c333d90264fb5b48450fb60130, type: 3} - materials: - - {fileID: 2100000, guid: fd8cc391c3df03346be006f2892229d1, type: 2} diff --git a/Assets/arts/spines/characters/m20040/m20040_atlas.asset.meta b/Assets/arts/spines/characters/m20040/m20040_atlas.asset.meta deleted file mode 100644 index 3d28df6ae..000000000 --- a/Assets/arts/spines/characters/m20040/m20040_atlas.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 7eff5baeeeb6c0648b030a3eb45f7c46 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/characters/m20040.ab - assetBundleVariant: diff --git a/Assets/arts/spines/characters/m20040/m20040_material.mat b/Assets/arts/spines/characters/m20040/m20040_material.mat deleted file mode 100644 index 81a6e061d..000000000 --- a/Assets/arts/spines/characters/m20040/m20040_material.mat +++ /dev/null @@ -1,44 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!21 &2100000 -Material: - serializedVersion: 8 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: m20040_material - m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3} - m_ValidKeywords: - - _STRAIGHT_ALPHA_INPUT - m_InvalidKeywords: - - _USE8NEIGHBOURHOOD_ON - m_LightmapFlags: 4 - m_EnableInstancingVariants: 0 - m_DoubleSidedGI: 0 - m_CustomRenderQueue: -1 - stringTagMap: {} - disabledShaderPasses: [] - m_SavedProperties: - serializedVersion: 3 - m_TexEnvs: - - _MainTex: - m_Texture: {fileID: 2800000, guid: b2e77eed82acc624794501e819f45019, type: 3} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - m_Ints: [] - m_Floats: - - _Cutoff: 0.1 - - _OutlineMipLevel: 0 - - _OutlineOpaqueAlpha: 1 - - _OutlineReferenceTexWidth: 1024 - - _OutlineSmoothness: 1 - - _OutlineWidth: 3 - - _StencilComp: 8 - - _StencilRef: 1 - - _StraightAlphaInput: 1 - - _ThresholdEnd: 0.25 - - _Use8Neighbourhood: 1 - m_Colors: - - _OutlineColor: {r: 1, g: 1, b: 0, a: 1} - m_BuildTextureStacks: [] diff --git a/Assets/arts/spines/characters/m20040/m20040_material.mat.meta b/Assets/arts/spines/characters/m20040/m20040_material.mat.meta deleted file mode 100644 index e61dcf35a..000000000 --- a/Assets/arts/spines/characters/m20040/m20040_material.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: fd8cc391c3df03346be006f2892229d1 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 2100000 - userData: - assetBundleName: arts/spines/characters/m20040.ab - assetBundleVariant: diff --git a/Assets/arts/spines/characters/m20040/m20040_skeletondata.asset b/Assets/arts/spines/characters/m20040/m20040_skeletondata.asset deleted file mode 100644 index cc95ef937..000000000 --- a/Assets/arts/spines/characters/m20040/m20040_skeletondata.asset +++ /dev/null @@ -1,31 +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: f1b3b4b945939a54ea0b23d3396115fb, type: 3} - m_Name: m20040_skeletondata - m_EditorClassIdentifier: - atlasAssets: - - {fileID: 11400000, guid: 7eff5baeeeb6c0648b030a3eb45f7c46, type: 2} - scale: 0.01 - skeletonJSON: {fileID: 4900000, guid: fef5f5cb678dc6344b31331409952eb2, type: 3} - isUpgradingBlendModeMaterials: 0 - blendModeMaterials: - requiresBlendModeMaterials: 0 - applyAdditiveMaterial: 0 - additiveMaterials: [] - multiplyMaterials: [] - screenMaterials: [] - skeletonDataModifiers: [] - fromAnimation: [] - toAnimation: [] - duration: [] - defaultMix: 0.2 - controller: {fileID: 0} diff --git a/Assets/arts/spines/characters/m20040/m20040_skeletondata.asset.meta b/Assets/arts/spines/characters/m20040/m20040_skeletondata.asset.meta deleted file mode 100644 index 8afddc283..000000000 --- a/Assets/arts/spines/characters/m20040/m20040_skeletondata.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: e804ab7900f59b447bec32014de07cd5 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/characters/m20040.ab - assetBundleVariant: diff --git a/Assets/arts/spines/characters/p0014.meta b/Assets/arts/spines/characters/p0014.meta deleted file mode 100644 index 360437732..000000000 --- a/Assets/arts/spines/characters/p0014.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: f5f0da976a668a545ac485937105a5cb -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/arts/spines/characters/p0014/p0014.atlas.txt b/Assets/arts/spines/characters/p0014/p0014.atlas.txt deleted file mode 100644 index 40fac889d..000000000 --- a/Assets/arts/spines/characters/p0014/p0014.atlas.txt +++ /dev/null @@ -1,62 +0,0 @@ -p0014.png -size:512,512 -filter:Linear,Linear -bin_1 -bounds:259,321,14,52 -bin_2 -bounds:244,415,15,52 -rotate:90 -canying -bounds:2,264,161,144 -offsets:0,0,162,147 -eye_L -bounds:139,151,9,20 -rotate:90 -eye_R -bounds:254,276,9,20 -rotate:90 -eye_xuanyun -bounds:275,323,22,22 -gutou -bounds:89,69,70,53 -rotate:90 -hand_L -bounds:259,375,35,38 -head_2 -bounds:337,441,88,69 -head_3 -bounds:244,432,91,78 -hit_yan1 -bounds:192,250,16,18 -hit_yan2 -bounds:170,245,20,20 -kulou -bounds:427,448,77,62 -offsets:0,1,77,63 -leg_L -bounds:192,270,49,60 -rotate:90 -leg_R -bounds:95,7,49,60 -mao -bounds:275,347,20,26 -spine_1 -bounds:192,321,65,87 -spine_2 -bounds:2,141,135,121 -spine_3 -bounds:2,56,85,83 -spine_4 -bounds:2,2,91,52 -upperarm_L_01 -bounds:139,208,54,29 -rotate:90 -upperarm_L_02 -bounds:139,162,32,44 -weapon_1 -bounds:2,410,240,100 -yinying -bounds:165,267,141,25 -rotate:90 -zui -bounds:254,287,24,32 diff --git a/Assets/arts/spines/characters/p0014/p0014.atlas.txt.meta b/Assets/arts/spines/characters/p0014/p0014.atlas.txt.meta deleted file mode 100644 index 8736f1da8..000000000 --- a/Assets/arts/spines/characters/p0014/p0014.atlas.txt.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: c6c24d6c3bb3b5846bcc2ec3d428f1f8 -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/characters/p0014.ab - assetBundleVariant: diff --git a/Assets/arts/spines/characters/p0014/p0014.png b/Assets/arts/spines/characters/p0014/p0014.png deleted file mode 100644 index 5dd24a366..000000000 Binary files a/Assets/arts/spines/characters/p0014/p0014.png and /dev/null differ diff --git a/Assets/arts/spines/characters/p0014/p0014.png.meta b/Assets/arts/spines/characters/p0014/p0014.png.meta deleted file mode 100644 index fbf3b1ecd..000000000 --- a/Assets/arts/spines/characters/p0014/p0014.png.meta +++ /dev/null @@ -1,147 +0,0 @@ -fileFormatVersion: 2 -guid: ec87b55daaae1134e9f4b5b53d4029f8 -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 1 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 0 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 0 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 47 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 1 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 50 - textureCompression: 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 - - serializedVersion: 3 - buildTarget: Server - 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: [] - nameFileIdTable: {} - spritePackingTag: - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: arts/spines/characters/p0014.ab - assetBundleVariant: diff --git a/Assets/arts/spines/characters/p0014/p0014.skel.bytes b/Assets/arts/spines/characters/p0014/p0014.skel.bytes deleted file mode 100644 index e5feb9d53..000000000 Binary files a/Assets/arts/spines/characters/p0014/p0014.skel.bytes and /dev/null differ diff --git a/Assets/arts/spines/characters/p0014/p0014.skel.bytes.meta b/Assets/arts/spines/characters/p0014/p0014.skel.bytes.meta deleted file mode 100644 index 5f37b8765..000000000 --- a/Assets/arts/spines/characters/p0014/p0014.skel.bytes.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 96db85867217e5d4093c872d5d805855 -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/characters/p0014.ab - assetBundleVariant: diff --git a/Assets/arts/spines/characters/p0014/p0014_atlas.asset b/Assets/arts/spines/characters/p0014/p0014_atlas.asset deleted file mode 100644 index be11edc6b..000000000 --- a/Assets/arts/spines/characters/p0014/p0014_atlas.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: a6b194f808b1af6499c93410e504af42, type: 3} - m_Name: p0014_atlas - m_EditorClassIdentifier: - textureLoadingMode: 0 - onDemandTextureLoader: {fileID: 0} - atlasFile: {fileID: 4900000, guid: c6c24d6c3bb3b5846bcc2ec3d428f1f8, type: 3} - materials: - - {fileID: 2100000, guid: 43341564b1a11584a824f8271be90332, type: 2} diff --git a/Assets/arts/spines/characters/p0014/p0014_atlas.asset.meta b/Assets/arts/spines/characters/p0014/p0014_atlas.asset.meta deleted file mode 100644 index 788cbef65..000000000 --- a/Assets/arts/spines/characters/p0014/p0014_atlas.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: ab56324d8f59d854689fad5314afb463 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/characters/p0014.ab - assetBundleVariant: diff --git a/Assets/arts/spines/characters/p0014/p0014_material.mat b/Assets/arts/spines/characters/p0014/p0014_material.mat deleted file mode 100644 index 0c07231e2..000000000 --- a/Assets/arts/spines/characters/p0014/p0014_material.mat +++ /dev/null @@ -1,44 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!21 &2100000 -Material: - serializedVersion: 8 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: p0014_material - m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3} - m_ValidKeywords: - - _STRAIGHT_ALPHA_INPUT - m_InvalidKeywords: - - _USE8NEIGHBOURHOOD_ON - m_LightmapFlags: 4 - m_EnableInstancingVariants: 0 - m_DoubleSidedGI: 0 - m_CustomRenderQueue: -1 - stringTagMap: {} - disabledShaderPasses: [] - m_SavedProperties: - serializedVersion: 3 - m_TexEnvs: - - _MainTex: - m_Texture: {fileID: 2800000, guid: ec87b55daaae1134e9f4b5b53d4029f8, type: 3} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - m_Ints: [] - m_Floats: - - _Cutoff: 0.1 - - _OutlineMipLevel: 0 - - _OutlineOpaqueAlpha: 1 - - _OutlineReferenceTexWidth: 1024 - - _OutlineSmoothness: 1 - - _OutlineWidth: 3 - - _StencilComp: 8 - - _StencilRef: 1 - - _StraightAlphaInput: 1 - - _ThresholdEnd: 0.25 - - _Use8Neighbourhood: 1 - m_Colors: - - _OutlineColor: {r: 1, g: 1, b: 0, a: 1} - m_BuildTextureStacks: [] diff --git a/Assets/arts/spines/characters/p0014/p0014_material.mat.meta b/Assets/arts/spines/characters/p0014/p0014_material.mat.meta deleted file mode 100644 index 236cfe5d5..000000000 --- a/Assets/arts/spines/characters/p0014/p0014_material.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 43341564b1a11584a824f8271be90332 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 2100000 - userData: - assetBundleName: arts/spines/characters/p0014.ab - assetBundleVariant: diff --git a/Assets/arts/spines/characters/p0014/p0014_skeletondata.asset b/Assets/arts/spines/characters/p0014/p0014_skeletondata.asset deleted file mode 100644 index ee369d5d2..000000000 --- a/Assets/arts/spines/characters/p0014/p0014_skeletondata.asset +++ /dev/null @@ -1,31 +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: f1b3b4b945939a54ea0b23d3396115fb, type: 3} - m_Name: p0014_skeletondata - m_EditorClassIdentifier: - atlasAssets: - - {fileID: 11400000, guid: ab56324d8f59d854689fad5314afb463, type: 2} - scale: 0.01 - skeletonJSON: {fileID: 4900000, guid: 96db85867217e5d4093c872d5d805855, type: 3} - isUpgradingBlendModeMaterials: 0 - blendModeMaterials: - requiresBlendModeMaterials: 0 - applyAdditiveMaterial: 0 - additiveMaterials: [] - multiplyMaterials: [] - screenMaterials: [] - skeletonDataModifiers: [] - fromAnimation: [] - toAnimation: [] - duration: [] - defaultMix: 0.2 - controller: {fileID: 0} diff --git a/Assets/arts/spines/characters/p0014/p0014_skeletondata.asset.meta b/Assets/arts/spines/characters/p0014/p0014_skeletondata.asset.meta deleted file mode 100644 index d57811136..000000000 --- a/Assets/arts/spines/characters/p0014/p0014_skeletondata.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 660a6f5b1eca1c44ead611004d0cc798 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/characters/p0014.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/arena_match_ui.meta b/Assets/arts/spines/ui/arena_match_ui.meta deleted file mode 100644 index 913310e03..000000000 --- a/Assets/arts/spines/ui/arena_match_ui.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 93c1c95df7257e6419c603cda2b05881 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/arts/spines/ui/arena_match_ui/arena_match_ui.atlas.txt b/Assets/arts/spines/ui/arena_match_ui/arena_match_ui.atlas.txt deleted file mode 100644 index e01bad406..000000000 --- a/Assets/arts/spines/ui/arena_match_ui/arena_match_ui.atlas.txt +++ /dev/null @@ -1,17 +0,0 @@ -arena_match_ui.png -size:1024,1024 -filter:Linear,Linear -g1 -bounds:2,653,969,318 -offsets:15,211,1049,570 -g2 -bounds:421,268,422,383 -offsets:56,64,535,510 -g3 -bounds:2,191,417,460 -offsets:82,8,508,479 -s -bounds:421,201,65,89 -rotate:90 -v -bounds:2,97,79,92 diff --git a/Assets/arts/spines/ui/arena_match_ui/arena_match_ui.atlas.txt.meta b/Assets/arts/spines/ui/arena_match_ui/arena_match_ui.atlas.txt.meta deleted file mode 100644 index dc8ba7293..000000000 --- a/Assets/arts/spines/ui/arena_match_ui/arena_match_ui.atlas.txt.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 9548aa6d33e51104c9bb7aa9acc07bcd -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/arena_match_ui.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/arena_match_ui/arena_match_ui.png b/Assets/arts/spines/ui/arena_match_ui/arena_match_ui.png deleted file mode 100644 index b91060441..000000000 Binary files a/Assets/arts/spines/ui/arena_match_ui/arena_match_ui.png and /dev/null differ diff --git a/Assets/arts/spines/ui/arena_match_ui/arena_match_ui.png.meta b/Assets/arts/spines/ui/arena_match_ui/arena_match_ui.png.meta deleted file mode 100644 index 2ad00723a..000000000 --- a/Assets/arts/spines/ui/arena_match_ui/arena_match_ui.png.meta +++ /dev/null @@ -1,147 +0,0 @@ -fileFormatVersion: 2 -guid: dad0f0055f3bbc441a71c65ec488d6f2 -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 1 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 0 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 0 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 47 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 1 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 50 - textureCompression: 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 - - serializedVersion: 3 - buildTarget: Server - 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: [] - nameFileIdTable: {} - spritePackingTag: - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: arts/spines/ui/arena_match_ui.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/arena_match_ui/arena_match_ui.skel.bytes b/Assets/arts/spines/ui/arena_match_ui/arena_match_ui.skel.bytes deleted file mode 100644 index d6721f8e9..000000000 Binary files a/Assets/arts/spines/ui/arena_match_ui/arena_match_ui.skel.bytes and /dev/null differ diff --git a/Assets/arts/spines/ui/arena_match_ui/arena_match_ui.skel.bytes.meta b/Assets/arts/spines/ui/arena_match_ui/arena_match_ui.skel.bytes.meta deleted file mode 100644 index 93dcd5235..000000000 --- a/Assets/arts/spines/ui/arena_match_ui/arena_match_ui.skel.bytes.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 3594819bd96497944bed31b34de01a1f -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/arena_match_ui.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/arena_match_ui/arena_match_ui_atlas.asset b/Assets/arts/spines/ui/arena_match_ui/arena_match_ui_atlas.asset deleted file mode 100644 index a3cac4830..000000000 --- a/Assets/arts/spines/ui/arena_match_ui/arena_match_ui_atlas.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: a6b194f808b1af6499c93410e504af42, type: 3} - m_Name: arena_match_ui_atlas - m_EditorClassIdentifier: - textureLoadingMode: 0 - onDemandTextureLoader: {fileID: 0} - atlasFile: {fileID: 4900000, guid: 9548aa6d33e51104c9bb7aa9acc07bcd, type: 3} - materials: - - {fileID: 2100000, guid: 9820039cc204d35498810d37809a8b90, type: 2} diff --git a/Assets/arts/spines/ui/arena_match_ui/arena_match_ui_atlas.asset.meta b/Assets/arts/spines/ui/arena_match_ui/arena_match_ui_atlas.asset.meta deleted file mode 100644 index 1a875a6fc..000000000 --- a/Assets/arts/spines/ui/arena_match_ui/arena_match_ui_atlas.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: b5bfa8da19d759345828a2fee92b03b3 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/arena_match_ui.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/arena_match_ui/arena_match_ui_material.mat b/Assets/arts/spines/ui/arena_match_ui/arena_match_ui_material.mat deleted file mode 100644 index aed284443..000000000 --- a/Assets/arts/spines/ui/arena_match_ui/arena_match_ui_material.mat +++ /dev/null @@ -1,44 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!21 &2100000 -Material: - serializedVersion: 8 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: arena_match_ui_material - m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3} - m_ValidKeywords: - - _STRAIGHT_ALPHA_INPUT - m_InvalidKeywords: - - _USE8NEIGHBOURHOOD_ON - m_LightmapFlags: 4 - m_EnableInstancingVariants: 0 - m_DoubleSidedGI: 0 - m_CustomRenderQueue: -1 - stringTagMap: {} - disabledShaderPasses: [] - m_SavedProperties: - serializedVersion: 3 - m_TexEnvs: - - _MainTex: - m_Texture: {fileID: 2800000, guid: dad0f0055f3bbc441a71c65ec488d6f2, type: 3} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - m_Ints: [] - m_Floats: - - _Cutoff: 0.1 - - _OutlineMipLevel: 0 - - _OutlineOpaqueAlpha: 1 - - _OutlineReferenceTexWidth: 1024 - - _OutlineSmoothness: 1 - - _OutlineWidth: 3 - - _StencilComp: 8 - - _StencilRef: 1 - - _StraightAlphaInput: 1 - - _ThresholdEnd: 0.25 - - _Use8Neighbourhood: 1 - m_Colors: - - _OutlineColor: {r: 1, g: 1, b: 0, a: 1} - m_BuildTextureStacks: [] diff --git a/Assets/arts/spines/ui/arena_match_ui/arena_match_ui_material.mat.meta b/Assets/arts/spines/ui/arena_match_ui/arena_match_ui_material.mat.meta deleted file mode 100644 index efa90a596..000000000 --- a/Assets/arts/spines/ui/arena_match_ui/arena_match_ui_material.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 9820039cc204d35498810d37809a8b90 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 2100000 - userData: - assetBundleName: arts/spines/ui/arena_match_ui.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/arena_match_ui/arena_match_ui_skeletondata.asset b/Assets/arts/spines/ui/arena_match_ui/arena_match_ui_skeletondata.asset deleted file mode 100644 index a398c4a1e..000000000 --- a/Assets/arts/spines/ui/arena_match_ui/arena_match_ui_skeletondata.asset +++ /dev/null @@ -1,31 +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: f1b3b4b945939a54ea0b23d3396115fb, type: 3} - m_Name: arena_match_ui_skeletondata - m_EditorClassIdentifier: - atlasAssets: - - {fileID: 11400000, guid: b5bfa8da19d759345828a2fee92b03b3, type: 2} - scale: 0.01 - skeletonJSON: {fileID: 4900000, guid: 3594819bd96497944bed31b34de01a1f, type: 3} - isUpgradingBlendModeMaterials: 0 - blendModeMaterials: - requiresBlendModeMaterials: 0 - applyAdditiveMaterial: 0 - additiveMaterials: [] - multiplyMaterials: [] - screenMaterials: [] - skeletonDataModifiers: [] - fromAnimation: [] - toAnimation: [] - duration: [] - defaultMix: 0.2 - controller: {fileID: 0} diff --git a/Assets/arts/spines/ui/arena_match_ui/arena_match_ui_skeletondata.asset.meta b/Assets/arts/spines/ui/arena_match_ui/arena_match_ui_skeletondata.asset.meta deleted file mode 100644 index 4dbe1df6c..000000000 --- a/Assets/arts/spines/ui/arena_match_ui/arena_match_ui_skeletondata.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 419494b3c6c7e3345999c4c80874171b -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/arena_match_ui.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_boss_rush_pop.meta b/Assets/arts/spines/ui/ui_act_boss_rush_pop.meta deleted file mode 100644 index d28e08875..000000000 --- a/Assets/arts/spines/ui/ui_act_boss_rush_pop.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: ee610d3f00cd8c544a6308bb20f60631 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_boss_rush_pop/ui_act_boss_rush_pop.atlas.txt b/Assets/arts/spines/ui/ui_act_boss_rush_pop/ui_act_boss_rush_pop.atlas.txt deleted file mode 100644 index dd76cd5da..000000000 --- a/Assets/arts/spines/ui/ui_act_boss_rush_pop/ui_act_boss_rush_pop.atlas.txt +++ /dev/null @@ -1,219 +0,0 @@ -ui_act_boss_rush_pop.png -size:2048,2048 -filter:Linear,Linear -Combined Powerful Flash FX Pack 28 Color/1_00000 -bounds:431,826,188,120 -offsets:49,26,300,169 -Combined Powerful Flash FX Pack 28 Color/1_00001 -bounds:425,704,188,120 -offsets:49,26,300,169 -Combined Powerful Flash FX Pack 28 Color/1_00002 -bounds:1090,1780,192,116 -offsets:46,28,300,169 -Combined Powerful Flash FX Pack 28 Color/1_00003 -bounds:227,603,192,117 -offsets:45,26,300,169 -Combined Powerful Flash FX Pack 28 Color/1_00004 -bounds:2,4,183,123 -offsets:46,25,300,169 -rotate:90 -Combined Powerful Flash FX Pack 28 Color/1_00005 -bounds:852,1412,177,123 -offsets:46,22,300,169 -Combined Powerful Flash FX Pack 28 Color/1_00006 -bounds:852,1293,178,117 -offsets:46,22,300,169 -Combined Powerful Flash FX Pack 28 Color/1_00007 -bounds:868,1537,183,117 -offsets:44,23,300,169 -Combined Powerful Flash FX Pack 28 Color/1_00008 -bounds:421,585,187,117 -offsets:45,23,300,169 -Combined Powerful Flash FX Pack 28 Color/1_00009 -bounds:1713,1925,189,121 -offsets:45,22,300,169 -Combined Powerful Flash FX Pack 28 Color/1_00010 -bounds:2,189,194,120 -offsets:46,23,300,169 -rotate:90 -Combined Powerful Flash FX Pack 28 Color/1_00011 -bounds:227,722,196,136 -offsets:46,23,300,169 -fu_1 -bounds:641,954,89,109 -offsets:1,1,92,111 -fu_10 -bounds:155,388,36,32 -offsets:1,1,38,34 -fu_11 -bounds:416,488,168,95 -offsets:1,1,170,97 -fu_12 -bounds:1053,1683,168,95 -offsets:1,1,170,97 -fu_13 -bounds:1090,1898,254,148 -offsets:1,1,258,151 -fu_14 -bounds:690,1563,176,231 -offsets:2,1,196,249 -fu_15 -bounds:2,385,151,241 -offsets:2,1,154,247 -fu_2 -bounds:1581,1802,90,111 -offsets:2,1,93,113 -fu_3 -bounds:1284,1753,143,71 -offsets:1,1,145,73 -rotate:90 -fu_4 -bounds:325,442,159,89 -offsets:1,1,161,91 -rotate:90 -fu_5 -bounds:1904,1921,138,125 -offsets:1,1,140,127 -fu_6 -bounds:1053,1556,138,125 -offsets:1,1,140,127 -fu_7 -bounds:124,189,42,39 -offsets:1,1,44,41 -fu_8 -bounds:124,330,53,30 -offsets:1,1,55,32 -rotate:90 -fu_9 -bounds:681,1217,26,24 -offsets:1,1,28,26 -guang_1 -bounds:155,422,204,42 -offsets:5,2,210,45 -rotate:90 -guang_2 -bounds:868,1656,183,138 -offsets:5,1,189,142 -guang_3 -bounds:806,1302,259,44 -offsets:1,1,263,46 -rotate:90 -guang_4 -bounds:2,628,223,230 -offsets:1,1,230,235 -guang_5 -bounds:690,1270,291,77 -offsets:2,1,294,79 -rotate:90 -lian_1 -bounds:1844,1869,54,58 -rotate:90 -lian_1_1 -bounds:127,141,46,46 -lian_2 -bounds:1223,1720,54,58 -lian_2_1 -bounds:124,280,48,48 -lian_3 -bounds:1972,1861,54,58 -lian_3_1 -bounds:124,230,48,48 -long_1 -bounds:127,100,41,39 -offsets:1,1,43,41 -long_10 -bounds:431,1065,248,176 -long_13 -bounds:431,948,115,208 -rotate:90 -long_15 -bounds:2,860,427,381 -long_16 -bounds:1476,1777,103,128 -offsets:1,1,105,130 -long_18 -bounds:199,443,124,158 -long_2 -bounds:690,1243,25,34 -offsets:1,1,28,36 -rotate:90 -long_20 -bounds:1346,1907,180,139 -long_21 -bounds:1528,1915,183,131 -long_3 -bounds:1357,1755,24,21 -offsets:1,1,26,23 -long_4 -bounds:1193,1659,28,22 -offsets:1,1,30,24 -long_5 -bounds:416,380,148,106 -offsets:1,1,150,109 -long_6 -bounds:1742,1846,100,77 -offsets:1,1,102,79 -long_7 -bounds:1742,1774,70,85 -offsets:1,1,73,87 -rotate:90 -long_8 -bounds:1357,1778,117,127 -offsets:1,1,119,129 -long_9 -bounds:1673,1809,67,104 -offsets:1,1,70,106 -pingmu -bounds:690,1796,398,250 -xian_1 -bounds:199,434,68,7 -offsets:1,1,70,9 -xian_10 -bounds:621,858,88,3 -offsets:1,1,90,5 -rotate:90 -xian_9 -bounds:621,858,88,3 -offsets:1,1,90,5 -rotate:90 -xian_2 -bounds:769,1277,28,7 -offsets:1,1,30,9 -xian_3 -bounds:615,764,60,4 -offsets:1,1,62,6 -rotate:90 -xian_4 -bounds:1031,1465,70,7 -offsets:1,1,72,9 -rotate:90 -xian_5 -bounds:425,828,30,4 -offsets:1,1,32,6 -rotate:90 -xian_6 -bounds:586,536,47,4 -offsets:1,1,49,6 -rotate:90 -xian_7 -bounds:1053,1552,128,2 -offsets:1,1,130,4 -xian_8 -bounds:2044,1738,308,2 -offsets:1,1,310,4 -rotate:90 -xiaoguo_1 -bounds:769,1286,275,35 -offsets:1,1,277,37 -rotate:90 -yaogan_1 -bounds:1904,1853,66,66 -offsets:1,1,68,68 -yaogan_2 -bounds:1223,1681,37,50 -rotate:90 -youxiji -bounds:2,1243,686,803 -offsets:7,5,700,813 -youxiji_1 -bounds:199,606,26,20 diff --git a/Assets/arts/spines/ui/ui_act_boss_rush_pop/ui_act_boss_rush_pop.atlas.txt.meta b/Assets/arts/spines/ui/ui_act_boss_rush_pop/ui_act_boss_rush_pop.atlas.txt.meta deleted file mode 100644 index 7d1c523cd..000000000 --- a/Assets/arts/spines/ui/ui_act_boss_rush_pop/ui_act_boss_rush_pop.atlas.txt.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 8f4885c066060b44fa9c2ce5531a7737 -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_act_boss_rush_pop.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_boss_rush_pop/ui_act_boss_rush_pop.png b/Assets/arts/spines/ui/ui_act_boss_rush_pop/ui_act_boss_rush_pop.png deleted file mode 100644 index 1fbad2c9d..000000000 Binary files a/Assets/arts/spines/ui/ui_act_boss_rush_pop/ui_act_boss_rush_pop.png and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_act_boss_rush_pop/ui_act_boss_rush_pop.png.meta b/Assets/arts/spines/ui/ui_act_boss_rush_pop/ui_act_boss_rush_pop.png.meta deleted file mode 100644 index c785f31ff..000000000 --- a/Assets/arts/spines/ui/ui_act_boss_rush_pop/ui_act_boss_rush_pop.png.meta +++ /dev/null @@ -1,147 +0,0 @@ -fileFormatVersion: 2 -guid: 0b13f5714e5b2f447b09bee37ba37514 -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 1 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 0 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 0 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 47 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 1 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 50 - textureCompression: 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 - - serializedVersion: 3 - buildTarget: Server - 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: [] - nameFileIdTable: {} - spritePackingTag: - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: arts/spines/ui/ui_act_boss_rush_pop.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_boss_rush_pop/ui_act_boss_rush_pop.skel.bytes b/Assets/arts/spines/ui/ui_act_boss_rush_pop/ui_act_boss_rush_pop.skel.bytes deleted file mode 100644 index 4c9577331..000000000 Binary files a/Assets/arts/spines/ui/ui_act_boss_rush_pop/ui_act_boss_rush_pop.skel.bytes and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_act_boss_rush_pop/ui_act_boss_rush_pop.skel.bytes.meta b/Assets/arts/spines/ui/ui_act_boss_rush_pop/ui_act_boss_rush_pop.skel.bytes.meta deleted file mode 100644 index 3c942ee6d..000000000 --- a/Assets/arts/spines/ui/ui_act_boss_rush_pop/ui_act_boss_rush_pop.skel.bytes.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 72694d3419feb50418b8d2e0541edff8 -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_act_boss_rush_pop.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_boss_rush_pop/ui_act_boss_rush_pop_atlas.asset b/Assets/arts/spines/ui/ui_act_boss_rush_pop/ui_act_boss_rush_pop_atlas.asset deleted file mode 100644 index e4e3fac5a..000000000 --- a/Assets/arts/spines/ui/ui_act_boss_rush_pop/ui_act_boss_rush_pop_atlas.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: a6b194f808b1af6499c93410e504af42, type: 3} - m_Name: ui_act_boss_rush_pop_atlas - m_EditorClassIdentifier: - textureLoadingMode: 0 - onDemandTextureLoader: {fileID: 0} - atlasFile: {fileID: 4900000, guid: 8f4885c066060b44fa9c2ce5531a7737, type: 3} - materials: - - {fileID: 2100000, guid: 7e0a16a0f00466e42a35ec7eb3d05ab1, type: 2} diff --git a/Assets/arts/spines/ui/ui_act_boss_rush_pop/ui_act_boss_rush_pop_atlas.asset.meta b/Assets/arts/spines/ui/ui_act_boss_rush_pop/ui_act_boss_rush_pop_atlas.asset.meta deleted file mode 100644 index ae6d052c1..000000000 --- a/Assets/arts/spines/ui/ui_act_boss_rush_pop/ui_act_boss_rush_pop_atlas.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: b69166c64684ec148ae7dc696624470e -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_act_boss_rush_pop.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_boss_rush_pop/ui_act_boss_rush_pop_material.mat b/Assets/arts/spines/ui/ui_act_boss_rush_pop/ui_act_boss_rush_pop_material.mat deleted file mode 100644 index 924c9e485..000000000 --- a/Assets/arts/spines/ui/ui_act_boss_rush_pop/ui_act_boss_rush_pop_material.mat +++ /dev/null @@ -1,44 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!21 &2100000 -Material: - serializedVersion: 8 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: ui_act_boss_rush_pop_material - m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3} - m_ValidKeywords: - - _STRAIGHT_ALPHA_INPUT - m_InvalidKeywords: - - _USE8NEIGHBOURHOOD_ON - m_LightmapFlags: 4 - m_EnableInstancingVariants: 0 - m_DoubleSidedGI: 0 - m_CustomRenderQueue: -1 - stringTagMap: {} - disabledShaderPasses: [] - m_SavedProperties: - serializedVersion: 3 - m_TexEnvs: - - _MainTex: - m_Texture: {fileID: 2800000, guid: 0b13f5714e5b2f447b09bee37ba37514, type: 3} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - m_Ints: [] - m_Floats: - - _Cutoff: 0.1 - - _OutlineMipLevel: 0 - - _OutlineOpaqueAlpha: 1 - - _OutlineReferenceTexWidth: 1024 - - _OutlineSmoothness: 1 - - _OutlineWidth: 3 - - _StencilComp: 8 - - _StencilRef: 1 - - _StraightAlphaInput: 1 - - _ThresholdEnd: 0.25 - - _Use8Neighbourhood: 1 - m_Colors: - - _OutlineColor: {r: 1, g: 1, b: 0, a: 1} - m_BuildTextureStacks: [] diff --git a/Assets/arts/spines/ui/ui_act_boss_rush_pop/ui_act_boss_rush_pop_material.mat.meta b/Assets/arts/spines/ui/ui_act_boss_rush_pop/ui_act_boss_rush_pop_material.mat.meta deleted file mode 100644 index 912c95fae..000000000 --- a/Assets/arts/spines/ui/ui_act_boss_rush_pop/ui_act_boss_rush_pop_material.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 7e0a16a0f00466e42a35ec7eb3d05ab1 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 2100000 - userData: - assetBundleName: arts/spines/ui/ui_act_boss_rush_pop.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_boss_rush_pop/ui_act_boss_rush_pop_skeletondata.asset b/Assets/arts/spines/ui/ui_act_boss_rush_pop/ui_act_boss_rush_pop_skeletondata.asset deleted file mode 100644 index 982b4719e..000000000 --- a/Assets/arts/spines/ui/ui_act_boss_rush_pop/ui_act_boss_rush_pop_skeletondata.asset +++ /dev/null @@ -1,31 +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: f1b3b4b945939a54ea0b23d3396115fb, type: 3} - m_Name: ui_act_boss_rush_pop_skeletondata - m_EditorClassIdentifier: - atlasAssets: - - {fileID: 11400000, guid: b69166c64684ec148ae7dc696624470e, type: 2} - scale: 0.01 - skeletonJSON: {fileID: 4900000, guid: 72694d3419feb50418b8d2e0541edff8, type: 3} - isUpgradingBlendModeMaterials: 0 - blendModeMaterials: - requiresBlendModeMaterials: 0 - applyAdditiveMaterial: 0 - additiveMaterials: [] - multiplyMaterials: [] - screenMaterials: [] - skeletonDataModifiers: [] - fromAnimation: [] - toAnimation: [] - duration: [] - defaultMix: 0.2 - controller: {fileID: 0} diff --git a/Assets/arts/spines/ui/ui_act_boss_rush_pop/ui_act_boss_rush_pop_skeletondata.asset.meta b/Assets/arts/spines/ui/ui_act_boss_rush_pop/ui_act_boss_rush_pop_skeletondata.asset.meta deleted file mode 100644 index be9138b9c..000000000 --- a/Assets/arts/spines/ui/ui_act_boss_rush_pop/ui_act_boss_rush_pop_skeletondata.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: bee5f1e1e5b9a1540b3fb89fcd3ea514 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_act_boss_rush_pop.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_fullmoon_banner_1.meta b/Assets/arts/spines/ui/ui_act_fullmoon_banner_1.meta deleted file mode 100644 index 5da51fc3e..000000000 --- a/Assets/arts/spines/ui/ui_act_fullmoon_banner_1.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 09edd0190317fb142a31c5bdf480c128 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_fullmoon_banner_1/ui_act_fullmoon_banner_1.atlas.txt b/Assets/arts/spines/ui/ui_act_fullmoon_banner_1/ui_act_fullmoon_banner_1.atlas.txt deleted file mode 100644 index d7e72d8f9..000000000 --- a/Assets/arts/spines/ui/ui_act_fullmoon_banner_1/ui_act_fullmoon_banner_1.atlas.txt +++ /dev/null @@ -1,65 +0,0 @@ -ui_act_fullmoon_banner_1.png -size:1024,1024 -filter:Linear,Linear -di -bounds:2,581,548,219 -offsets:1,1,550,221 -jt_1 -bounds:435,355,112,79 -offsets:1,1,114,81 -jt_10 -bounds:553,754,75,59 -offsets:1,1,77,61 -jt_11 -bounds:536,465,114,114 -offsets:1,1,116,116 -jt_2 -bounds:549,349,114,71 -offsets:1,1,116,73 -rotate:90 -jt_3 -bounds:916,742,142,83 -offsets:1,1,144,85 -rotate:90 -jt_4 -bounds:622,351,36,34 -offsets:1,1,38,36 -jt_5 -bounds:622,387,37,76 -offsets:1,1,39,78 -jt_6 -bounds:552,683,67,69 -offsets:1,1,69,71 -jt_7 -bounds:435,436,143,99 -offsets:1,1,145,101 -rotate:90 -jt_8 -bounds:916,886,136,106 -offsets:1,1,138,108 -rotate:90 -jt_9 -bounds:2,12,121,22 -offsets:2,1,124,24 -kuang -bounds:2,802,549,220 -offsets:1,1,551,222 -ren_1 -bounds:553,815,277,207 -offsets:1,1,279,209 -ren_2 -bounds:2,364,228,215 -offsets:1,1,230,217 -ren_3 -bounds:232,372,201,207 -offsets:1,1,203,209 -ren_4 -bounds:2,157,224,205 -offsets:1,2,227,208 -shandian -bounds:2,36,119,273 -offsets:1,1,121,275 -rotate:90 -shandian2 -bounds:832,804,82,218 -offsets:1,1,84,220 diff --git a/Assets/arts/spines/ui/ui_act_fullmoon_banner_1/ui_act_fullmoon_banner_1.atlas.txt.meta b/Assets/arts/spines/ui/ui_act_fullmoon_banner_1/ui_act_fullmoon_banner_1.atlas.txt.meta deleted file mode 100644 index 87f1f32f4..000000000 --- a/Assets/arts/spines/ui/ui_act_fullmoon_banner_1/ui_act_fullmoon_banner_1.atlas.txt.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 001b6a1fd6d45dd4ab36535b4b9edece -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_act_fullmoon_banner_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_fullmoon_banner_1/ui_act_fullmoon_banner_1.png b/Assets/arts/spines/ui/ui_act_fullmoon_banner_1/ui_act_fullmoon_banner_1.png deleted file mode 100644 index 3cf7c5129..000000000 Binary files a/Assets/arts/spines/ui/ui_act_fullmoon_banner_1/ui_act_fullmoon_banner_1.png and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_act_fullmoon_banner_1/ui_act_fullmoon_banner_1.png.meta b/Assets/arts/spines/ui/ui_act_fullmoon_banner_1/ui_act_fullmoon_banner_1.png.meta deleted file mode 100644 index 2fab5661b..000000000 --- a/Assets/arts/spines/ui/ui_act_fullmoon_banner_1/ui_act_fullmoon_banner_1.png.meta +++ /dev/null @@ -1,147 +0,0 @@ -fileFormatVersion: 2 -guid: 1b640d49930eed64a88ea520ce647eb9 -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 1 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 0 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 0 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 47 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 1 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 50 - textureCompression: 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 - - serializedVersion: 3 - buildTarget: Server - 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: [] - nameFileIdTable: {} - spritePackingTag: - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: arts/spines/ui/ui_act_fullmoon_banner_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_fullmoon_banner_1/ui_act_fullmoon_banner_1.skel.bytes b/Assets/arts/spines/ui/ui_act_fullmoon_banner_1/ui_act_fullmoon_banner_1.skel.bytes deleted file mode 100644 index 231a443d3..000000000 Binary files a/Assets/arts/spines/ui/ui_act_fullmoon_banner_1/ui_act_fullmoon_banner_1.skel.bytes and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_act_fullmoon_banner_1/ui_act_fullmoon_banner_1.skel.bytes.meta b/Assets/arts/spines/ui/ui_act_fullmoon_banner_1/ui_act_fullmoon_banner_1.skel.bytes.meta deleted file mode 100644 index 7ecc8f660..000000000 --- a/Assets/arts/spines/ui/ui_act_fullmoon_banner_1/ui_act_fullmoon_banner_1.skel.bytes.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: f98ca5c67f08f3b4fb9e778903b52dbd -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_act_fullmoon_banner_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_fullmoon_banner_1/ui_act_fullmoon_banner_1_atlas.asset b/Assets/arts/spines/ui/ui_act_fullmoon_banner_1/ui_act_fullmoon_banner_1_atlas.asset deleted file mode 100644 index 750636e8c..000000000 --- a/Assets/arts/spines/ui/ui_act_fullmoon_banner_1/ui_act_fullmoon_banner_1_atlas.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: a6b194f808b1af6499c93410e504af42, type: 3} - m_Name: ui_act_fullmoon_banner_1_atlas - m_EditorClassIdentifier: - textureLoadingMode: 0 - onDemandTextureLoader: {fileID: 0} - atlasFile: {fileID: 4900000, guid: 001b6a1fd6d45dd4ab36535b4b9edece, type: 3} - materials: - - {fileID: 2100000, guid: 7db91ceaa94b2d24d9cdbf775b5b9ec2, type: 2} diff --git a/Assets/arts/spines/ui/ui_act_fullmoon_banner_1/ui_act_fullmoon_banner_1_atlas.asset.meta b/Assets/arts/spines/ui/ui_act_fullmoon_banner_1/ui_act_fullmoon_banner_1_atlas.asset.meta deleted file mode 100644 index 61f545d33..000000000 --- a/Assets/arts/spines/ui/ui_act_fullmoon_banner_1/ui_act_fullmoon_banner_1_atlas.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 4af22c45ca336f948962595f79e51b55 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_act_fullmoon_banner_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_fullmoon_banner_1/ui_act_fullmoon_banner_1_material.mat b/Assets/arts/spines/ui/ui_act_fullmoon_banner_1/ui_act_fullmoon_banner_1_material.mat deleted file mode 100644 index eafc27ecc..000000000 --- a/Assets/arts/spines/ui/ui_act_fullmoon_banner_1/ui_act_fullmoon_banner_1_material.mat +++ /dev/null @@ -1,44 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!21 &2100000 -Material: - serializedVersion: 8 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: ui_act_fullmoon_banner_1_material - m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3} - m_ValidKeywords: - - _STRAIGHT_ALPHA_INPUT - m_InvalidKeywords: - - _USE8NEIGHBOURHOOD_ON - m_LightmapFlags: 4 - m_EnableInstancingVariants: 0 - m_DoubleSidedGI: 0 - m_CustomRenderQueue: -1 - stringTagMap: {} - disabledShaderPasses: [] - m_SavedProperties: - serializedVersion: 3 - m_TexEnvs: - - _MainTex: - m_Texture: {fileID: 2800000, guid: 1b640d49930eed64a88ea520ce647eb9, type: 3} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - m_Ints: [] - m_Floats: - - _Cutoff: 0.1 - - _OutlineMipLevel: 0 - - _OutlineOpaqueAlpha: 1 - - _OutlineReferenceTexWidth: 1024 - - _OutlineSmoothness: 1 - - _OutlineWidth: 3 - - _StencilComp: 8 - - _StencilRef: 1 - - _StraightAlphaInput: 1 - - _ThresholdEnd: 0.25 - - _Use8Neighbourhood: 1 - m_Colors: - - _OutlineColor: {r: 1, g: 1, b: 0, a: 1} - m_BuildTextureStacks: [] diff --git a/Assets/arts/spines/ui/ui_act_fullmoon_banner_1/ui_act_fullmoon_banner_1_material.mat.meta b/Assets/arts/spines/ui/ui_act_fullmoon_banner_1/ui_act_fullmoon_banner_1_material.mat.meta deleted file mode 100644 index 4ec6280d5..000000000 --- a/Assets/arts/spines/ui/ui_act_fullmoon_banner_1/ui_act_fullmoon_banner_1_material.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 7db91ceaa94b2d24d9cdbf775b5b9ec2 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 2100000 - userData: - assetBundleName: arts/spines/ui/ui_act_fullmoon_banner_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_fullmoon_banner_1/ui_act_fullmoon_banner_1_skeletondata.asset b/Assets/arts/spines/ui/ui_act_fullmoon_banner_1/ui_act_fullmoon_banner_1_skeletondata.asset deleted file mode 100644 index 3febf4a41..000000000 --- a/Assets/arts/spines/ui/ui_act_fullmoon_banner_1/ui_act_fullmoon_banner_1_skeletondata.asset +++ /dev/null @@ -1,31 +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: f1b3b4b945939a54ea0b23d3396115fb, type: 3} - m_Name: ui_act_fullmoon_banner_1_skeletondata - m_EditorClassIdentifier: - atlasAssets: - - {fileID: 11400000, guid: 4af22c45ca336f948962595f79e51b55, type: 2} - scale: 0.01 - skeletonJSON: {fileID: 4900000, guid: f98ca5c67f08f3b4fb9e778903b52dbd, type: 3} - isUpgradingBlendModeMaterials: 0 - blendModeMaterials: - requiresBlendModeMaterials: 0 - applyAdditiveMaterial: 0 - additiveMaterials: [] - multiplyMaterials: [] - screenMaterials: [] - skeletonDataModifiers: [] - fromAnimation: [] - toAnimation: [] - duration: [] - defaultMix: 0.2 - controller: {fileID: 0} diff --git a/Assets/arts/spines/ui/ui_act_fullmoon_banner_1/ui_act_fullmoon_banner_1_skeletondata.asset.meta b/Assets/arts/spines/ui/ui_act_fullmoon_banner_1/ui_act_fullmoon_banner_1_skeletondata.asset.meta deleted file mode 100644 index 2a4033aca..000000000 --- a/Assets/arts/spines/ui/ui_act_fullmoon_banner_1/ui_act_fullmoon_banner_1_skeletondata.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 47a0d7f0ae59a284b89aa85de016cdc3 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_act_fullmoon_banner_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_fullmoon_banner_2.meta b/Assets/arts/spines/ui/ui_act_fullmoon_banner_2.meta deleted file mode 100644 index 6f2a51653..000000000 --- a/Assets/arts/spines/ui/ui_act_fullmoon_banner_2.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 07eb0df075fea6c4985e166e1df23a87 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_fullmoon_banner_2/ui_act_fullmoon_banner_2.atlas.txt b/Assets/arts/spines/ui/ui_act_fullmoon_banner_2/ui_act_fullmoon_banner_2.atlas.txt deleted file mode 100644 index 74618a6d5..000000000 --- a/Assets/arts/spines/ui/ui_act_fullmoon_banner_2/ui_act_fullmoon_banner_2.atlas.txt +++ /dev/null @@ -1,124 +0,0 @@ -ui_act_fullmoon_banner_2.png -size:1024,1024 -filter:Linear,Linear -k1 -bounds:1,40,66,129 -offsets:1,1,68,131 -k2 -bounds:253,340,35,76 -offsets:1,1,37,78 -k3 -bounds:69,41,55,65 -offsets:1,1,57,67 -rotate:90 -k4 -bounds:300,472,73,54 -offsets:1,1,75,56 -rotate:90 -ren_1 -bounds:350,598,47,98 -offsets:1,1,49,100 -ren_10 -bounds:234,465,64,80 -ren_11 -bounds:1,171,105,94 -offsets:1,1,107,96 -rotate:90 -ren_12 -bounds:69,98,71,70 -offsets:1,1,73,72 -rotate:90 -ren_13 -bounds:98,271,41,30 -offsets:1,1,43,32 -ren_14 -bounds:1,1,37,42 -offsets:1,1,39,44 -rotate:90 -ren_15 -bounds:352,547,49,33 -offsets:1,1,51,35 -rotate:90 -ren_16 -bounds:1,698,404,103 -offsets:1,1,406,105 -ren_17 -bounds:857,925,65,50 -offsets:1,1,67,52 -ren_18 -bounds:98,303,48,113 -ren_19 -bounds:230,547,48,120 -rotate:90 -ren_2 -bounds:100,589,120,107 -offsets:1,1,122,109 -ren_20 -bounds:100,521,66,128 -rotate:90 -ren_21 -bounds:148,310,38,106 -ren_22 -bounds:1,398,93,127 -ren_23 -bounds:553,805,73,134 -rotate:90 -ren_24 -bounds:695,890,62,140 -rotate:90 -ren_25 -bounds:1,278,95,118 -ren_26 -bounds:553,880,140,143 -ren_27 -bounds:407,706,95,140 -rotate:90 -ren_28 -bounds:1,527,97,169 -ren_29 -bounds:695,954,69,160 -rotate:90 -ren_3 -bounds:199,418,33,101 -offsets:1,1,35,103 -ren_30 -bounds:857,977,46,150 -rotate:90 -ren_4 -bounds:222,597,126,99 -offsets:1,1,128,101 -ren_5 -bounds:188,333,83,63 -offsets:1,1,85,65 -rotate:90 -ren_6 -bounds:924,917,59,58 -offsets:1,1,61,60 -ren_7 -bounds:356,491,54,51 -offsets:1,1,56,53 -rotate:90 -ren_8 -bounds:69,1,46,38 -offsets:1,1,48,40 -ren_9 -bounds:234,418,45,51 -offsets:1,1,47,53 -rotate:90 -tiao -bounds:1,803,550,220 -x1 -bounds:96,418,101,101 -offsets:1,1,103,103 -x2 -bounds:96,418,101,101 -offsets:1,1,103,103 -x3 -bounds:96,418,101,101 -offsets:1,1,103,103 -x4 -bounds:96,418,101,101 -offsets:1,1,103,103 -x5 -bounds:96,418,101,101 -offsets:1,1,103,103 diff --git a/Assets/arts/spines/ui/ui_act_fullmoon_banner_2/ui_act_fullmoon_banner_2.atlas.txt.meta b/Assets/arts/spines/ui/ui_act_fullmoon_banner_2/ui_act_fullmoon_banner_2.atlas.txt.meta deleted file mode 100644 index a2fe55271..000000000 --- a/Assets/arts/spines/ui/ui_act_fullmoon_banner_2/ui_act_fullmoon_banner_2.atlas.txt.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: c320e717d6c8d774aa53eb19e5f000c9 -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_act_fullmoon_banner_2.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_fullmoon_banner_2/ui_act_fullmoon_banner_2.png b/Assets/arts/spines/ui/ui_act_fullmoon_banner_2/ui_act_fullmoon_banner_2.png deleted file mode 100644 index e0d244e7d..000000000 Binary files a/Assets/arts/spines/ui/ui_act_fullmoon_banner_2/ui_act_fullmoon_banner_2.png and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_act_fullmoon_banner_2/ui_act_fullmoon_banner_2.png.meta b/Assets/arts/spines/ui/ui_act_fullmoon_banner_2/ui_act_fullmoon_banner_2.png.meta deleted file mode 100644 index 0126d4104..000000000 --- a/Assets/arts/spines/ui/ui_act_fullmoon_banner_2/ui_act_fullmoon_banner_2.png.meta +++ /dev/null @@ -1,147 +0,0 @@ -fileFormatVersion: 2 -guid: 25a18c07db06e3144a9ec675f4782422 -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 1 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 0 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 0 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 47 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 1 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 50 - textureCompression: 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 - - serializedVersion: 3 - buildTarget: Server - 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: [] - nameFileIdTable: {} - spritePackingTag: - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: arts/spines/ui/ui_act_fullmoon_banner_2.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_fullmoon_banner_2/ui_act_fullmoon_banner_2.skel.bytes b/Assets/arts/spines/ui/ui_act_fullmoon_banner_2/ui_act_fullmoon_banner_2.skel.bytes deleted file mode 100644 index be5afe4a0..000000000 Binary files a/Assets/arts/spines/ui/ui_act_fullmoon_banner_2/ui_act_fullmoon_banner_2.skel.bytes and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_act_fullmoon_banner_2/ui_act_fullmoon_banner_2.skel.bytes.meta b/Assets/arts/spines/ui/ui_act_fullmoon_banner_2/ui_act_fullmoon_banner_2.skel.bytes.meta deleted file mode 100644 index b57658795..000000000 --- a/Assets/arts/spines/ui/ui_act_fullmoon_banner_2/ui_act_fullmoon_banner_2.skel.bytes.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 5b8f6bbc6a6e955468e277a83d5b13b1 -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_act_fullmoon_banner_2.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_fullmoon_banner_2/ui_act_fullmoon_banner_2_atlas.asset b/Assets/arts/spines/ui/ui_act_fullmoon_banner_2/ui_act_fullmoon_banner_2_atlas.asset deleted file mode 100644 index f520431dd..000000000 --- a/Assets/arts/spines/ui/ui_act_fullmoon_banner_2/ui_act_fullmoon_banner_2_atlas.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: a6b194f808b1af6499c93410e504af42, type: 3} - m_Name: ui_act_fullmoon_banner_2_atlas - m_EditorClassIdentifier: - textureLoadingMode: 0 - onDemandTextureLoader: {fileID: 0} - atlasFile: {fileID: 4900000, guid: c320e717d6c8d774aa53eb19e5f000c9, type: 3} - materials: - - {fileID: 2100000, guid: 9557ee75f6311fb4f8e9adb54083f3f2, type: 2} diff --git a/Assets/arts/spines/ui/ui_act_fullmoon_banner_2/ui_act_fullmoon_banner_2_atlas.asset.meta b/Assets/arts/spines/ui/ui_act_fullmoon_banner_2/ui_act_fullmoon_banner_2_atlas.asset.meta deleted file mode 100644 index 8a61d8028..000000000 --- a/Assets/arts/spines/ui/ui_act_fullmoon_banner_2/ui_act_fullmoon_banner_2_atlas.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: edd23c89914b5c9469466a20bd011ff3 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_act_fullmoon_banner_2.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_fullmoon_banner_2/ui_act_fullmoon_banner_2_material.mat b/Assets/arts/spines/ui/ui_act_fullmoon_banner_2/ui_act_fullmoon_banner_2_material.mat deleted file mode 100644 index 11b06977e..000000000 --- a/Assets/arts/spines/ui/ui_act_fullmoon_banner_2/ui_act_fullmoon_banner_2_material.mat +++ /dev/null @@ -1,44 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!21 &2100000 -Material: - serializedVersion: 8 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: ui_act_fullmoon_banner_2_material - m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3} - m_ValidKeywords: - - _STRAIGHT_ALPHA_INPUT - m_InvalidKeywords: - - _USE8NEIGHBOURHOOD_ON - m_LightmapFlags: 4 - m_EnableInstancingVariants: 0 - m_DoubleSidedGI: 0 - m_CustomRenderQueue: -1 - stringTagMap: {} - disabledShaderPasses: [] - m_SavedProperties: - serializedVersion: 3 - m_TexEnvs: - - _MainTex: - m_Texture: {fileID: 2800000, guid: 25a18c07db06e3144a9ec675f4782422, type: 3} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - m_Ints: [] - m_Floats: - - _Cutoff: 0.1 - - _OutlineMipLevel: 0 - - _OutlineOpaqueAlpha: 1 - - _OutlineReferenceTexWidth: 1024 - - _OutlineSmoothness: 1 - - _OutlineWidth: 3 - - _StencilComp: 8 - - _StencilRef: 1 - - _StraightAlphaInput: 1 - - _ThresholdEnd: 0.25 - - _Use8Neighbourhood: 1 - m_Colors: - - _OutlineColor: {r: 1, g: 1, b: 0, a: 1} - m_BuildTextureStacks: [] diff --git a/Assets/arts/spines/ui/ui_act_fullmoon_banner_2/ui_act_fullmoon_banner_2_material.mat.meta b/Assets/arts/spines/ui/ui_act_fullmoon_banner_2/ui_act_fullmoon_banner_2_material.mat.meta deleted file mode 100644 index 26a45583f..000000000 --- a/Assets/arts/spines/ui/ui_act_fullmoon_banner_2/ui_act_fullmoon_banner_2_material.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 9557ee75f6311fb4f8e9adb54083f3f2 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 2100000 - userData: - assetBundleName: arts/spines/ui/ui_act_fullmoon_banner_2.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_fullmoon_banner_2/ui_act_fullmoon_banner_2_skeletondata.asset b/Assets/arts/spines/ui/ui_act_fullmoon_banner_2/ui_act_fullmoon_banner_2_skeletondata.asset deleted file mode 100644 index b6f806e78..000000000 --- a/Assets/arts/spines/ui/ui_act_fullmoon_banner_2/ui_act_fullmoon_banner_2_skeletondata.asset +++ /dev/null @@ -1,31 +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: f1b3b4b945939a54ea0b23d3396115fb, type: 3} - m_Name: ui_act_fullmoon_banner_2_skeletondata - m_EditorClassIdentifier: - atlasAssets: - - {fileID: 11400000, guid: edd23c89914b5c9469466a20bd011ff3, type: 2} - scale: 0.01 - skeletonJSON: {fileID: 4900000, guid: 5b8f6bbc6a6e955468e277a83d5b13b1, type: 3} - isUpgradingBlendModeMaterials: 0 - blendModeMaterials: - requiresBlendModeMaterials: 0 - applyAdditiveMaterial: 0 - additiveMaterials: [] - multiplyMaterials: [] - screenMaterials: [] - skeletonDataModifiers: [] - fromAnimation: [] - toAnimation: [] - duration: [] - defaultMix: 0.2 - controller: {fileID: 0} diff --git a/Assets/arts/spines/ui/ui_act_fullmoon_banner_2/ui_act_fullmoon_banner_2_skeletondata.asset.meta b/Assets/arts/spines/ui/ui_act_fullmoon_banner_2/ui_act_fullmoon_banner_2_skeletondata.asset.meta deleted file mode 100644 index ccee6272e..000000000 --- a/Assets/arts/spines/ui/ui_act_fullmoon_banner_2/ui_act_fullmoon_banner_2_skeletondata.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: ee8faba4ff7ae9447ab36bb1a5cee084 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_act_fullmoon_banner_2.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_fullmoon_banner_3.meta b/Assets/arts/spines/ui/ui_act_fullmoon_banner_3.meta deleted file mode 100644 index 955905498..000000000 --- a/Assets/arts/spines/ui/ui_act_fullmoon_banner_3.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 06cf550bdaf4a514db2c751d5f946569 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_fullmoon_banner_3/ui_act_fullmoon_banner_3.atlas.txt b/Assets/arts/spines/ui/ui_act_fullmoon_banner_3/ui_act_fullmoon_banner_3.atlas.txt deleted file mode 100644 index a84761a2d..000000000 --- a/Assets/arts/spines/ui/ui_act_fullmoon_banner_3/ui_act_fullmoon_banner_3.atlas.txt +++ /dev/null @@ -1,182 +0,0 @@ -ui_act_fullmoon_banner_3.png -size:1024,1024 -filter:Linear,Linear -kuang -bounds:2,776,547,246 -nvwushen_1 -bounds:836,799,28,22 -offsets:1,1,30,24 -nvwushen_10 -bounds:783,842,51,76 -offsets:1,1,53,78 -nvwushen_11 -bounds:2,8,93,85 -offsets:1,1,95,87 -rotate:90 -nvwushen_12 -bounds:169,460,97,83 -offsets:1,1,99,85 -rotate:90 -nvwushen_13 -bounds:909,865,35,69 -offsets:1,1,37,71 -nvwushen_14 -bounds:698,694,25,31 -offsets:1,1,27,33 -nvwushen_15 -bounds:836,864,71,70 -offsets:1,1,73,72 -nvwushen_16 -bounds:414,486,32,33 -offsets:1,1,34,35 -nvwushen_17 -bounds:499,681,51,34 -offsets:1,1,53,36 -nvwushen_18 -bounds:721,792,62,41 -offsets:1,1,64,43 -nvwushen_19 -bounds:499,717,49,57 -offsets:1,1,51,59 -nvwushen_2 -bounds:946,828,40,38 -offsets:1,2,42,42 -rotate:90 -nvwushen_20 -bounds:418,597,53,54 -offsets:1,1,55,56 -nvwushen_21 -bounds:552,687,37,46 -offsets:1,1,39,48 -rotate:90 -nvwushen_22 -bounds:302,439,34,44 -offsets:1,1,36,46 -rotate:90 -nvwushen_23 -bounds:946,870,38,67 -offsets:1,1,40,69 -nvwushen_24 -bounds:785,777,30,48 -offsets:1,1,32,50 -rotate:90 -nvwushen_25 -bounds:986,877,36,60 -offsets:1,1,38,62 -nvwushen_26 -bounds:88,342,71,115 -nvwushen_27 -bounds:2,334,84,123 -nvwushen_28 -bounds:551,907,160,115 -nvwushen_29 -bounds:2,216,76,116 -nvwushen_3 -bounds:662,696,34,29 -offsets:2,1,37,32 -nvwushen_30 -bounds:831,936,86,112 -rotate:90 -nvwushen_31 -bounds:2,103,63,111 -nvwushen_32 -bounds:375,653,41,105 -rotate:90 -nvwushen_33 -bounds:676,804,43,101 -nvwushen_4 -bounds:2,559,249,215 -offsets:1,1,252,218 -nvwushen_5 -bounds:986,837,38,36 -offsets:1,1,40,38 -rotate:90 -nvwushen_6 -bounds:617,727,40,49 -offsets:1,1,42,51 -rotate:90 -nvwushen_7 -bounds:253,560,98,102 -offsets:1,1,100,104 -nvwushen_8 -bounds:719,770,20,54 -offsets:1,1,22,56 -rotate:90 -nvwushen_9 -bounds:387,486,25,56 -offsets:1,1,27,58 -yanhou_1 -bounds:253,664,120,110 -offsets:1,1,122,112 -yanhou_10 -bounds:418,563,44,32 -offsets:1,1,46,34 -yanhou_11 -bounds:550,726,41,65 -rotate:90 -yanhou_12 -bounds:903,818,41,44 -offsets:1,1,43,46 -yanhou_13 -bounds:414,521,40,40 -offsets:1,1,42,42 -yanhou_14 -bounds:836,823,39,65 -rotate:90 -yanhou_15 -bounds:721,835,60,83 -yanhou_16 -bounds:785,809,49,31 -offsets:1,1,51,33 -yanhou_17 -bounds:600,689,35,27 -offsets:1,1,37,29 -rotate:90 -yanhou_18 -bounds:668,727,46,40 -offsets:2,1,50,42 -yanhou_19 -bounds:353,544,37,58 -offsets:1,1,39,60 -rotate:90 -yanhou_2 -bounds:551,769,112,39 -offsets:1,1,114,41 -yanhou_20 -bounds:352,485,33,57 -offsets:1,1,35,59 -yanhou_21 -bounds:254,441,32,46 -offsets:1,1,34,48 -rotate:90 -yanhou_22 -bounds:665,769,33,52 -offsets:1,1,35,54 -rotate:90 -yanhou_23 -bounds:353,583,63,68 -yanhou_24 -bounds:945,939,63,83 -yanhou_25 -bounds:2,459,165,98 -yanhou_3 -bounds:375,696,122,78 -offsets:1,1,124,80 -yanhou_4 -bounds:551,810,123,95 -yanhou_5 -bounds:482,669,13,25 -offsets:1,1,15,27 -yanhou_6 -bounds:866,808,13,25 -offsets:1,1,15,27 -rotate:90 -yanhou_7 -bounds:254,475,96,83 -offsets:1,1,98,85 -yanhou_8 -bounds:713,920,116,102 -offsets:1,1,118,104 -yanhou_9 -bounds:629,692,31,33 -offsets:1,1,33,35 diff --git a/Assets/arts/spines/ui/ui_act_fullmoon_banner_3/ui_act_fullmoon_banner_3.atlas.txt.meta b/Assets/arts/spines/ui/ui_act_fullmoon_banner_3/ui_act_fullmoon_banner_3.atlas.txt.meta deleted file mode 100644 index 3c5724d57..000000000 --- a/Assets/arts/spines/ui/ui_act_fullmoon_banner_3/ui_act_fullmoon_banner_3.atlas.txt.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: c6850b03dd40beb42b89cec8154c903e -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_act_fullmoon_banner_3.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_fullmoon_banner_3/ui_act_fullmoon_banner_3.png b/Assets/arts/spines/ui/ui_act_fullmoon_banner_3/ui_act_fullmoon_banner_3.png deleted file mode 100644 index bb152a477..000000000 Binary files a/Assets/arts/spines/ui/ui_act_fullmoon_banner_3/ui_act_fullmoon_banner_3.png and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_act_fullmoon_banner_3/ui_act_fullmoon_banner_3.png.meta b/Assets/arts/spines/ui/ui_act_fullmoon_banner_3/ui_act_fullmoon_banner_3.png.meta deleted file mode 100644 index 3a98e42a0..000000000 --- a/Assets/arts/spines/ui/ui_act_fullmoon_banner_3/ui_act_fullmoon_banner_3.png.meta +++ /dev/null @@ -1,147 +0,0 @@ -fileFormatVersion: 2 -guid: 6b068d7b4fa72834ba559175c0ceabf7 -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 1 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 0 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 0 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 47 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 1 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 50 - textureCompression: 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 - - serializedVersion: 3 - buildTarget: Server - 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: [] - nameFileIdTable: {} - spritePackingTag: - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: arts/spines/ui/ui_act_fullmoon_banner_3.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_fullmoon_banner_3/ui_act_fullmoon_banner_3.skel.bytes b/Assets/arts/spines/ui/ui_act_fullmoon_banner_3/ui_act_fullmoon_banner_3.skel.bytes deleted file mode 100644 index f76363c3d..000000000 Binary files a/Assets/arts/spines/ui/ui_act_fullmoon_banner_3/ui_act_fullmoon_banner_3.skel.bytes and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_act_fullmoon_banner_3/ui_act_fullmoon_banner_3.skel.bytes.meta b/Assets/arts/spines/ui/ui_act_fullmoon_banner_3/ui_act_fullmoon_banner_3.skel.bytes.meta deleted file mode 100644 index 4c5f42ab6..000000000 --- a/Assets/arts/spines/ui/ui_act_fullmoon_banner_3/ui_act_fullmoon_banner_3.skel.bytes.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 4dec406e8ac2ca948bbb9ec928ea3107 -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_act_fullmoon_banner_3.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_fullmoon_banner_3/ui_act_fullmoon_banner_3_atlas.asset b/Assets/arts/spines/ui/ui_act_fullmoon_banner_3/ui_act_fullmoon_banner_3_atlas.asset deleted file mode 100644 index 93a91c140..000000000 --- a/Assets/arts/spines/ui/ui_act_fullmoon_banner_3/ui_act_fullmoon_banner_3_atlas.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: a6b194f808b1af6499c93410e504af42, type: 3} - m_Name: ui_act_fullmoon_banner_3_atlas - m_EditorClassIdentifier: - textureLoadingMode: 0 - onDemandTextureLoader: {fileID: 0} - atlasFile: {fileID: 4900000, guid: c6850b03dd40beb42b89cec8154c903e, type: 3} - materials: - - {fileID: 2100000, guid: c1ebe818f0130a14cb409ded1e93907d, type: 2} diff --git a/Assets/arts/spines/ui/ui_act_fullmoon_banner_3/ui_act_fullmoon_banner_3_atlas.asset.meta b/Assets/arts/spines/ui/ui_act_fullmoon_banner_3/ui_act_fullmoon_banner_3_atlas.asset.meta deleted file mode 100644 index 56c3eb36b..000000000 --- a/Assets/arts/spines/ui/ui_act_fullmoon_banner_3/ui_act_fullmoon_banner_3_atlas.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 5852a230687fa6349bd6f863b7ae79a8 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_act_fullmoon_banner_3.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_fullmoon_banner_3/ui_act_fullmoon_banner_3_material.mat b/Assets/arts/spines/ui/ui_act_fullmoon_banner_3/ui_act_fullmoon_banner_3_material.mat deleted file mode 100644 index 2ef80e9e9..000000000 --- a/Assets/arts/spines/ui/ui_act_fullmoon_banner_3/ui_act_fullmoon_banner_3_material.mat +++ /dev/null @@ -1,44 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!21 &2100000 -Material: - serializedVersion: 8 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: ui_act_fullmoon_banner_3_material - m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3} - m_ValidKeywords: - - _STRAIGHT_ALPHA_INPUT - m_InvalidKeywords: - - _USE8NEIGHBOURHOOD_ON - m_LightmapFlags: 4 - m_EnableInstancingVariants: 0 - m_DoubleSidedGI: 0 - m_CustomRenderQueue: -1 - stringTagMap: {} - disabledShaderPasses: [] - m_SavedProperties: - serializedVersion: 3 - m_TexEnvs: - - _MainTex: - m_Texture: {fileID: 2800000, guid: 6b068d7b4fa72834ba559175c0ceabf7, type: 3} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - m_Ints: [] - m_Floats: - - _Cutoff: 0.1 - - _OutlineMipLevel: 0 - - _OutlineOpaqueAlpha: 1 - - _OutlineReferenceTexWidth: 1024 - - _OutlineSmoothness: 1 - - _OutlineWidth: 3 - - _StencilComp: 8 - - _StencilRef: 1 - - _StraightAlphaInput: 1 - - _ThresholdEnd: 0.25 - - _Use8Neighbourhood: 1 - m_Colors: - - _OutlineColor: {r: 1, g: 1, b: 0, a: 1} - m_BuildTextureStacks: [] diff --git a/Assets/arts/spines/ui/ui_act_fullmoon_banner_3/ui_act_fullmoon_banner_3_material.mat.meta b/Assets/arts/spines/ui/ui_act_fullmoon_banner_3/ui_act_fullmoon_banner_3_material.mat.meta deleted file mode 100644 index 4ba0d69f0..000000000 --- a/Assets/arts/spines/ui/ui_act_fullmoon_banner_3/ui_act_fullmoon_banner_3_material.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: c1ebe818f0130a14cb409ded1e93907d -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 2100000 - userData: - assetBundleName: arts/spines/ui/ui_act_fullmoon_banner_3.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_fullmoon_banner_3/ui_act_fullmoon_banner_3_skeletondata.asset b/Assets/arts/spines/ui/ui_act_fullmoon_banner_3/ui_act_fullmoon_banner_3_skeletondata.asset deleted file mode 100644 index ff3837456..000000000 --- a/Assets/arts/spines/ui/ui_act_fullmoon_banner_3/ui_act_fullmoon_banner_3_skeletondata.asset +++ /dev/null @@ -1,31 +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: f1b3b4b945939a54ea0b23d3396115fb, type: 3} - m_Name: ui_act_fullmoon_banner_3_skeletondata - m_EditorClassIdentifier: - atlasAssets: - - {fileID: 11400000, guid: 5852a230687fa6349bd6f863b7ae79a8, type: 2} - scale: 0.01 - skeletonJSON: {fileID: 4900000, guid: 4dec406e8ac2ca948bbb9ec928ea3107, type: 3} - isUpgradingBlendModeMaterials: 0 - blendModeMaterials: - requiresBlendModeMaterials: 0 - applyAdditiveMaterial: 0 - additiveMaterials: [] - multiplyMaterials: [] - screenMaterials: [] - skeletonDataModifiers: [] - fromAnimation: [] - toAnimation: [] - duration: [] - defaultMix: 0.2 - controller: {fileID: 0} diff --git a/Assets/arts/spines/ui/ui_act_fullmoon_banner_3/ui_act_fullmoon_banner_3_skeletondata.asset.meta b/Assets/arts/spines/ui/ui_act_fullmoon_banner_3/ui_act_fullmoon_banner_3_skeletondata.asset.meta deleted file mode 100644 index 991a60bdd..000000000 --- a/Assets/arts/spines/ui/ui_act_fullmoon_banner_3/ui_act_fullmoon_banner_3_skeletondata.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: f08a6924e53d17347b45a230734b7397 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_act_fullmoon_banner_3.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_pvp_role_1.meta b/Assets/arts/spines/ui/ui_act_pvp_role_1.meta deleted file mode 100644 index 2a3b54016..000000000 --- a/Assets/arts/spines/ui/ui_act_pvp_role_1.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 652206591fd630e499e66bbbe6b9738a -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_pvp_role_1/ui_act_pvp_role_1.atlas.txt b/Assets/arts/spines/ui/ui_act_pvp_role_1/ui_act_pvp_role_1.atlas.txt deleted file mode 100644 index 4977eac3a..000000000 --- a/Assets/arts/spines/ui/ui_act_pvp_role_1/ui_act_pvp_role_1.atlas.txt +++ /dev/null @@ -1,62 +0,0 @@ -ui_act_pvp_role_1.png -size:1024,1024 -filter:Linear,Linear -chi1 -bounds:1,424,212,175 -chi2 -bounds:1,238,194,184 -eye_l -bounds:215,561,38,32 -rotate:90 -eye_r -bounds:492,817,30,24 -fa -bounds:1,743,334,280 -fair -bounds:337,843,208,180 -hand_r -bounds:142,168,68,56 -rotate:90 -head -bounds:547,865,162,158 -jiao1 -bounds:254,630,111,86 -rotate:90 -jiao2 -bounds:711,919,102,104 -jiubei_1 -bounds:1,1,7,8 -rotate:90 -jiubei_2 -bounds:337,743,54,12 -jiubei_3 -bounds:1,22,83,60 -jiubei_4 -bounds:547,843,20,21 -rotate:90 -jiubei_5 -bounds:254,607,20,21 -leg_l -bounds:1,601,251,140 -leg_r -bounds:337,757,153,84 -mouth -bounds:1,10,20,10 -offsets:1,1,22,12 -mouth_1 -bounds:197,413,14,9 -offsets:0,1,15,10 -mouth_2 -bounds:711,903,22,14 -mouth_3 -bounds:86,67,13,15 -offsets:0,1,13,16 -spine -bounds:1,84,139,152 -x2 -bounds:815,927,104,96 -offsets:3,2,110,100 -x5 -bounds:921,918,105,95 -offsets:2,3,110,102 -rotate:90 diff --git a/Assets/arts/spines/ui/ui_act_pvp_role_1/ui_act_pvp_role_1.atlas.txt.meta b/Assets/arts/spines/ui/ui_act_pvp_role_1/ui_act_pvp_role_1.atlas.txt.meta deleted file mode 100644 index de65685c5..000000000 --- a/Assets/arts/spines/ui/ui_act_pvp_role_1/ui_act_pvp_role_1.atlas.txt.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 776662b51236c55458c1cc88e4080e8f -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_act_pvp_role_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_pvp_role_1/ui_act_pvp_role_1.png b/Assets/arts/spines/ui/ui_act_pvp_role_1/ui_act_pvp_role_1.png deleted file mode 100644 index 2ee8c382a..000000000 Binary files a/Assets/arts/spines/ui/ui_act_pvp_role_1/ui_act_pvp_role_1.png and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_act_pvp_role_1/ui_act_pvp_role_1.png.meta b/Assets/arts/spines/ui/ui_act_pvp_role_1/ui_act_pvp_role_1.png.meta deleted file mode 100644 index 00e260ef6..000000000 --- a/Assets/arts/spines/ui/ui_act_pvp_role_1/ui_act_pvp_role_1.png.meta +++ /dev/null @@ -1,147 +0,0 @@ -fileFormatVersion: 2 -guid: 34b6259cd11a4f1469dce813a0ac60bd -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 1 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 0 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 0 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 47 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 1 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 50 - textureCompression: 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 - - serializedVersion: 3 - buildTarget: Server - 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: [] - nameFileIdTable: {} - spritePackingTag: - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: arts/spines/ui/ui_act_pvp_role_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_pvp_role_1/ui_act_pvp_role_1.skel.bytes b/Assets/arts/spines/ui/ui_act_pvp_role_1/ui_act_pvp_role_1.skel.bytes deleted file mode 100644 index e8a02d1d5..000000000 Binary files a/Assets/arts/spines/ui/ui_act_pvp_role_1/ui_act_pvp_role_1.skel.bytes and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_act_pvp_role_1/ui_act_pvp_role_1.skel.bytes.meta b/Assets/arts/spines/ui/ui_act_pvp_role_1/ui_act_pvp_role_1.skel.bytes.meta deleted file mode 100644 index 00e190785..000000000 --- a/Assets/arts/spines/ui/ui_act_pvp_role_1/ui_act_pvp_role_1.skel.bytes.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: cbfb8a78af113184db2c3e46876cb3d0 -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_act_pvp_role_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_pvp_role_1/ui_act_pvp_role_1_atlas.asset b/Assets/arts/spines/ui/ui_act_pvp_role_1/ui_act_pvp_role_1_atlas.asset deleted file mode 100644 index d46aee9cd..000000000 --- a/Assets/arts/spines/ui/ui_act_pvp_role_1/ui_act_pvp_role_1_atlas.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: a6b194f808b1af6499c93410e504af42, type: 3} - m_Name: ui_act_pvp_role_1_atlas - m_EditorClassIdentifier: - textureLoadingMode: 0 - onDemandTextureLoader: {fileID: 0} - atlasFile: {fileID: 4900000, guid: 776662b51236c55458c1cc88e4080e8f, type: 3} - materials: - - {fileID: 2100000, guid: 5c1fb31af2832e743b82090c5ff3814c, type: 2} diff --git a/Assets/arts/spines/ui/ui_act_pvp_role_1/ui_act_pvp_role_1_atlas.asset.meta b/Assets/arts/spines/ui/ui_act_pvp_role_1/ui_act_pvp_role_1_atlas.asset.meta deleted file mode 100644 index 982de3efd..000000000 --- a/Assets/arts/spines/ui/ui_act_pvp_role_1/ui_act_pvp_role_1_atlas.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: f3bc238d390de2844a4efe0fa6a40ebe -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_act_pvp_role_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_pvp_role_1/ui_act_pvp_role_1_material.mat b/Assets/arts/spines/ui/ui_act_pvp_role_1/ui_act_pvp_role_1_material.mat deleted file mode 100644 index b9e6fe0fd..000000000 --- a/Assets/arts/spines/ui/ui_act_pvp_role_1/ui_act_pvp_role_1_material.mat +++ /dev/null @@ -1,44 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!21 &2100000 -Material: - serializedVersion: 8 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: ui_act_pvp_role_1_material - m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3} - m_ValidKeywords: - - _STRAIGHT_ALPHA_INPUT - m_InvalidKeywords: - - _USE8NEIGHBOURHOOD_ON - m_LightmapFlags: 4 - m_EnableInstancingVariants: 0 - m_DoubleSidedGI: 0 - m_CustomRenderQueue: -1 - stringTagMap: {} - disabledShaderPasses: [] - m_SavedProperties: - serializedVersion: 3 - m_TexEnvs: - - _MainTex: - m_Texture: {fileID: 2800000, guid: 34b6259cd11a4f1469dce813a0ac60bd, type: 3} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - m_Ints: [] - m_Floats: - - _Cutoff: 0.1 - - _OutlineMipLevel: 0 - - _OutlineOpaqueAlpha: 1 - - _OutlineReferenceTexWidth: 1024 - - _OutlineSmoothness: 1 - - _OutlineWidth: 3 - - _StencilComp: 8 - - _StencilRef: 1 - - _StraightAlphaInput: 1 - - _ThresholdEnd: 0.25 - - _Use8Neighbourhood: 1 - m_Colors: - - _OutlineColor: {r: 1, g: 1, b: 0, a: 1} - m_BuildTextureStacks: [] diff --git a/Assets/arts/spines/ui/ui_act_pvp_role_1/ui_act_pvp_role_1_material.mat.meta b/Assets/arts/spines/ui/ui_act_pvp_role_1/ui_act_pvp_role_1_material.mat.meta deleted file mode 100644 index 4d2094c73..000000000 --- a/Assets/arts/spines/ui/ui_act_pvp_role_1/ui_act_pvp_role_1_material.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 5c1fb31af2832e743b82090c5ff3814c -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 2100000 - userData: - assetBundleName: arts/spines/ui/ui_act_pvp_role_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_pvp_role_1/ui_act_pvp_role_1_skeletondata.asset b/Assets/arts/spines/ui/ui_act_pvp_role_1/ui_act_pvp_role_1_skeletondata.asset deleted file mode 100644 index 3dc47564f..000000000 --- a/Assets/arts/spines/ui/ui_act_pvp_role_1/ui_act_pvp_role_1_skeletondata.asset +++ /dev/null @@ -1,31 +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: f1b3b4b945939a54ea0b23d3396115fb, type: 3} - m_Name: ui_act_pvp_role_1_skeletondata - m_EditorClassIdentifier: - atlasAssets: - - {fileID: 11400000, guid: f3bc238d390de2844a4efe0fa6a40ebe, type: 2} - scale: 0.01 - skeletonJSON: {fileID: 4900000, guid: cbfb8a78af113184db2c3e46876cb3d0, type: 3} - isUpgradingBlendModeMaterials: 0 - blendModeMaterials: - requiresBlendModeMaterials: 0 - applyAdditiveMaterial: 0 - additiveMaterials: [] - multiplyMaterials: [] - screenMaterials: [] - skeletonDataModifiers: [] - fromAnimation: [] - toAnimation: [] - duration: [] - defaultMix: 0.2 - controller: {fileID: 0} diff --git a/Assets/arts/spines/ui/ui_act_pvp_role_1/ui_act_pvp_role_1_skeletondata.asset.meta b/Assets/arts/spines/ui/ui_act_pvp_role_1/ui_act_pvp_role_1_skeletondata.asset.meta deleted file mode 100644 index da6089c14..000000000 --- a/Assets/arts/spines/ui/ui_act_pvp_role_1/ui_act_pvp_role_1_skeletondata.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 44bba592ef5637a4b89fbe9bf357630c -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_act_pvp_role_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_summer_herogift.meta b/Assets/arts/spines/ui/ui_act_summer_herogift.meta deleted file mode 100644 index 5dd8a283c..000000000 --- a/Assets/arts/spines/ui/ui_act_summer_herogift.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: ba36d1a1e1da6024b8b7af6df82c741b -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_summer_herogift/ui_act_summer_herogift.atlas.txt b/Assets/arts/spines/ui/ui_act_summer_herogift/ui_act_summer_herogift.atlas.txt deleted file mode 100644 index 53ef7a323..000000000 --- a/Assets/arts/spines/ui/ui_act_summer_herogift/ui_act_summer_herogift.atlas.txt +++ /dev/null @@ -1,106 +0,0 @@ -ui_act_summer_herogift.png -size:2048,2048 -filter:Linear,Linear -scale:1.17 -diban -bounds:911,1700,653,346 -dj_1 -bounds:762,981,100,99 -offsets:6,6,113,111 -dj_2 -bounds:762,981,100,99 -offsets:6,6,113,111 -dj_10 -bounds:506,719,59,31 -offsets:1,1,61,33 -rotate:90 -dj_11 -bounds:321,635,183,143 -offsets:1,1,185,145 -dj_12 -bounds:539,818,80,125 -dj_13 -bounds:219,178,67,128 -dj_14 -bounds:883,1154,21,41 -offsets:1,1,23,43 -dj_15 -bounds:539,775,21,41 -offsets:1,1,23,43 -dj_16 -bounds:1474,1623,75,75 -offsets:13,13,101,101 -dj_17 -bounds:1396,1623,76,75 -offsets:12,13,101,101 -dj_18 -bounds:1776,1784,127,121 -offsets:1,1,129,123 -rotate:90 -dj_19 -bounds:762,1197,162,148 -offsets:1,1,164,150 -rotate:90 -dj_20 -bounds:1566,1772,208,139 -dj_21 -bounds:1566,1726,89,44 -offsets:1,1,91,46 -dj_22 -bounds:144,97,71,49 -offsets:1,1,73,51 -dj_23 -bounds:762,835,55,51 -offsets:1,1,57,53 -dj_24 -bounds:2,308,302,262 -offsets:1,1,304,264 -dj_25 -bounds:762,1082,119,113 -dj_26 -bounds:911,1594,240,104 -dj_27 -bounds:2,148,215,158 -dj_28 -bounds:1904,1818,228,142 -rotate:90 -dj_29 -bounds:321,780,216,163 -dj_3 -bounds:762,888,92,91 -offsets:7,6,105,103 -dj_30 -bounds:762,1361,228,142 -rotate:90 -dj_31 -bounds:1566,1913,336,133 -dj_32 -bounds:2,1591,907,455 -offsets:2,2,910,459 -dj_33 -bounds:2,572,1017,317 -rotate:90 -dj_4 -bounds:2,9,140,137 -offsets:7,6,153,150 -dj_5 -bounds:2,9,140,137 -offsets:7,6,153,150 -dj_6 -bounds:1287,1608,107,90 -offsets:1,1,109,92 -dj_7 -bounds:321,572,61,68 -offsets:1,1,63,70 -rotate:90 -dj_8 -bounds:306,488,39,82 -offsets:1,1,41,84 -dj_9 -bounds:1153,1604,132,94 -kuang -bounds:321,945,644,304 -rotate:90 -tiaofu -bounds:627,814,775,133 -rotate:90 diff --git a/Assets/arts/spines/ui/ui_act_summer_herogift/ui_act_summer_herogift.atlas.txt.meta b/Assets/arts/spines/ui/ui_act_summer_herogift/ui_act_summer_herogift.atlas.txt.meta deleted file mode 100644 index f68c898aa..000000000 --- a/Assets/arts/spines/ui/ui_act_summer_herogift/ui_act_summer_herogift.atlas.txt.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 0832ea00e418b07489d5ec089773cdf8 -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_act_summer_herogift.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_summer_herogift/ui_act_summer_herogift.png b/Assets/arts/spines/ui/ui_act_summer_herogift/ui_act_summer_herogift.png deleted file mode 100644 index 4ecb8554c..000000000 Binary files a/Assets/arts/spines/ui/ui_act_summer_herogift/ui_act_summer_herogift.png and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_act_summer_herogift/ui_act_summer_herogift.png.meta b/Assets/arts/spines/ui/ui_act_summer_herogift/ui_act_summer_herogift.png.meta deleted file mode 100644 index fa466ee6e..000000000 --- a/Assets/arts/spines/ui/ui_act_summer_herogift/ui_act_summer_herogift.png.meta +++ /dev/null @@ -1,147 +0,0 @@ -fileFormatVersion: 2 -guid: fa46f236b18dde44a8ef76d70e595ece -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 1 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 0 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 0 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 47 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 1 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 50 - textureCompression: 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 - - serializedVersion: 3 - buildTarget: Server - 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: [] - nameFileIdTable: {} - spritePackingTag: - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: arts/spines/ui/ui_act_summer_herogift.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_summer_herogift/ui_act_summer_herogift.skel.bytes b/Assets/arts/spines/ui/ui_act_summer_herogift/ui_act_summer_herogift.skel.bytes deleted file mode 100644 index 3d805b0fc..000000000 Binary files a/Assets/arts/spines/ui/ui_act_summer_herogift/ui_act_summer_herogift.skel.bytes and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_act_summer_herogift/ui_act_summer_herogift.skel.bytes.meta b/Assets/arts/spines/ui/ui_act_summer_herogift/ui_act_summer_herogift.skel.bytes.meta deleted file mode 100644 index fe0d7483e..000000000 --- a/Assets/arts/spines/ui/ui_act_summer_herogift/ui_act_summer_herogift.skel.bytes.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: fde5889667049ac4ab3b249584ddd2de -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_act_summer_herogift.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_summer_herogift/ui_act_summer_herogift_atlas.asset b/Assets/arts/spines/ui/ui_act_summer_herogift/ui_act_summer_herogift_atlas.asset deleted file mode 100644 index c0a9bd33a..000000000 --- a/Assets/arts/spines/ui/ui_act_summer_herogift/ui_act_summer_herogift_atlas.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: a6b194f808b1af6499c93410e504af42, type: 3} - m_Name: ui_act_summer_herogift_atlas - m_EditorClassIdentifier: - textureLoadingMode: 0 - onDemandTextureLoader: {fileID: 0} - atlasFile: {fileID: 4900000, guid: 0832ea00e418b07489d5ec089773cdf8, type: 3} - materials: - - {fileID: 2100000, guid: 12e781341ac8dd94e8ddb9b37e6219b9, type: 2} diff --git a/Assets/arts/spines/ui/ui_act_summer_herogift/ui_act_summer_herogift_atlas.asset.meta b/Assets/arts/spines/ui/ui_act_summer_herogift/ui_act_summer_herogift_atlas.asset.meta deleted file mode 100644 index 8c9b7af7f..000000000 --- a/Assets/arts/spines/ui/ui_act_summer_herogift/ui_act_summer_herogift_atlas.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 3e3ac91e8ef2c164f876f3978eb996a7 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_act_summer_herogift.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_summer_herogift/ui_act_summer_herogift_material.mat b/Assets/arts/spines/ui/ui_act_summer_herogift/ui_act_summer_herogift_material.mat deleted file mode 100644 index a29894a05..000000000 --- a/Assets/arts/spines/ui/ui_act_summer_herogift/ui_act_summer_herogift_material.mat +++ /dev/null @@ -1,44 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!21 &2100000 -Material: - serializedVersion: 8 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: ui_act_summer_herogift_material - m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3} - m_ValidKeywords: - - _STRAIGHT_ALPHA_INPUT - m_InvalidKeywords: - - _USE8NEIGHBOURHOOD_ON - m_LightmapFlags: 4 - m_EnableInstancingVariants: 0 - m_DoubleSidedGI: 0 - m_CustomRenderQueue: -1 - stringTagMap: {} - disabledShaderPasses: [] - m_SavedProperties: - serializedVersion: 3 - m_TexEnvs: - - _MainTex: - m_Texture: {fileID: 2800000, guid: fa46f236b18dde44a8ef76d70e595ece, type: 3} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - m_Ints: [] - m_Floats: - - _Cutoff: 0.1 - - _OutlineMipLevel: 0 - - _OutlineOpaqueAlpha: 1 - - _OutlineReferenceTexWidth: 1024 - - _OutlineSmoothness: 1 - - _OutlineWidth: 3 - - _StencilComp: 8 - - _StencilRef: 1 - - _StraightAlphaInput: 1 - - _ThresholdEnd: 0.25 - - _Use8Neighbourhood: 1 - m_Colors: - - _OutlineColor: {r: 1, g: 1, b: 0, a: 1} - m_BuildTextureStacks: [] diff --git a/Assets/arts/spines/ui/ui_act_summer_herogift/ui_act_summer_herogift_material.mat.meta b/Assets/arts/spines/ui/ui_act_summer_herogift/ui_act_summer_herogift_material.mat.meta deleted file mode 100644 index b5bcbdff5..000000000 --- a/Assets/arts/spines/ui/ui_act_summer_herogift/ui_act_summer_herogift_material.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 12e781341ac8dd94e8ddb9b37e6219b9 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 2100000 - userData: - assetBundleName: arts/spines/ui/ui_act_summer_herogift.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_summer_herogift/ui_act_summer_herogift_skeletondata.asset b/Assets/arts/spines/ui/ui_act_summer_herogift/ui_act_summer_herogift_skeletondata.asset deleted file mode 100644 index 0ab16a030..000000000 --- a/Assets/arts/spines/ui/ui_act_summer_herogift/ui_act_summer_herogift_skeletondata.asset +++ /dev/null @@ -1,31 +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: f1b3b4b945939a54ea0b23d3396115fb, type: 3} - m_Name: ui_act_summer_herogift_skeletondata - m_EditorClassIdentifier: - atlasAssets: - - {fileID: 11400000, guid: 3e3ac91e8ef2c164f876f3978eb996a7, type: 2} - scale: 0.01 - skeletonJSON: {fileID: 4900000, guid: fde5889667049ac4ab3b249584ddd2de, type: 3} - isUpgradingBlendModeMaterials: 0 - blendModeMaterials: - requiresBlendModeMaterials: 0 - applyAdditiveMaterial: 0 - additiveMaterials: [] - multiplyMaterials: [] - screenMaterials: [] - skeletonDataModifiers: [] - fromAnimation: [] - toAnimation: [] - duration: [] - defaultMix: 0.2 - controller: {fileID: 0} diff --git a/Assets/arts/spines/ui/ui_act_summer_herogift/ui_act_summer_herogift_skeletondata.asset.meta b/Assets/arts/spines/ui/ui_act_summer_herogift/ui_act_summer_herogift_skeletondata.asset.meta deleted file mode 100644 index 6cb6e0c86..000000000 --- a/Assets/arts/spines/ui/ui_act_summer_herogift/ui_act_summer_herogift_skeletondata.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 4ac9ec1b52ca1c14b9e97a35df2a581c -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_act_summer_herogift.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_tourn_arena_title.meta b/Assets/arts/spines/ui/ui_act_tourn_arena_title.meta deleted file mode 100644 index 854238708..000000000 --- a/Assets/arts/spines/ui/ui_act_tourn_arena_title.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: da3dcafa94b123947a08e27a6747a7f6 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_tourn_arena_title/ui_act_tourn_arena_title.atlas.txt b/Assets/arts/spines/ui/ui_act_tourn_arena_title/ui_act_tourn_arena_title.atlas.txt deleted file mode 100644 index a24330d2e..000000000 --- a/Assets/arts/spines/ui/ui_act_tourn_arena_title/ui_act_tourn_arena_title.atlas.txt +++ /dev/null @@ -1,49 +0,0 @@ -ui_act_tourn_arena_title.png -size:1024,1024 -filter:Linear,Linear -duanwei -bounds:688,842,200,151 -offsets:1,1,202,153 -g1 -bounds:1,73,398,459 -offsets:7,27,413,487 -g2 -bounds:1,534,560,459 -offsets:9,27,579,487 -hao1 -bounds:401,343,189,158 -rotate:90 -hao2 -bounds:401,170,171,140 -offsets:1,1,173,142 -rotate:90 -hao3 -bounds:688,684,186,156 -offsets:1,1,188,158 -hao4 -bounds:688,542,171,140 -offsets:1,1,173,142 -qi -bounds:563,288,705,123 -rotate:90 -xx1 -bounds:1,29,42,42 -offsets:2,2,46,46 -xx2 -bounds:543,323,18,18 -offsets:1,1,21,20 -xx3 -bounds:688,514,26,26 -offsets:2,2,30,30 -xx4 -bounds:1,1,26,26 -offsets:2,2,30,30 -xx5 -bounds:401,140,28,28 -offsets:2,2,32,32 -xx6 -bounds:45,45,26,26 -offsets:2,2,29,30 -xx7 -bounds:890,961,33,32 -offsets:1,2,35,36 diff --git a/Assets/arts/spines/ui/ui_act_tourn_arena_title/ui_act_tourn_arena_title.atlas.txt.meta b/Assets/arts/spines/ui/ui_act_tourn_arena_title/ui_act_tourn_arena_title.atlas.txt.meta deleted file mode 100644 index 965aca3f0..000000000 --- a/Assets/arts/spines/ui/ui_act_tourn_arena_title/ui_act_tourn_arena_title.atlas.txt.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 47c9b03a616a2c1409f93f64319629c3 -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_act_tourn_arena_title.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_tourn_arena_title/ui_act_tourn_arena_title.png b/Assets/arts/spines/ui/ui_act_tourn_arena_title/ui_act_tourn_arena_title.png deleted file mode 100644 index 74c2aeb46..000000000 Binary files a/Assets/arts/spines/ui/ui_act_tourn_arena_title/ui_act_tourn_arena_title.png and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_act_tourn_arena_title/ui_act_tourn_arena_title.png.meta b/Assets/arts/spines/ui/ui_act_tourn_arena_title/ui_act_tourn_arena_title.png.meta deleted file mode 100644 index bf367cf2f..000000000 --- a/Assets/arts/spines/ui/ui_act_tourn_arena_title/ui_act_tourn_arena_title.png.meta +++ /dev/null @@ -1,147 +0,0 @@ -fileFormatVersion: 2 -guid: dea00c8a9f4918b4f9fc58e39471895b -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 1 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 0 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 0 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 47 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 1 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 50 - textureCompression: 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 - - serializedVersion: 3 - buildTarget: Server - 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: [] - nameFileIdTable: {} - spritePackingTag: - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: arts/spines/ui/ui_act_tourn_arena_title.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_tourn_arena_title/ui_act_tourn_arena_title.skel.bytes b/Assets/arts/spines/ui/ui_act_tourn_arena_title/ui_act_tourn_arena_title.skel.bytes deleted file mode 100644 index 30aa3a612..000000000 Binary files a/Assets/arts/spines/ui/ui_act_tourn_arena_title/ui_act_tourn_arena_title.skel.bytes and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_act_tourn_arena_title/ui_act_tourn_arena_title.skel.bytes.meta b/Assets/arts/spines/ui/ui_act_tourn_arena_title/ui_act_tourn_arena_title.skel.bytes.meta deleted file mode 100644 index eaf804e0f..000000000 --- a/Assets/arts/spines/ui/ui_act_tourn_arena_title/ui_act_tourn_arena_title.skel.bytes.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 6186b117e26ad1a41b0e83ba1e9d61a1 -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_act_tourn_arena_title.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_tourn_arena_title/ui_act_tourn_arena_title_atlas.asset b/Assets/arts/spines/ui/ui_act_tourn_arena_title/ui_act_tourn_arena_title_atlas.asset deleted file mode 100644 index 062927179..000000000 --- a/Assets/arts/spines/ui/ui_act_tourn_arena_title/ui_act_tourn_arena_title_atlas.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: a6b194f808b1af6499c93410e504af42, type: 3} - m_Name: ui_act_tourn_arena_title_atlas - m_EditorClassIdentifier: - textureLoadingMode: 0 - onDemandTextureLoader: {fileID: 0} - atlasFile: {fileID: 4900000, guid: 47c9b03a616a2c1409f93f64319629c3, type: 3} - materials: - - {fileID: 2100000, guid: 0c1dc93dde833c449a3de505be20410a, type: 2} diff --git a/Assets/arts/spines/ui/ui_act_tourn_arena_title/ui_act_tourn_arena_title_atlas.asset.meta b/Assets/arts/spines/ui/ui_act_tourn_arena_title/ui_act_tourn_arena_title_atlas.asset.meta deleted file mode 100644 index 072d63757..000000000 --- a/Assets/arts/spines/ui/ui_act_tourn_arena_title/ui_act_tourn_arena_title_atlas.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 2ebf52a5fa8c7df4a9776eeaa9e30bfa -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_act_tourn_arena_title.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_tourn_arena_title/ui_act_tourn_arena_title_material.mat b/Assets/arts/spines/ui/ui_act_tourn_arena_title/ui_act_tourn_arena_title_material.mat deleted file mode 100644 index 839562303..000000000 --- a/Assets/arts/spines/ui/ui_act_tourn_arena_title/ui_act_tourn_arena_title_material.mat +++ /dev/null @@ -1,44 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!21 &2100000 -Material: - serializedVersion: 8 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: ui_act_tourn_arena_title_material - m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3} - m_ValidKeywords: - - _STRAIGHT_ALPHA_INPUT - m_InvalidKeywords: - - _USE8NEIGHBOURHOOD_ON - m_LightmapFlags: 4 - m_EnableInstancingVariants: 0 - m_DoubleSidedGI: 0 - m_CustomRenderQueue: -1 - stringTagMap: {} - disabledShaderPasses: [] - m_SavedProperties: - serializedVersion: 3 - m_TexEnvs: - - _MainTex: - m_Texture: {fileID: 2800000, guid: dea00c8a9f4918b4f9fc58e39471895b, type: 3} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - m_Ints: [] - m_Floats: - - _Cutoff: 0.1 - - _OutlineMipLevel: 0 - - _OutlineOpaqueAlpha: 1 - - _OutlineReferenceTexWidth: 1024 - - _OutlineSmoothness: 1 - - _OutlineWidth: 3 - - _StencilComp: 8 - - _StencilRef: 1 - - _StraightAlphaInput: 1 - - _ThresholdEnd: 0.25 - - _Use8Neighbourhood: 1 - m_Colors: - - _OutlineColor: {r: 1, g: 1, b: 0, a: 1} - m_BuildTextureStacks: [] diff --git a/Assets/arts/spines/ui/ui_act_tourn_arena_title/ui_act_tourn_arena_title_material.mat.meta b/Assets/arts/spines/ui/ui_act_tourn_arena_title/ui_act_tourn_arena_title_material.mat.meta deleted file mode 100644 index 2013a3663..000000000 --- a/Assets/arts/spines/ui/ui_act_tourn_arena_title/ui_act_tourn_arena_title_material.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 0c1dc93dde833c449a3de505be20410a -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 2100000 - userData: - assetBundleName: arts/spines/ui/ui_act_tourn_arena_title.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_act_tourn_arena_title/ui_act_tourn_arena_title_skeletondata.asset b/Assets/arts/spines/ui/ui_act_tourn_arena_title/ui_act_tourn_arena_title_skeletondata.asset deleted file mode 100644 index e41c05b46..000000000 --- a/Assets/arts/spines/ui/ui_act_tourn_arena_title/ui_act_tourn_arena_title_skeletondata.asset +++ /dev/null @@ -1,31 +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: f1b3b4b945939a54ea0b23d3396115fb, type: 3} - m_Name: ui_act_tourn_arena_title_skeletondata - m_EditorClassIdentifier: - atlasAssets: - - {fileID: 11400000, guid: 2ebf52a5fa8c7df4a9776eeaa9e30bfa, type: 2} - scale: 0.01 - skeletonJSON: {fileID: 4900000, guid: 6186b117e26ad1a41b0e83ba1e9d61a1, type: 3} - isUpgradingBlendModeMaterials: 0 - blendModeMaterials: - requiresBlendModeMaterials: 0 - applyAdditiveMaterial: 0 - additiveMaterials: [] - multiplyMaterials: [] - screenMaterials: [] - skeletonDataModifiers: [] - fromAnimation: [] - toAnimation: [] - duration: [] - defaultMix: 0.2 - controller: {fileID: 0} diff --git a/Assets/arts/spines/ui/ui_act_tourn_arena_title/ui_act_tourn_arena_title_skeletondata.asset.meta b/Assets/arts/spines/ui/ui_act_tourn_arena_title/ui_act_tourn_arena_title_skeletondata.asset.meta deleted file mode 100644 index 179c1cde2..000000000 --- a/Assets/arts/spines/ui/ui_act_tourn_arena_title/ui_act_tourn_arena_title_skeletondata.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: a0a65f880e7800642b6d57d5c35c889a -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_act_tourn_arena_title.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_action_title_1.meta b/Assets/arts/spines/ui/ui_action_title_1.meta deleted file mode 100644 index c0f20b8a7..000000000 --- a/Assets/arts/spines/ui/ui_action_title_1.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: a5b15ce89b1abea458a4954ee6bdddf3 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_action_title_1/ui_action_title_1.atlas.txt b/Assets/arts/spines/ui/ui_action_title_1/ui_action_title_1.atlas.txt deleted file mode 100644 index a7bd2f0d9..000000000 --- a/Assets/arts/spines/ui/ui_action_title_1/ui_action_title_1.atlas.txt +++ /dev/null @@ -1,5 +0,0 @@ -ui_action_title_1.png -size:512,512 -filter:Linear,Linear -tiaofu -bounds:1,353,444,92 diff --git a/Assets/arts/spines/ui/ui_action_title_1/ui_action_title_1.atlas.txt.meta b/Assets/arts/spines/ui/ui_action_title_1/ui_action_title_1.atlas.txt.meta deleted file mode 100644 index c070c7dff..000000000 --- a/Assets/arts/spines/ui/ui_action_title_1/ui_action_title_1.atlas.txt.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: c31e85ff164f56f43bafe92a2ac824fc -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_action_title_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_action_title_1/ui_action_title_1.png b/Assets/arts/spines/ui/ui_action_title_1/ui_action_title_1.png deleted file mode 100644 index 56c963bef..000000000 Binary files a/Assets/arts/spines/ui/ui_action_title_1/ui_action_title_1.png and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_action_title_1/ui_action_title_1.png.meta b/Assets/arts/spines/ui/ui_action_title_1/ui_action_title_1.png.meta deleted file mode 100644 index 7eb99506e..000000000 --- a/Assets/arts/spines/ui/ui_action_title_1/ui_action_title_1.png.meta +++ /dev/null @@ -1,147 +0,0 @@ -fileFormatVersion: 2 -guid: fc396c6c6ab8e8a40991b035b6f6f5c2 -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 1 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 0 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 0 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 47 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 1 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 50 - textureCompression: 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 - - serializedVersion: 3 - buildTarget: Server - 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: [] - nameFileIdTable: {} - spritePackingTag: - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: arts/spines/ui/ui_action_title_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_action_title_1/ui_action_title_1.skel.bytes b/Assets/arts/spines/ui/ui_action_title_1/ui_action_title_1.skel.bytes deleted file mode 100644 index b6afd6092..000000000 Binary files a/Assets/arts/spines/ui/ui_action_title_1/ui_action_title_1.skel.bytes and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_action_title_1/ui_action_title_1.skel.bytes.meta b/Assets/arts/spines/ui/ui_action_title_1/ui_action_title_1.skel.bytes.meta deleted file mode 100644 index 56f9e410c..000000000 --- a/Assets/arts/spines/ui/ui_action_title_1/ui_action_title_1.skel.bytes.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 73cc5f92f7a48d34991bf8a9ed00afbd -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_action_title_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_action_title_1/ui_action_title_1_atlas.asset b/Assets/arts/spines/ui/ui_action_title_1/ui_action_title_1_atlas.asset deleted file mode 100644 index 51c0c7a92..000000000 --- a/Assets/arts/spines/ui/ui_action_title_1/ui_action_title_1_atlas.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: a6b194f808b1af6499c93410e504af42, type: 3} - m_Name: ui_action_title_1_atlas - m_EditorClassIdentifier: - textureLoadingMode: 0 - onDemandTextureLoader: {fileID: 0} - atlasFile: {fileID: 4900000, guid: c31e85ff164f56f43bafe92a2ac824fc, type: 3} - materials: - - {fileID: 2100000, guid: 1bc7e22e389fe3f47863d12f68c99a65, type: 2} diff --git a/Assets/arts/spines/ui/ui_action_title_1/ui_action_title_1_atlas.asset.meta b/Assets/arts/spines/ui/ui_action_title_1/ui_action_title_1_atlas.asset.meta deleted file mode 100644 index 5b419a6ba..000000000 --- a/Assets/arts/spines/ui/ui_action_title_1/ui_action_title_1_atlas.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 0037a260414b95844a7af1803360f4da -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_action_title_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_action_title_1/ui_action_title_1_material.mat b/Assets/arts/spines/ui/ui_action_title_1/ui_action_title_1_material.mat deleted file mode 100644 index 8461d4430..000000000 --- a/Assets/arts/spines/ui/ui_action_title_1/ui_action_title_1_material.mat +++ /dev/null @@ -1,44 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!21 &2100000 -Material: - serializedVersion: 8 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: ui_action_title_1_material - m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3} - m_ValidKeywords: - - _STRAIGHT_ALPHA_INPUT - m_InvalidKeywords: - - _USE8NEIGHBOURHOOD_ON - m_LightmapFlags: 4 - m_EnableInstancingVariants: 0 - m_DoubleSidedGI: 0 - m_CustomRenderQueue: -1 - stringTagMap: {} - disabledShaderPasses: [] - m_SavedProperties: - serializedVersion: 3 - m_TexEnvs: - - _MainTex: - m_Texture: {fileID: 2800000, guid: fc396c6c6ab8e8a40991b035b6f6f5c2, type: 3} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - m_Ints: [] - m_Floats: - - _Cutoff: 0.1 - - _OutlineMipLevel: 0 - - _OutlineOpaqueAlpha: 1 - - _OutlineReferenceTexWidth: 1024 - - _OutlineSmoothness: 1 - - _OutlineWidth: 3 - - _StencilComp: 8 - - _StencilRef: 1 - - _StraightAlphaInput: 1 - - _ThresholdEnd: 0.25 - - _Use8Neighbourhood: 1 - m_Colors: - - _OutlineColor: {r: 1, g: 1, b: 0, a: 1} - m_BuildTextureStacks: [] diff --git a/Assets/arts/spines/ui/ui_action_title_1/ui_action_title_1_material.mat.meta b/Assets/arts/spines/ui/ui_action_title_1/ui_action_title_1_material.mat.meta deleted file mode 100644 index c2d463ecf..000000000 --- a/Assets/arts/spines/ui/ui_action_title_1/ui_action_title_1_material.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 1bc7e22e389fe3f47863d12f68c99a65 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 2100000 - userData: - assetBundleName: arts/spines/ui/ui_action_title_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_action_title_1/ui_action_title_1_skeletondata.asset b/Assets/arts/spines/ui/ui_action_title_1/ui_action_title_1_skeletondata.asset deleted file mode 100644 index 4207cdbf0..000000000 --- a/Assets/arts/spines/ui/ui_action_title_1/ui_action_title_1_skeletondata.asset +++ /dev/null @@ -1,31 +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: f1b3b4b945939a54ea0b23d3396115fb, type: 3} - m_Name: ui_action_title_1_skeletondata - m_EditorClassIdentifier: - atlasAssets: - - {fileID: 11400000, guid: 0037a260414b95844a7af1803360f4da, type: 2} - scale: 0.01 - skeletonJSON: {fileID: 4900000, guid: 73cc5f92f7a48d34991bf8a9ed00afbd, type: 3} - isUpgradingBlendModeMaterials: 0 - blendModeMaterials: - requiresBlendModeMaterials: 0 - applyAdditiveMaterial: 0 - additiveMaterials: [] - multiplyMaterials: [] - screenMaterials: [] - skeletonDataModifiers: [] - fromAnimation: [] - toAnimation: [] - duration: [] - defaultMix: 0 - controller: {fileID: 0} diff --git a/Assets/arts/spines/ui/ui_action_title_1/ui_action_title_1_skeletondata.asset.meta b/Assets/arts/spines/ui/ui_action_title_1/ui_action_title_1_skeletondata.asset.meta deleted file mode 100644 index b86b1967d..000000000 --- a/Assets/arts/spines/ui/ui_action_title_1/ui_action_title_1_skeletondata.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: c4480146ab28a1942950f421dce90e96 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_action_title_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_arena_pairing.meta b/Assets/arts/spines/ui/ui_arena_pairing.meta deleted file mode 100644 index 91d5f3ca9..000000000 --- a/Assets/arts/spines/ui/ui_arena_pairing.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: f874c5abc404da549978a4ab0342e4f4 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_arena_pairing/ui_arena_pairing.atlas.txt b/Assets/arts/spines/ui/ui_arena_pairing/ui_arena_pairing.atlas.txt deleted file mode 100644 index 64719a8d3..000000000 --- a/Assets/arts/spines/ui/ui_arena_pairing/ui_arena_pairing.atlas.txt +++ /dev/null @@ -1,11 +0,0 @@ -ui_arena_pairing.png -size:512,512 -filter:Linear,Linear -1 -bounds:2,130,127,126 -offsets:1,1,129,128 -2 -bounds:2,2,127,126 -offsets:1,1,129,128 -xx -bounds:131,219,37,37 diff --git a/Assets/arts/spines/ui/ui_arena_pairing/ui_arena_pairing.atlas.txt.meta b/Assets/arts/spines/ui/ui_arena_pairing/ui_arena_pairing.atlas.txt.meta deleted file mode 100644 index 861fd96a2..000000000 --- a/Assets/arts/spines/ui/ui_arena_pairing/ui_arena_pairing.atlas.txt.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 6bc120384695100489877975b2eb838c -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_arena_pairing.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_arena_pairing/ui_arena_pairing.png b/Assets/arts/spines/ui/ui_arena_pairing/ui_arena_pairing.png deleted file mode 100644 index 3fcc2da47..000000000 Binary files a/Assets/arts/spines/ui/ui_arena_pairing/ui_arena_pairing.png and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_arena_pairing/ui_arena_pairing.png.meta b/Assets/arts/spines/ui/ui_arena_pairing/ui_arena_pairing.png.meta deleted file mode 100644 index 196a1c283..000000000 --- a/Assets/arts/spines/ui/ui_arena_pairing/ui_arena_pairing.png.meta +++ /dev/null @@ -1,147 +0,0 @@ -fileFormatVersion: 2 -guid: 6f1deced623a6d040b770d593989ad67 -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 1 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 0 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 0 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 47 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 1 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 50 - textureCompression: 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 - - serializedVersion: 3 - buildTarget: Server - 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: [] - nameFileIdTable: {} - spritePackingTag: - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: arts/spines/ui/ui_arena_pairing.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_arena_pairing/ui_arena_pairing.skel.bytes b/Assets/arts/spines/ui/ui_arena_pairing/ui_arena_pairing.skel.bytes deleted file mode 100644 index f5105e666..000000000 Binary files a/Assets/arts/spines/ui/ui_arena_pairing/ui_arena_pairing.skel.bytes and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_arena_pairing/ui_arena_pairing.skel.bytes.meta b/Assets/arts/spines/ui/ui_arena_pairing/ui_arena_pairing.skel.bytes.meta deleted file mode 100644 index 4f1ccf22a..000000000 --- a/Assets/arts/spines/ui/ui_arena_pairing/ui_arena_pairing.skel.bytes.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: e8975aa4f18207d409f8cd0734dd501e -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_arena_pairing.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_arena_pairing/ui_arena_pairing_atlas.asset b/Assets/arts/spines/ui/ui_arena_pairing/ui_arena_pairing_atlas.asset deleted file mode 100644 index 3fcdf37c3..000000000 --- a/Assets/arts/spines/ui/ui_arena_pairing/ui_arena_pairing_atlas.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: a6b194f808b1af6499c93410e504af42, type: 3} - m_Name: ui_arena_pairing_atlas - m_EditorClassIdentifier: - textureLoadingMode: 0 - onDemandTextureLoader: {fileID: 0} - atlasFile: {fileID: 4900000, guid: 6bc120384695100489877975b2eb838c, type: 3} - materials: - - {fileID: 2100000, guid: 10f6256d2e315fc448e4bb5e1095e201, type: 2} diff --git a/Assets/arts/spines/ui/ui_arena_pairing/ui_arena_pairing_atlas.asset.meta b/Assets/arts/spines/ui/ui_arena_pairing/ui_arena_pairing_atlas.asset.meta deleted file mode 100644 index eab87bf1c..000000000 --- a/Assets/arts/spines/ui/ui_arena_pairing/ui_arena_pairing_atlas.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 3132d7f0b0284a340bc4684f1e1236fc -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_arena_pairing.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_arena_pairing/ui_arena_pairing_material.mat b/Assets/arts/spines/ui/ui_arena_pairing/ui_arena_pairing_material.mat deleted file mode 100644 index 75f46e7b8..000000000 --- a/Assets/arts/spines/ui/ui_arena_pairing/ui_arena_pairing_material.mat +++ /dev/null @@ -1,44 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!21 &2100000 -Material: - serializedVersion: 8 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: ui_arena_pairing_material - m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3} - m_ValidKeywords: - - _STRAIGHT_ALPHA_INPUT - m_InvalidKeywords: - - _USE8NEIGHBOURHOOD_ON - m_LightmapFlags: 4 - m_EnableInstancingVariants: 0 - m_DoubleSidedGI: 0 - m_CustomRenderQueue: -1 - stringTagMap: {} - disabledShaderPasses: [] - m_SavedProperties: - serializedVersion: 3 - m_TexEnvs: - - _MainTex: - m_Texture: {fileID: 2800000, guid: 6f1deced623a6d040b770d593989ad67, type: 3} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - m_Ints: [] - m_Floats: - - _Cutoff: 0.1 - - _OutlineMipLevel: 0 - - _OutlineOpaqueAlpha: 1 - - _OutlineReferenceTexWidth: 1024 - - _OutlineSmoothness: 1 - - _OutlineWidth: 3 - - _StencilComp: 8 - - _StencilRef: 1 - - _StraightAlphaInput: 1 - - _ThresholdEnd: 0.25 - - _Use8Neighbourhood: 1 - m_Colors: - - _OutlineColor: {r: 1, g: 1, b: 0, a: 1} - m_BuildTextureStacks: [] diff --git a/Assets/arts/spines/ui/ui_arena_pairing/ui_arena_pairing_material.mat.meta b/Assets/arts/spines/ui/ui_arena_pairing/ui_arena_pairing_material.mat.meta deleted file mode 100644 index 0a161ace8..000000000 --- a/Assets/arts/spines/ui/ui_arena_pairing/ui_arena_pairing_material.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 10f6256d2e315fc448e4bb5e1095e201 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 2100000 - userData: - assetBundleName: arts/spines/ui/ui_arena_pairing.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_arena_pairing/ui_arena_pairing_skeletondata.asset b/Assets/arts/spines/ui/ui_arena_pairing/ui_arena_pairing_skeletondata.asset deleted file mode 100644 index 1e4976905..000000000 --- a/Assets/arts/spines/ui/ui_arena_pairing/ui_arena_pairing_skeletondata.asset +++ /dev/null @@ -1,31 +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: f1b3b4b945939a54ea0b23d3396115fb, type: 3} - m_Name: ui_arena_pairing_skeletondata - m_EditorClassIdentifier: - atlasAssets: - - {fileID: 11400000, guid: 3132d7f0b0284a340bc4684f1e1236fc, type: 2} - scale: 0.01 - skeletonJSON: {fileID: 4900000, guid: e8975aa4f18207d409f8cd0734dd501e, type: 3} - isUpgradingBlendModeMaterials: 0 - blendModeMaterials: - requiresBlendModeMaterials: 0 - applyAdditiveMaterial: 0 - additiveMaterials: [] - multiplyMaterials: [] - screenMaterials: [] - skeletonDataModifiers: [] - fromAnimation: [] - toAnimation: [] - duration: [] - defaultMix: 0.2 - controller: {fileID: 0} diff --git a/Assets/arts/spines/ui/ui_arena_pairing/ui_arena_pairing_skeletondata.asset.meta b/Assets/arts/spines/ui/ui_arena_pairing/ui_arena_pairing_skeletondata.asset.meta deleted file mode 100644 index b7a8e49b2..000000000 --- a/Assets/arts/spines/ui/ui_arena_pairing/ui_arena_pairing_skeletondata.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: d1dfe2d43027fbc4d8cc82c6a0a13345 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_arena_pairing.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_arena_pairing_point.meta b/Assets/arts/spines/ui/ui_arena_pairing_point.meta deleted file mode 100644 index b04d8a99b..000000000 --- a/Assets/arts/spines/ui/ui_arena_pairing_point.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: a054f41ff4c72fd4caa724caad1f60cd -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_arena_pairing_point/ui_arena_pairing_point.atlas.txt b/Assets/arts/spines/ui/ui_arena_pairing_point/ui_arena_pairing_point.atlas.txt deleted file mode 100644 index 27d340461..000000000 --- a/Assets/arts/spines/ui/ui_arena_pairing_point/ui_arena_pairing_point.atlas.txt +++ /dev/null @@ -1,5 +0,0 @@ -ui_arena_pairing_point.png -size:32,32 -filter:Linear,Linear -dian -bounds:2,2,13,13 diff --git a/Assets/arts/spines/ui/ui_arena_pairing_point/ui_arena_pairing_point.atlas.txt.meta b/Assets/arts/spines/ui/ui_arena_pairing_point/ui_arena_pairing_point.atlas.txt.meta deleted file mode 100644 index 3f6fa693c..000000000 --- a/Assets/arts/spines/ui/ui_arena_pairing_point/ui_arena_pairing_point.atlas.txt.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: d91082c3917955a4b8d8d23ea585e25b -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_arena_pairing_point.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_arena_pairing_point/ui_arena_pairing_point.png b/Assets/arts/spines/ui/ui_arena_pairing_point/ui_arena_pairing_point.png deleted file mode 100644 index 943da4ac9..000000000 Binary files a/Assets/arts/spines/ui/ui_arena_pairing_point/ui_arena_pairing_point.png and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_arena_pairing_point/ui_arena_pairing_point.png.meta b/Assets/arts/spines/ui/ui_arena_pairing_point/ui_arena_pairing_point.png.meta deleted file mode 100644 index c4daf87d3..000000000 --- a/Assets/arts/spines/ui/ui_arena_pairing_point/ui_arena_pairing_point.png.meta +++ /dev/null @@ -1,147 +0,0 @@ -fileFormatVersion: 2 -guid: fa2cf90018debfd4e9130b3d6a62ab64 -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 1 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 0 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 0 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 47 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 1 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 50 - textureCompression: 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 - - serializedVersion: 3 - buildTarget: Server - 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: [] - nameFileIdTable: {} - spritePackingTag: - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: arts/spines/ui/ui_arena_pairing_point.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_arena_pairing_point/ui_arena_pairing_point.skel.bytes b/Assets/arts/spines/ui/ui_arena_pairing_point/ui_arena_pairing_point.skel.bytes deleted file mode 100644 index 2ca64f5e2..000000000 Binary files a/Assets/arts/spines/ui/ui_arena_pairing_point/ui_arena_pairing_point.skel.bytes and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_arena_pairing_point/ui_arena_pairing_point.skel.bytes.meta b/Assets/arts/spines/ui/ui_arena_pairing_point/ui_arena_pairing_point.skel.bytes.meta deleted file mode 100644 index 28e7eb259..000000000 --- a/Assets/arts/spines/ui/ui_arena_pairing_point/ui_arena_pairing_point.skel.bytes.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: bba9034a0d1f54e4387da4273170b930 -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_arena_pairing_point.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_arena_pairing_point/ui_arena_pairing_point_atlas.asset b/Assets/arts/spines/ui/ui_arena_pairing_point/ui_arena_pairing_point_atlas.asset deleted file mode 100644 index 1aeb634a5..000000000 --- a/Assets/arts/spines/ui/ui_arena_pairing_point/ui_arena_pairing_point_atlas.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: a6b194f808b1af6499c93410e504af42, type: 3} - m_Name: ui_arena_pairing_point_atlas - m_EditorClassIdentifier: - textureLoadingMode: 0 - onDemandTextureLoader: {fileID: 0} - atlasFile: {fileID: 4900000, guid: d91082c3917955a4b8d8d23ea585e25b, type: 3} - materials: - - {fileID: 2100000, guid: 9810b3ce88d45e948a7380f3746168cd, type: 2} diff --git a/Assets/arts/spines/ui/ui_arena_pairing_point/ui_arena_pairing_point_atlas.asset.meta b/Assets/arts/spines/ui/ui_arena_pairing_point/ui_arena_pairing_point_atlas.asset.meta deleted file mode 100644 index be6897fdc..000000000 --- a/Assets/arts/spines/ui/ui_arena_pairing_point/ui_arena_pairing_point_atlas.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 905cb3e64c410ca49a581be33434a44d -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_arena_pairing_point.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_arena_pairing_point/ui_arena_pairing_point_material.mat b/Assets/arts/spines/ui/ui_arena_pairing_point/ui_arena_pairing_point_material.mat deleted file mode 100644 index 8a3de7c59..000000000 --- a/Assets/arts/spines/ui/ui_arena_pairing_point/ui_arena_pairing_point_material.mat +++ /dev/null @@ -1,44 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!21 &2100000 -Material: - serializedVersion: 8 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: ui_arena_pairing_point_material - m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3} - m_ValidKeywords: - - _STRAIGHT_ALPHA_INPUT - m_InvalidKeywords: - - _USE8NEIGHBOURHOOD_ON - m_LightmapFlags: 4 - m_EnableInstancingVariants: 0 - m_DoubleSidedGI: 0 - m_CustomRenderQueue: -1 - stringTagMap: {} - disabledShaderPasses: [] - m_SavedProperties: - serializedVersion: 3 - m_TexEnvs: - - _MainTex: - m_Texture: {fileID: 2800000, guid: fa2cf90018debfd4e9130b3d6a62ab64, type: 3} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - m_Ints: [] - m_Floats: - - _Cutoff: 0.1 - - _OutlineMipLevel: 0 - - _OutlineOpaqueAlpha: 1 - - _OutlineReferenceTexWidth: 1024 - - _OutlineSmoothness: 1 - - _OutlineWidth: 3 - - _StencilComp: 8 - - _StencilRef: 1 - - _StraightAlphaInput: 1 - - _ThresholdEnd: 0.25 - - _Use8Neighbourhood: 1 - m_Colors: - - _OutlineColor: {r: 1, g: 1, b: 0, a: 1} - m_BuildTextureStacks: [] diff --git a/Assets/arts/spines/ui/ui_arena_pairing_point/ui_arena_pairing_point_material.mat.meta b/Assets/arts/spines/ui/ui_arena_pairing_point/ui_arena_pairing_point_material.mat.meta deleted file mode 100644 index 65404707b..000000000 --- a/Assets/arts/spines/ui/ui_arena_pairing_point/ui_arena_pairing_point_material.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 9810b3ce88d45e948a7380f3746168cd -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 2100000 - userData: - assetBundleName: arts/spines/ui/ui_arena_pairing_point.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_arena_pairing_point/ui_arena_pairing_point_skeletondata.asset b/Assets/arts/spines/ui/ui_arena_pairing_point/ui_arena_pairing_point_skeletondata.asset deleted file mode 100644 index c527f4bf4..000000000 --- a/Assets/arts/spines/ui/ui_arena_pairing_point/ui_arena_pairing_point_skeletondata.asset +++ /dev/null @@ -1,31 +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: f1b3b4b945939a54ea0b23d3396115fb, type: 3} - m_Name: ui_arena_pairing_point_skeletondata - m_EditorClassIdentifier: - atlasAssets: - - {fileID: 11400000, guid: 905cb3e64c410ca49a581be33434a44d, type: 2} - scale: 0.01 - skeletonJSON: {fileID: 4900000, guid: bba9034a0d1f54e4387da4273170b930, type: 3} - isUpgradingBlendModeMaterials: 0 - blendModeMaterials: - requiresBlendModeMaterials: 0 - applyAdditiveMaterial: 0 - additiveMaterials: [] - multiplyMaterials: [] - screenMaterials: [] - skeletonDataModifiers: [] - fromAnimation: [] - toAnimation: [] - duration: [] - defaultMix: 0.2 - controller: {fileID: 0} diff --git a/Assets/arts/spines/ui/ui_arena_pairing_point/ui_arena_pairing_point_skeletondata.asset.meta b/Assets/arts/spines/ui/ui_arena_pairing_point/ui_arena_pairing_point_skeletondata.asset.meta deleted file mode 100644 index c8ce31f91..000000000 --- a/Assets/arts/spines/ui/ui_arena_pairing_point/ui_arena_pairing_point_skeletondata.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 04e5e11755508dd4f89978847e85f899 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_arena_pairing_point.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_battle_result_star_1.meta b/Assets/arts/spines/ui/ui_battle_result_star_1.meta deleted file mode 100644 index 734a9aac8..000000000 --- a/Assets/arts/spines/ui/ui_battle_result_star_1.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 0c13b065588a6c344b41a16f88bbb559 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_battle_result_star_1/ui_battle_result_star_1.atlas.txt b/Assets/arts/spines/ui/ui_battle_result_star_1/ui_battle_result_star_1.atlas.txt deleted file mode 100644 index 8f63204d0..000000000 --- a/Assets/arts/spines/ui/ui_battle_result_star_1/ui_battle_result_star_1.atlas.txt +++ /dev/null @@ -1,21 +0,0 @@ -ui_battle_result_star_1.png -size:512,512 -filter:Linear,Linear -xx -bounds:410,410,54,54 -xx1_1 -bounds:2,58,128,124 -xx1_2 -bounds:282,342,126,122 -offsets:1,1,128,124 -xx2_1 -bounds:152,339,128,125 -xx2_2 -bounds:132,57,125,123 -offsets:1,1,128,125 -rotate:90 -xx3_1 -bounds:2,324,148,140 -xx3_2 -bounds:2,184,146,138 -offsets:1,1,148,140 diff --git a/Assets/arts/spines/ui/ui_battle_result_star_1/ui_battle_result_star_1.atlas.txt.meta b/Assets/arts/spines/ui/ui_battle_result_star_1/ui_battle_result_star_1.atlas.txt.meta deleted file mode 100644 index ea45c77de..000000000 --- a/Assets/arts/spines/ui/ui_battle_result_star_1/ui_battle_result_star_1.atlas.txt.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 84f6cac7e98b5274c92b35bc302fe418 -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_battle_result_star_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_battle_result_star_1/ui_battle_result_star_1.png b/Assets/arts/spines/ui/ui_battle_result_star_1/ui_battle_result_star_1.png deleted file mode 100644 index e28efa092..000000000 Binary files a/Assets/arts/spines/ui/ui_battle_result_star_1/ui_battle_result_star_1.png and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_battle_result_star_1/ui_battle_result_star_1.png.meta b/Assets/arts/spines/ui/ui_battle_result_star_1/ui_battle_result_star_1.png.meta deleted file mode 100644 index 779791770..000000000 --- a/Assets/arts/spines/ui/ui_battle_result_star_1/ui_battle_result_star_1.png.meta +++ /dev/null @@ -1,147 +0,0 @@ -fileFormatVersion: 2 -guid: 4598b2cc71f72eb48a13c1cacf2cf522 -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 1 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 0 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 0 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 47 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 1 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 50 - textureCompression: 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 - - serializedVersion: 3 - buildTarget: Server - 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: [] - nameFileIdTable: {} - spritePackingTag: - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: arts/spines/ui/ui_battle_result_star_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_battle_result_star_1/ui_battle_result_star_1.skel.bytes b/Assets/arts/spines/ui/ui_battle_result_star_1/ui_battle_result_star_1.skel.bytes deleted file mode 100644 index 57a1277cc..000000000 Binary files a/Assets/arts/spines/ui/ui_battle_result_star_1/ui_battle_result_star_1.skel.bytes and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_battle_result_star_1/ui_battle_result_star_1.skel.bytes.meta b/Assets/arts/spines/ui/ui_battle_result_star_1/ui_battle_result_star_1.skel.bytes.meta deleted file mode 100644 index 444935d7a..000000000 --- a/Assets/arts/spines/ui/ui_battle_result_star_1/ui_battle_result_star_1.skel.bytes.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: fefc7262e75a9444c96f7424808b70ed -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_battle_result_star_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_battle_result_star_1/ui_battle_result_star_1_atlas.asset b/Assets/arts/spines/ui/ui_battle_result_star_1/ui_battle_result_star_1_atlas.asset deleted file mode 100644 index 0a86a152f..000000000 --- a/Assets/arts/spines/ui/ui_battle_result_star_1/ui_battle_result_star_1_atlas.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: a6b194f808b1af6499c93410e504af42, type: 3} - m_Name: ui_battle_result_star_1_atlas - m_EditorClassIdentifier: - textureLoadingMode: 0 - onDemandTextureLoader: {fileID: 0} - atlasFile: {fileID: 4900000, guid: 84f6cac7e98b5274c92b35bc302fe418, type: 3} - materials: - - {fileID: 2100000, guid: 0303d712cdc1961449f3aad342d8e3ca, type: 2} diff --git a/Assets/arts/spines/ui/ui_battle_result_star_1/ui_battle_result_star_1_atlas.asset.meta b/Assets/arts/spines/ui/ui_battle_result_star_1/ui_battle_result_star_1_atlas.asset.meta deleted file mode 100644 index ed3d64b78..000000000 --- a/Assets/arts/spines/ui/ui_battle_result_star_1/ui_battle_result_star_1_atlas.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 2f96acbed6217124c8a206be6593b006 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_battle_result_star_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_battle_result_star_1/ui_battle_result_star_1_material.mat b/Assets/arts/spines/ui/ui_battle_result_star_1/ui_battle_result_star_1_material.mat deleted file mode 100644 index fba46c2ba..000000000 --- a/Assets/arts/spines/ui/ui_battle_result_star_1/ui_battle_result_star_1_material.mat +++ /dev/null @@ -1,44 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!21 &2100000 -Material: - serializedVersion: 8 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: ui_battle_result_star_1_material - m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3} - m_ValidKeywords: - - _STRAIGHT_ALPHA_INPUT - m_InvalidKeywords: - - _USE8NEIGHBOURHOOD_ON - m_LightmapFlags: 4 - m_EnableInstancingVariants: 0 - m_DoubleSidedGI: 0 - m_CustomRenderQueue: -1 - stringTagMap: {} - disabledShaderPasses: [] - m_SavedProperties: - serializedVersion: 3 - m_TexEnvs: - - _MainTex: - m_Texture: {fileID: 2800000, guid: 4598b2cc71f72eb48a13c1cacf2cf522, type: 3} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - m_Ints: [] - m_Floats: - - _Cutoff: 0.1 - - _OutlineMipLevel: 0 - - _OutlineOpaqueAlpha: 1 - - _OutlineReferenceTexWidth: 1024 - - _OutlineSmoothness: 1 - - _OutlineWidth: 3 - - _StencilComp: 8 - - _StencilRef: 1 - - _StraightAlphaInput: 1 - - _ThresholdEnd: 0.25 - - _Use8Neighbourhood: 1 - m_Colors: - - _OutlineColor: {r: 1, g: 1, b: 0, a: 1} - m_BuildTextureStacks: [] diff --git a/Assets/arts/spines/ui/ui_battle_result_star_1/ui_battle_result_star_1_material.mat.meta b/Assets/arts/spines/ui/ui_battle_result_star_1/ui_battle_result_star_1_material.mat.meta deleted file mode 100644 index 6cc6be83a..000000000 --- a/Assets/arts/spines/ui/ui_battle_result_star_1/ui_battle_result_star_1_material.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 0303d712cdc1961449f3aad342d8e3ca -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 2100000 - userData: - assetBundleName: arts/spines/ui/ui_battle_result_star_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_battle_result_star_1/ui_battle_result_star_1_skeletondata.asset b/Assets/arts/spines/ui/ui_battle_result_star_1/ui_battle_result_star_1_skeletondata.asset deleted file mode 100644 index 000816f50..000000000 --- a/Assets/arts/spines/ui/ui_battle_result_star_1/ui_battle_result_star_1_skeletondata.asset +++ /dev/null @@ -1,31 +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: f1b3b4b945939a54ea0b23d3396115fb, type: 3} - m_Name: ui_battle_result_star_1_skeletondata - m_EditorClassIdentifier: - atlasAssets: - - {fileID: 11400000, guid: 2f96acbed6217124c8a206be6593b006, type: 2} - scale: 0.01 - skeletonJSON: {fileID: 4900000, guid: fefc7262e75a9444c96f7424808b70ed, type: 3} - isUpgradingBlendModeMaterials: 0 - blendModeMaterials: - requiresBlendModeMaterials: 0 - applyAdditiveMaterial: 0 - additiveMaterials: [] - multiplyMaterials: [] - screenMaterials: [] - skeletonDataModifiers: [] - fromAnimation: [] - toAnimation: [] - duration: [] - defaultMix: 0.2 - controller: {fileID: 0} diff --git a/Assets/arts/spines/ui/ui_battle_result_star_1/ui_battle_result_star_1_skeletondata.asset.meta b/Assets/arts/spines/ui/ui_battle_result_star_1/ui_battle_result_star_1_skeletondata.asset.meta deleted file mode 100644 index 9368c955c..000000000 --- a/Assets/arts/spines/ui/ui_battle_result_star_1/ui_battle_result_star_1_skeletondata.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 1c669fa855ac19447bb54a5585a87047 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_battle_result_star_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_bounty_banner.meta b/Assets/arts/spines/ui/ui_bounty_banner.meta deleted file mode 100644 index ebae38dad..000000000 --- a/Assets/arts/spines/ui/ui_bounty_banner.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: ad202a575d2aefb4fb7797978eb27848 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_bounty_banner/ui_bounty_banner.atlas.txt b/Assets/arts/spines/ui/ui_bounty_banner/ui_bounty_banner.atlas.txt deleted file mode 100644 index 1e02daddd..000000000 --- a/Assets/arts/spines/ui/ui_bounty_banner/ui_bounty_banner.atlas.txt +++ /dev/null @@ -1,90 +0,0 @@ -ui_bounty_banner.png -size:2048,2048 -filter:Linear,Linear -scale:1.17 -banner_1 -bounds:1166,1386,21,41 -offsets:1,1,23,43 -banner_10 -bounds:771,1357,393,366 -offsets:0,1,393,367 -banner_11 -bounds:1806,1876,193,166 -banner_12 -bounds:1502,1727,102,51 -offsets:1,1,104,53 -banner_13 -bounds:340,62,127,121 -offsets:1,1,129,123 -rotate:90 -banner_14 -bounds:1806,1810,64,138 -rotate:90 -banner_15 -bounds:1397,1599,96,124 -banner_16 -bounds:664,936,162,148 -offsets:1,1,164,150 -rotate:90 -banner_17 -bounds:989,1208,147,187 -rotate:90 -banner_18 -bounds:1166,1429,208,139 -banner_19 -bounds:2,7,94,47 -offsets:1,1,96,49 -banner_2 -bounds:664,893,21,41 -offsets:1,1,23,43 -banner_20 -bounds:2001,1969,73,41 -offsets:1,1,75,43 -rotate:90 -banner_21 -bounds:1502,1780,302,262 -offsets:1,1,304,264 -banner_22 -bounds:558,717,143,147 -banner_23 -bounds:459,609,255,97 -rotate:90 -banner_24 -bounds:1166,1570,229,153 -banner_25 -bounds:771,1188,216,167 -banner_26 -bounds:2,56,336,133 -banner_27 -bounds:2,191,907,455 -offsets:2,2,910,459 -rotate:90 -banner_28 -bounds:2,1100,767,623 -offsets:25,125,819,766 -banner_29 -bounds:2,1725,1498,317 -offsets:1,1,1500,319 -banner_3 -bounds:459,362,75,75 -offsets:13,13,101,101 -banner_4 -bounds:459,439,76,75 -offsets:12,13,101,101 -banner_5 -bounds:459,866,203,232 -offsets:4,4,211,240 -banner_6 -bounds:771,1106,80,94 -offsets:3,0,83,96 -rotate:90 -banner_7 -bounds:459,516,79,91 -offsets:4,4,83,96 -banner_8 -bounds:867,1110,76,88 -offsets:4,4,83,96 -rotate:90 -banner_9 -bounds:558,631,89,84 -offsets:4,4,96,92 diff --git a/Assets/arts/spines/ui/ui_bounty_banner/ui_bounty_banner.atlas.txt.meta b/Assets/arts/spines/ui/ui_bounty_banner/ui_bounty_banner.atlas.txt.meta deleted file mode 100644 index 163eccba4..000000000 --- a/Assets/arts/spines/ui/ui_bounty_banner/ui_bounty_banner.atlas.txt.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: ba4bbbb4fef15f14195e6f197196f794 -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_bounty_banner.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_bounty_banner/ui_bounty_banner.png b/Assets/arts/spines/ui/ui_bounty_banner/ui_bounty_banner.png deleted file mode 100644 index 0c21d803d..000000000 Binary files a/Assets/arts/spines/ui/ui_bounty_banner/ui_bounty_banner.png and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_bounty_banner/ui_bounty_banner.png.meta b/Assets/arts/spines/ui/ui_bounty_banner/ui_bounty_banner.png.meta deleted file mode 100644 index 3df477939..000000000 --- a/Assets/arts/spines/ui/ui_bounty_banner/ui_bounty_banner.png.meta +++ /dev/null @@ -1,147 +0,0 @@ -fileFormatVersion: 2 -guid: c35151808cebb0e49bc38ebc0784a537 -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 1 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 0 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 0 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 47 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 1 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 50 - textureCompression: 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 - - serializedVersion: 3 - buildTarget: Server - 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: [] - nameFileIdTable: {} - spritePackingTag: - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: arts/spines/ui/ui_bounty_banner.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_bounty_banner/ui_bounty_banner.skel.bytes b/Assets/arts/spines/ui/ui_bounty_banner/ui_bounty_banner.skel.bytes deleted file mode 100644 index c32bf0e38..000000000 Binary files a/Assets/arts/spines/ui/ui_bounty_banner/ui_bounty_banner.skel.bytes and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_bounty_banner/ui_bounty_banner.skel.bytes.meta b/Assets/arts/spines/ui/ui_bounty_banner/ui_bounty_banner.skel.bytes.meta deleted file mode 100644 index 85dc62bdb..000000000 --- a/Assets/arts/spines/ui/ui_bounty_banner/ui_bounty_banner.skel.bytes.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 6ceec3e093cc28d41b6c1f89fb394950 -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_bounty_banner.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_bounty_banner/ui_bounty_banner_atlas.asset b/Assets/arts/spines/ui/ui_bounty_banner/ui_bounty_banner_atlas.asset deleted file mode 100644 index 1cdabf950..000000000 --- a/Assets/arts/spines/ui/ui_bounty_banner/ui_bounty_banner_atlas.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: a6b194f808b1af6499c93410e504af42, type: 3} - m_Name: ui_bounty_banner_atlas - m_EditorClassIdentifier: - textureLoadingMode: 0 - onDemandTextureLoader: {fileID: 0} - atlasFile: {fileID: 4900000, guid: ba4bbbb4fef15f14195e6f197196f794, type: 3} - materials: - - {fileID: 2100000, guid: e3f89ab565d312d4a901eaf629041cd8, type: 2} diff --git a/Assets/arts/spines/ui/ui_bounty_banner/ui_bounty_banner_atlas.asset.meta b/Assets/arts/spines/ui/ui_bounty_banner/ui_bounty_banner_atlas.asset.meta deleted file mode 100644 index d69079f2e..000000000 --- a/Assets/arts/spines/ui/ui_bounty_banner/ui_bounty_banner_atlas.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 4ad91f3200419994e91f0a3334399d8e -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_bounty_banner.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_bounty_banner/ui_bounty_banner_material.mat b/Assets/arts/spines/ui/ui_bounty_banner/ui_bounty_banner_material.mat deleted file mode 100644 index 8df5cba46..000000000 --- a/Assets/arts/spines/ui/ui_bounty_banner/ui_bounty_banner_material.mat +++ /dev/null @@ -1,44 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!21 &2100000 -Material: - serializedVersion: 8 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: ui_bounty_banner_material - m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3} - m_ValidKeywords: - - _STRAIGHT_ALPHA_INPUT - m_InvalidKeywords: - - _USE8NEIGHBOURHOOD_ON - m_LightmapFlags: 4 - m_EnableInstancingVariants: 0 - m_DoubleSidedGI: 0 - m_CustomRenderQueue: -1 - stringTagMap: {} - disabledShaderPasses: [] - m_SavedProperties: - serializedVersion: 3 - m_TexEnvs: - - _MainTex: - m_Texture: {fileID: 2800000, guid: c35151808cebb0e49bc38ebc0784a537, type: 3} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - m_Ints: [] - m_Floats: - - _Cutoff: 0.1 - - _OutlineMipLevel: 0 - - _OutlineOpaqueAlpha: 1 - - _OutlineReferenceTexWidth: 1024 - - _OutlineSmoothness: 1 - - _OutlineWidth: 3 - - _StencilComp: 8 - - _StencilRef: 1 - - _StraightAlphaInput: 1 - - _ThresholdEnd: 0.25 - - _Use8Neighbourhood: 1 - m_Colors: - - _OutlineColor: {r: 1, g: 1, b: 0, a: 1} - m_BuildTextureStacks: [] diff --git a/Assets/arts/spines/ui/ui_bounty_banner/ui_bounty_banner_material.mat.meta b/Assets/arts/spines/ui/ui_bounty_banner/ui_bounty_banner_material.mat.meta deleted file mode 100644 index 0c37779e4..000000000 --- a/Assets/arts/spines/ui/ui_bounty_banner/ui_bounty_banner_material.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: e3f89ab565d312d4a901eaf629041cd8 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 2100000 - userData: - assetBundleName: arts/spines/ui/ui_bounty_banner.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_bounty_banner/ui_bounty_banner_skeletondata.asset b/Assets/arts/spines/ui/ui_bounty_banner/ui_bounty_banner_skeletondata.asset deleted file mode 100644 index bda7604c5..000000000 --- a/Assets/arts/spines/ui/ui_bounty_banner/ui_bounty_banner_skeletondata.asset +++ /dev/null @@ -1,31 +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: f1b3b4b945939a54ea0b23d3396115fb, type: 3} - m_Name: ui_bounty_banner_skeletondata - m_EditorClassIdentifier: - atlasAssets: - - {fileID: 11400000, guid: 4ad91f3200419994e91f0a3334399d8e, type: 2} - scale: 0.01 - skeletonJSON: {fileID: 4900000, guid: 6ceec3e093cc28d41b6c1f89fb394950, type: 3} - isUpgradingBlendModeMaterials: 0 - blendModeMaterials: - requiresBlendModeMaterials: 0 - applyAdditiveMaterial: 0 - additiveMaterials: [] - multiplyMaterials: [] - screenMaterials: [] - skeletonDataModifiers: [] - fromAnimation: [] - toAnimation: [] - duration: [] - defaultMix: 0.2 - controller: {fileID: 0} diff --git a/Assets/arts/spines/ui/ui_bounty_banner/ui_bounty_banner_skeletondata.asset.meta b/Assets/arts/spines/ui/ui_bounty_banner/ui_bounty_banner_skeletondata.asset.meta deleted file mode 100644 index 70b9e14bc..000000000 --- a/Assets/arts/spines/ui/ui_bounty_banner/ui_bounty_banner_skeletondata.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: c131780bfdc98154ba12a567d7d1033c -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_bounty_banner.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_dungeon_equip_fund.meta b/Assets/arts/spines/ui/ui_dungeon_equip_fund.meta deleted file mode 100644 index b9deb2025..000000000 --- a/Assets/arts/spines/ui/ui_dungeon_equip_fund.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 5da7a563d9ae7004284410b444cd0f56 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_dungeon_equip_fund/ui_dungeon_equip_fund.atlas.txt b/Assets/arts/spines/ui/ui_dungeon_equip_fund/ui_dungeon_equip_fund.atlas.txt deleted file mode 100644 index c7e37e3c5..000000000 --- a/Assets/arts/spines/ui/ui_dungeon_equip_fund/ui_dungeon_equip_fund.atlas.txt +++ /dev/null @@ -1,15 +0,0 @@ -ui_dungeon_equip_fund.png -size:128,128 -filter:Linear,Linear -sheng -bounds:82,64,62,43 -offsets:1,1,64,45 -rotate:90 -xx1 -bounds:2,22,17,18 -offsets:1,1,19,20 -xx2 -bounds:2,2,17,18 -offsets:1,1,19,20 -zhi -bounds:2,42,78,84 diff --git a/Assets/arts/spines/ui/ui_dungeon_equip_fund/ui_dungeon_equip_fund.atlas.txt.meta b/Assets/arts/spines/ui/ui_dungeon_equip_fund/ui_dungeon_equip_fund.atlas.txt.meta deleted file mode 100644 index 13ffd9923..000000000 --- a/Assets/arts/spines/ui/ui_dungeon_equip_fund/ui_dungeon_equip_fund.atlas.txt.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: cb515c948cd219141b9eb54549bbaa04 -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_dungeon_equip_fund.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_dungeon_equip_fund/ui_dungeon_equip_fund.png b/Assets/arts/spines/ui/ui_dungeon_equip_fund/ui_dungeon_equip_fund.png deleted file mode 100644 index e4adb038b..000000000 Binary files a/Assets/arts/spines/ui/ui_dungeon_equip_fund/ui_dungeon_equip_fund.png and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_dungeon_equip_fund/ui_dungeon_equip_fund.png.meta b/Assets/arts/spines/ui/ui_dungeon_equip_fund/ui_dungeon_equip_fund.png.meta deleted file mode 100644 index 6dec4c792..000000000 --- a/Assets/arts/spines/ui/ui_dungeon_equip_fund/ui_dungeon_equip_fund.png.meta +++ /dev/null @@ -1,147 +0,0 @@ -fileFormatVersion: 2 -guid: 5b5ccc08860566f41b27bcc24f633162 -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 1 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 0 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 0 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 47 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 1 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 50 - textureCompression: 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 - - serializedVersion: 3 - buildTarget: Server - 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: [] - nameFileIdTable: {} - spritePackingTag: - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: arts/spines/ui/ui_dungeon_equip_fund.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_dungeon_equip_fund/ui_dungeon_equip_fund.skel.bytes b/Assets/arts/spines/ui/ui_dungeon_equip_fund/ui_dungeon_equip_fund.skel.bytes deleted file mode 100644 index 58c4f8549..000000000 Binary files a/Assets/arts/spines/ui/ui_dungeon_equip_fund/ui_dungeon_equip_fund.skel.bytes and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_dungeon_equip_fund/ui_dungeon_equip_fund.skel.bytes.meta b/Assets/arts/spines/ui/ui_dungeon_equip_fund/ui_dungeon_equip_fund.skel.bytes.meta deleted file mode 100644 index c4b1f26aa..000000000 --- a/Assets/arts/spines/ui/ui_dungeon_equip_fund/ui_dungeon_equip_fund.skel.bytes.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 965915e5cb07e4448b0665a4f172b5e6 -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_dungeon_equip_fund.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_dungeon_equip_fund/ui_dungeon_equip_fund_atlas.asset b/Assets/arts/spines/ui/ui_dungeon_equip_fund/ui_dungeon_equip_fund_atlas.asset deleted file mode 100644 index 59358e36b..000000000 --- a/Assets/arts/spines/ui/ui_dungeon_equip_fund/ui_dungeon_equip_fund_atlas.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: a6b194f808b1af6499c93410e504af42, type: 3} - m_Name: ui_dungeon_equip_fund_atlas - m_EditorClassIdentifier: - textureLoadingMode: 0 - onDemandTextureLoader: {fileID: 0} - atlasFile: {fileID: 4900000, guid: cb515c948cd219141b9eb54549bbaa04, type: 3} - materials: - - {fileID: 2100000, guid: eb7aa115da856134ca5940b1e91d4f4e, type: 2} diff --git a/Assets/arts/spines/ui/ui_dungeon_equip_fund/ui_dungeon_equip_fund_atlas.asset.meta b/Assets/arts/spines/ui/ui_dungeon_equip_fund/ui_dungeon_equip_fund_atlas.asset.meta deleted file mode 100644 index 64b6ce90e..000000000 --- a/Assets/arts/spines/ui/ui_dungeon_equip_fund/ui_dungeon_equip_fund_atlas.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 4ea70418f2f62f046aa73181f72ecdfc -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_dungeon_equip_fund.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_dungeon_equip_fund/ui_dungeon_equip_fund_material.mat b/Assets/arts/spines/ui/ui_dungeon_equip_fund/ui_dungeon_equip_fund_material.mat deleted file mode 100644 index c4ddae410..000000000 --- a/Assets/arts/spines/ui/ui_dungeon_equip_fund/ui_dungeon_equip_fund_material.mat +++ /dev/null @@ -1,44 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!21 &2100000 -Material: - serializedVersion: 8 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: ui_dungeon_equip_fund_material - m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3} - m_ValidKeywords: - - _STRAIGHT_ALPHA_INPUT - m_InvalidKeywords: - - _USE8NEIGHBOURHOOD_ON - m_LightmapFlags: 4 - m_EnableInstancingVariants: 0 - m_DoubleSidedGI: 0 - m_CustomRenderQueue: -1 - stringTagMap: {} - disabledShaderPasses: [] - m_SavedProperties: - serializedVersion: 3 - m_TexEnvs: - - _MainTex: - m_Texture: {fileID: 2800000, guid: 5b5ccc08860566f41b27bcc24f633162, type: 3} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - m_Ints: [] - m_Floats: - - _Cutoff: 0.1 - - _OutlineMipLevel: 0 - - _OutlineOpaqueAlpha: 1 - - _OutlineReferenceTexWidth: 1024 - - _OutlineSmoothness: 1 - - _OutlineWidth: 3 - - _StencilComp: 8 - - _StencilRef: 1 - - _StraightAlphaInput: 1 - - _ThresholdEnd: 0.25 - - _Use8Neighbourhood: 1 - m_Colors: - - _OutlineColor: {r: 1, g: 1, b: 0, a: 1} - m_BuildTextureStacks: [] diff --git a/Assets/arts/spines/ui/ui_dungeon_equip_fund/ui_dungeon_equip_fund_material.mat.meta b/Assets/arts/spines/ui/ui_dungeon_equip_fund/ui_dungeon_equip_fund_material.mat.meta deleted file mode 100644 index f7c08d138..000000000 --- a/Assets/arts/spines/ui/ui_dungeon_equip_fund/ui_dungeon_equip_fund_material.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: eb7aa115da856134ca5940b1e91d4f4e -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 2100000 - userData: - assetBundleName: arts/spines/ui/ui_dungeon_equip_fund.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_dungeon_equip_fund/ui_dungeon_equip_fund_skeletondata.asset b/Assets/arts/spines/ui/ui_dungeon_equip_fund/ui_dungeon_equip_fund_skeletondata.asset deleted file mode 100644 index 585dd1c80..000000000 --- a/Assets/arts/spines/ui/ui_dungeon_equip_fund/ui_dungeon_equip_fund_skeletondata.asset +++ /dev/null @@ -1,31 +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: f1b3b4b945939a54ea0b23d3396115fb, type: 3} - m_Name: ui_dungeon_equip_fund_skeletondata - m_EditorClassIdentifier: - atlasAssets: - - {fileID: 11400000, guid: 4ea70418f2f62f046aa73181f72ecdfc, type: 2} - scale: 0.01 - skeletonJSON: {fileID: 4900000, guid: 965915e5cb07e4448b0665a4f172b5e6, type: 3} - isUpgradingBlendModeMaterials: 0 - blendModeMaterials: - requiresBlendModeMaterials: 0 - applyAdditiveMaterial: 0 - additiveMaterials: [] - multiplyMaterials: [] - screenMaterials: [] - skeletonDataModifiers: [] - fromAnimation: [] - toAnimation: [] - duration: [] - defaultMix: 0.2 - controller: {fileID: 0} diff --git a/Assets/arts/spines/ui/ui_dungeon_equip_fund/ui_dungeon_equip_fund_skeletondata.asset.meta b/Assets/arts/spines/ui/ui_dungeon_equip_fund/ui_dungeon_equip_fund_skeletondata.asset.meta deleted file mode 100644 index d49947264..000000000 --- a/Assets/arts/spines/ui/ui_dungeon_equip_fund/ui_dungeon_equip_fund_skeletondata.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 2179c51eed16b454faa18958fa0c8d15 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_dungeon_equip_fund.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_first_dec.meta b/Assets/arts/spines/ui/ui_first_dec.meta deleted file mode 100644 index 179bad561..000000000 --- a/Assets/arts/spines/ui/ui_first_dec.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 404db01765ba53e4495477220199f4c4 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_first_dec/ui_first_dec.atlas.txt b/Assets/arts/spines/ui/ui_first_dec/ui_first_dec.atlas.txt deleted file mode 100644 index a7f24c922..000000000 --- a/Assets/arts/spines/ui/ui_first_dec/ui_first_dec.atlas.txt +++ /dev/null @@ -1,85 +0,0 @@ -ui_first_dec.png -size:1024,1024 -filter:Linear,Linear -damuzhi -bounds:840,271,43,42 -offsets:1,1,45,45 -rotate:90 -gong -bounds:632,660,125,358 -offsets:1,1,127,360 -guang1 -bounds:1,24,451,541 -rotate:90 -guang2 -bounds:1,477,629,541 -jian -bounds:544,195,280,75 -offsets:1,1,282,77 -rotate:90 -jianjia -bounds:779,316,98,76 -offsets:1,1,100,78 -jiantong -bounds:621,277,156,171 -offsets:1,1,158,173 -jiantou -bounds:952,773,72,49 -offsets:1,1,74,51 -rotate:90 -jianwei -bounds:779,264,59,50 -offsets:1,1,61,52 -lingzi -bounds:653,1,120,86 -offsets:1,1,123,89 -rotate:90 -piaodai -bounds:632,450,208,147 -rotate:90 -piaodai2 -bounds:759,847,234,171 -shenti -bounds:781,479,172,191 -shou1 -bounds:952,711,57,60 -offsets:1,1,59,62 -shou2 -bounds:893,402,63,75 -offsets:2,1,66,77 -tou -bounds:759,672,191,173 -offsets:2,1,194,175 -toufa -bounds:653,123,152,119 -rotate:90 -tui -bounds:544,1,192,107 -rotate:90 -xing1 -bounds:774,208,54,54 -offsets:1,1,56,56 -xing2 -bounds:952,672,37,37 -offsets:1,1,39,39 -xing3 -bounds:774,160,46,46 -offsets:1,1,48,48 -xing4 -bounds:955,628,42,42 -offsets:1,1,45,44 -xing5 -bounds:774,125,33,33 -offsets:1,1,35,35 -youshou -bounds:741,11,110,73 -rotate:90 -youyan -bounds:1,3,19,41 -offsets:1,1,21,43 -rotate:90 -zuoshou -bounds:781,394,110,83 -zuoyan -bounds:621,234,19,41 -offsets:1,1,21,43 diff --git a/Assets/arts/spines/ui/ui_first_dec/ui_first_dec.atlas.txt.meta b/Assets/arts/spines/ui/ui_first_dec/ui_first_dec.atlas.txt.meta deleted file mode 100644 index 6cd9e8e88..000000000 --- a/Assets/arts/spines/ui/ui_first_dec/ui_first_dec.atlas.txt.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: f92edc60bd4072445a8fa6cff8f38cad -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_first_dec.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_first_dec/ui_first_dec.png b/Assets/arts/spines/ui/ui_first_dec/ui_first_dec.png deleted file mode 100644 index cffe34a10..000000000 Binary files a/Assets/arts/spines/ui/ui_first_dec/ui_first_dec.png and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_first_dec/ui_first_dec.png.meta b/Assets/arts/spines/ui/ui_first_dec/ui_first_dec.png.meta deleted file mode 100644 index 894cb5dde..000000000 --- a/Assets/arts/spines/ui/ui_first_dec/ui_first_dec.png.meta +++ /dev/null @@ -1,147 +0,0 @@ -fileFormatVersion: 2 -guid: e9cdcef114f18384b87f76ae4162723e -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 1 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 0 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 0 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 47 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 1 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 50 - textureCompression: 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 - - serializedVersion: 3 - buildTarget: Server - 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: [] - nameFileIdTable: {} - spritePackingTag: - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: arts/spines/ui/ui_first_dec.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_first_dec/ui_first_dec.skel.bytes b/Assets/arts/spines/ui/ui_first_dec/ui_first_dec.skel.bytes deleted file mode 100644 index da9bec847..000000000 Binary files a/Assets/arts/spines/ui/ui_first_dec/ui_first_dec.skel.bytes and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_first_dec/ui_first_dec.skel.bytes.meta b/Assets/arts/spines/ui/ui_first_dec/ui_first_dec.skel.bytes.meta deleted file mode 100644 index 025ddec67..000000000 --- a/Assets/arts/spines/ui/ui_first_dec/ui_first_dec.skel.bytes.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 5626bd45c55003f42b879d12dd41cb86 -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_first_dec.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_first_dec/ui_first_dec_atlas.asset b/Assets/arts/spines/ui/ui_first_dec/ui_first_dec_atlas.asset deleted file mode 100644 index 53f4777bd..000000000 --- a/Assets/arts/spines/ui/ui_first_dec/ui_first_dec_atlas.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: a6b194f808b1af6499c93410e504af42, type: 3} - m_Name: ui_first_dec_atlas - m_EditorClassIdentifier: - textureLoadingMode: 0 - onDemandTextureLoader: {fileID: 0} - atlasFile: {fileID: 4900000, guid: f92edc60bd4072445a8fa6cff8f38cad, type: 3} - materials: - - {fileID: 2100000, guid: 281c08f735d5f72488da718f2918e5ed, type: 2} diff --git a/Assets/arts/spines/ui/ui_first_dec/ui_first_dec_atlas.asset.meta b/Assets/arts/spines/ui/ui_first_dec/ui_first_dec_atlas.asset.meta deleted file mode 100644 index fa580c9d4..000000000 --- a/Assets/arts/spines/ui/ui_first_dec/ui_first_dec_atlas.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 6e10b642334073846b0dbfb8a41702f1 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_first_dec.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_first_dec/ui_first_dec_material.mat b/Assets/arts/spines/ui/ui_first_dec/ui_first_dec_material.mat deleted file mode 100644 index bcbfed2cb..000000000 --- a/Assets/arts/spines/ui/ui_first_dec/ui_first_dec_material.mat +++ /dev/null @@ -1,44 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!21 &2100000 -Material: - serializedVersion: 8 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: ui_first_dec_material - m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3} - m_ValidKeywords: - - _STRAIGHT_ALPHA_INPUT - m_InvalidKeywords: - - _USE8NEIGHBOURHOOD_ON - m_LightmapFlags: 4 - m_EnableInstancingVariants: 0 - m_DoubleSidedGI: 0 - m_CustomRenderQueue: -1 - stringTagMap: {} - disabledShaderPasses: [] - m_SavedProperties: - serializedVersion: 3 - m_TexEnvs: - - _MainTex: - m_Texture: {fileID: 2800000, guid: e9cdcef114f18384b87f76ae4162723e, type: 3} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - m_Ints: [] - m_Floats: - - _Cutoff: 0.1 - - _OutlineMipLevel: 0 - - _OutlineOpaqueAlpha: 1 - - _OutlineReferenceTexWidth: 1024 - - _OutlineSmoothness: 1 - - _OutlineWidth: 3 - - _StencilComp: 8 - - _StencilRef: 1 - - _StraightAlphaInput: 1 - - _ThresholdEnd: 0.25 - - _Use8Neighbourhood: 1 - m_Colors: - - _OutlineColor: {r: 1, g: 1, b: 0, a: 1} - m_BuildTextureStacks: [] diff --git a/Assets/arts/spines/ui/ui_first_dec/ui_first_dec_material.mat.meta b/Assets/arts/spines/ui/ui_first_dec/ui_first_dec_material.mat.meta deleted file mode 100644 index 49928ae3e..000000000 --- a/Assets/arts/spines/ui/ui_first_dec/ui_first_dec_material.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 281c08f735d5f72488da718f2918e5ed -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 2100000 - userData: - assetBundleName: arts/spines/ui/ui_first_dec.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_first_dec/ui_first_dec_skeletondata.asset b/Assets/arts/spines/ui/ui_first_dec/ui_first_dec_skeletondata.asset deleted file mode 100644 index 6b093bc5f..000000000 --- a/Assets/arts/spines/ui/ui_first_dec/ui_first_dec_skeletondata.asset +++ /dev/null @@ -1,31 +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: f1b3b4b945939a54ea0b23d3396115fb, type: 3} - m_Name: ui_first_dec_skeletondata - m_EditorClassIdentifier: - atlasAssets: - - {fileID: 11400000, guid: 6e10b642334073846b0dbfb8a41702f1, type: 2} - scale: 0.01 - skeletonJSON: {fileID: 4900000, guid: 5626bd45c55003f42b879d12dd41cb86, type: 3} - isUpgradingBlendModeMaterials: 0 - blendModeMaterials: - requiresBlendModeMaterials: 0 - applyAdditiveMaterial: 0 - additiveMaterials: [] - multiplyMaterials: [] - screenMaterials: [] - skeletonDataModifiers: [] - fromAnimation: [] - toAnimation: [] - duration: [] - defaultMix: 0.2 - controller: {fileID: 0} diff --git a/Assets/arts/spines/ui/ui_first_dec/ui_first_dec_skeletondata.asset.meta b/Assets/arts/spines/ui/ui_first_dec/ui_first_dec_skeletondata.asset.meta deleted file mode 100644 index 1d6ed6fdc..000000000 --- a/Assets/arts/spines/ui/ui_first_dec/ui_first_dec_skeletondata.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 2226bdf35102e4e4ca697c3315b71c88 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_first_dec.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_gift_arena.meta b/Assets/arts/spines/ui/ui_gift_arena.meta deleted file mode 100644 index f256d1d27..000000000 --- a/Assets/arts/spines/ui/ui_gift_arena.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: ae7a86689a62dd641a7d1b6b4ee35fee -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_gift_arena/ui_gift_arena.atlas.txt b/Assets/arts/spines/ui/ui_gift_arena/ui_gift_arena.atlas.txt deleted file mode 100644 index ec45257d0..000000000 --- a/Assets/arts/spines/ui/ui_gift_arena/ui_gift_arena.atlas.txt +++ /dev/null @@ -1,95 +0,0 @@ -ui_gift_arena.png -size:1024,1024 -filter:Linear,Linear -200 -bounds:490,668,183,66 -offsets:1,1,185,68 -260 -bounds:190,13,183,66 -offsets:1,1,185,68 -400 -bounds:943,835,187,66 -offsets:1,1,189,68 -rotate:90 -800 -bounds:2,13,186,66 -offsets:1,1,188,68 -bs -bounds:381,475,143,161 -bs1 -bounds:675,651,94,83 -offsets:1,1,96,85 -bs2 -bounds:375,33,54,46 -offsets:1,1,56,48 -bs3 -bounds:431,34,53,45 -offsets:1,1,55,47 -bs4 -bounds:480,265,45,40 -offsets:1,1,47,42 -rotate:90 -bs5 -bounds:943,737,45,40 -offsets:1,1,47,42 -bs6 -bounds:827,689,53,45 -offsets:1,1,55,47 -bs7 -bounds:771,688,54,46 -offsets:1,1,56,48 -bsd -bounds:381,312,143,161 -offsets:1,1,145,163 -cd1 -bounds:480,237,33,26 -offsets:1,1,35,28 -cd10 -bounds:490,638,40,28 -offsets:1,1,42,30 -cd2 -bounds:532,647,42,19 -offsets:1,1,44,21 -cd3 -bounds:771,660,35,26 -offsets:1,1,37,28 -cd4 -bounds:527,62,17,42 -offsets:1,1,19,44 -rotate:90 -cd5 -bounds:431,2,30,32 -offsets:1,1,32,34 -rotate:90 -cd6 -bounds:486,2,37,36 -offsets:1,1,39,38 -cd7 -bounds:375,16,26,15 -offsets:1,1,28,17 -cd8 -bounds:990,736,32,41 -offsets:1,1,34,43 -cd9 -bounds:882,692,19,42 -offsets:1,1,21,44 -g -bounds:381,209,97,101 -offsets:4,5,106,111 -g1 -bounds:2,208,377,428 -offsets:22,1,415,430 -g2 -bounds:2,638,486,384 -offsets:45,1,538,386 -hengfu -bounds:2,81,668,125 -jb -bounds:490,736,451,286 -offsets:1,1,453,288 -xx1 -bounds:486,40,39,39 -offsets:1,1,41,41 -xx2 -bounds:943,779,54,54 -offsets:1,1,56,56 diff --git a/Assets/arts/spines/ui/ui_gift_arena/ui_gift_arena.atlas.txt.meta b/Assets/arts/spines/ui/ui_gift_arena/ui_gift_arena.atlas.txt.meta deleted file mode 100644 index d2f72b3cf..000000000 --- a/Assets/arts/spines/ui/ui_gift_arena/ui_gift_arena.atlas.txt.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 5fcb770a5c2eb49468eb529164aadcde -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_gift_arena.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_gift_arena/ui_gift_arena.png b/Assets/arts/spines/ui/ui_gift_arena/ui_gift_arena.png deleted file mode 100644 index c1fdb1010..000000000 Binary files a/Assets/arts/spines/ui/ui_gift_arena/ui_gift_arena.png and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_gift_arena/ui_gift_arena.png.meta b/Assets/arts/spines/ui/ui_gift_arena/ui_gift_arena.png.meta deleted file mode 100644 index 486dfd3a2..000000000 --- a/Assets/arts/spines/ui/ui_gift_arena/ui_gift_arena.png.meta +++ /dev/null @@ -1,147 +0,0 @@ -fileFormatVersion: 2 -guid: 2759aa56151916f4e811fb3a613976cc -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 1 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 0 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 0 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 47 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 1 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 50 - textureCompression: 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 - - serializedVersion: 3 - buildTarget: Server - 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: [] - nameFileIdTable: {} - spritePackingTag: - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: arts/spines/ui/ui_gift_arena.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_gift_arena/ui_gift_arena.skel.bytes b/Assets/arts/spines/ui/ui_gift_arena/ui_gift_arena.skel.bytes deleted file mode 100644 index 47cd336d5..000000000 Binary files a/Assets/arts/spines/ui/ui_gift_arena/ui_gift_arena.skel.bytes and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_gift_arena/ui_gift_arena.skel.bytes.meta b/Assets/arts/spines/ui/ui_gift_arena/ui_gift_arena.skel.bytes.meta deleted file mode 100644 index 7c8779879..000000000 --- a/Assets/arts/spines/ui/ui_gift_arena/ui_gift_arena.skel.bytes.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 14ad286346ddacb4f88b1639e55c49b4 -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_gift_arena.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_gift_arena/ui_gift_arena_atlas.asset b/Assets/arts/spines/ui/ui_gift_arena/ui_gift_arena_atlas.asset deleted file mode 100644 index 1d88b75aa..000000000 --- a/Assets/arts/spines/ui/ui_gift_arena/ui_gift_arena_atlas.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: a6b194f808b1af6499c93410e504af42, type: 3} - m_Name: ui_gift_arena_atlas - m_EditorClassIdentifier: - textureLoadingMode: 0 - onDemandTextureLoader: {fileID: 0} - atlasFile: {fileID: 4900000, guid: 5fcb770a5c2eb49468eb529164aadcde, type: 3} - materials: - - {fileID: 2100000, guid: 585d82ae6247807419be184093f1eccd, type: 2} diff --git a/Assets/arts/spines/ui/ui_gift_arena/ui_gift_arena_atlas.asset.meta b/Assets/arts/spines/ui/ui_gift_arena/ui_gift_arena_atlas.asset.meta deleted file mode 100644 index 7fa9134f4..000000000 --- a/Assets/arts/spines/ui/ui_gift_arena/ui_gift_arena_atlas.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: b0a7d909331b51347b75a906dd586cd6 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_gift_arena.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_gift_arena/ui_gift_arena_material.mat b/Assets/arts/spines/ui/ui_gift_arena/ui_gift_arena_material.mat deleted file mode 100644 index a01e568fe..000000000 --- a/Assets/arts/spines/ui/ui_gift_arena/ui_gift_arena_material.mat +++ /dev/null @@ -1,44 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!21 &2100000 -Material: - serializedVersion: 8 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: ui_gift_arena_material - m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3} - m_ValidKeywords: - - _STRAIGHT_ALPHA_INPUT - m_InvalidKeywords: - - _USE8NEIGHBOURHOOD_ON - m_LightmapFlags: 4 - m_EnableInstancingVariants: 0 - m_DoubleSidedGI: 0 - m_CustomRenderQueue: -1 - stringTagMap: {} - disabledShaderPasses: [] - m_SavedProperties: - serializedVersion: 3 - m_TexEnvs: - - _MainTex: - m_Texture: {fileID: 2800000, guid: 2759aa56151916f4e811fb3a613976cc, type: 3} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - m_Ints: [] - m_Floats: - - _Cutoff: 0.1 - - _OutlineMipLevel: 0 - - _OutlineOpaqueAlpha: 1 - - _OutlineReferenceTexWidth: 1024 - - _OutlineSmoothness: 1 - - _OutlineWidth: 3 - - _StencilComp: 8 - - _StencilRef: 1 - - _StraightAlphaInput: 1 - - _ThresholdEnd: 0.25 - - _Use8Neighbourhood: 1 - m_Colors: - - _OutlineColor: {r: 1, g: 1, b: 0, a: 1} - m_BuildTextureStacks: [] diff --git a/Assets/arts/spines/ui/ui_gift_arena/ui_gift_arena_material.mat.meta b/Assets/arts/spines/ui/ui_gift_arena/ui_gift_arena_material.mat.meta deleted file mode 100644 index 3005002de..000000000 --- a/Assets/arts/spines/ui/ui_gift_arena/ui_gift_arena_material.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 585d82ae6247807419be184093f1eccd -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 2100000 - userData: - assetBundleName: arts/spines/ui/ui_gift_arena.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_gift_arena/ui_gift_arena_skeletondata.asset b/Assets/arts/spines/ui/ui_gift_arena/ui_gift_arena_skeletondata.asset deleted file mode 100644 index a83f2158f..000000000 --- a/Assets/arts/spines/ui/ui_gift_arena/ui_gift_arena_skeletondata.asset +++ /dev/null @@ -1,31 +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: f1b3b4b945939a54ea0b23d3396115fb, type: 3} - m_Name: ui_gift_arena_skeletondata - m_EditorClassIdentifier: - atlasAssets: - - {fileID: 11400000, guid: b0a7d909331b51347b75a906dd586cd6, type: 2} - scale: 0.01 - skeletonJSON: {fileID: 4900000, guid: 14ad286346ddacb4f88b1639e55c49b4, type: 3} - isUpgradingBlendModeMaterials: 0 - blendModeMaterials: - requiresBlendModeMaterials: 0 - applyAdditiveMaterial: 0 - additiveMaterials: [] - multiplyMaterials: [] - screenMaterials: [] - skeletonDataModifiers: [] - fromAnimation: [] - toAnimation: [] - duration: [] - defaultMix: 0.2 - controller: {fileID: 0} diff --git a/Assets/arts/spines/ui/ui_gift_arena/ui_gift_arena_skeletondata.asset.meta b/Assets/arts/spines/ui/ui_gift_arena/ui_gift_arena_skeletondata.asset.meta deleted file mode 100644 index fd5808d5e..000000000 --- a/Assets/arts/spines/ui/ui_gift_arena/ui_gift_arena_skeletondata.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 0635bcb4d3f36cc479627a05732d07f0 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_gift_arena.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_herofund_banner.meta b/Assets/arts/spines/ui/ui_herofund_banner.meta deleted file mode 100644 index 92cb27ddf..000000000 --- a/Assets/arts/spines/ui/ui_herofund_banner.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 797c95f5bd1e11d4c97d956253b44733 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_herofund_banner/ui_herofund_banner.atlas.txt b/Assets/arts/spines/ui/ui_herofund_banner/ui_herofund_banner.atlas.txt deleted file mode 100644 index 36e387854..000000000 --- a/Assets/arts/spines/ui/ui_herofund_banner/ui_herofund_banner.atlas.txt +++ /dev/null @@ -1,87 +0,0 @@ -ui_herofund_banner.png -size:1024,1024 -filter:Linear,Linear -dao1 -bounds:220,661,135,140 -offsets:1,2,137,143 -dao2 -bounds:849,876,118,147 -offsets:1,1,120,150 -f1 -bounds:1,426,171,148 -k1 -bounds:66,171,66,129 -offsets:1,1,68,131 -k2 -bounds:849,839,35,76 -offsets:1,1,37,78 -rotate:90 -k3 -bounds:357,578,55,65 -offsets:1,1,57,67 -k4 -bounds:969,950,73,54 -offsets:1,1,75,56 -rotate:90 -pifeng -bounds:595,835,252,188 -spine -bounds:713,749,87,84 -offsets:1,1,89,86 -tiao -bounds:1,803,592,220 -offsets:0,1,592,221 -tou -bounds:1,302,141,122 -offsets:1,1,143,124 -toufa -bounds:1,576,217,225 -toushi -bounds:969,885,63,47 -offsets:1,1,65,49 -rotate:90 -x1 -bounds:1,72,82,82 -offsets:1,1,84,84 -x2 -bounds:1,72,82,82 -offsets:1,1,84,84 -x4 -bounds:1,72,82,82 -offsets:1,1,84,84 -x3 -bounds:304,514,62,62 -offsets:1,1,64,64 -x5 -bounds:610,732,101,101 -offsets:1,1,103,103 -yan1 -bounds:144,388,19,36 -offsets:1,1,21,38 -yan2 -bounds:416,651,19,36 -offsets:1,1,21,38 -yifu -bounds:220,578,81,135 -rotate:90 -youbi -bounds:802,758,75,44 -offsets:1,1,77,46 -rotate:90 -youshou -bounds:174,484,90,49 -rotate:90 -youtui -bounds:1,156,63,144 -youyi -bounds:416,689,95,112 -zuodabi -bounds:1,11,59,71 -offsets:1,1,61,73 -rotate:90 -zuoshou -bounds:225,497,77,79 -zuotui -bounds:357,645,57,156 -zuoyi -bounds:513,689,95,112 diff --git a/Assets/arts/spines/ui/ui_herofund_banner/ui_herofund_banner.atlas.txt.meta b/Assets/arts/spines/ui/ui_herofund_banner/ui_herofund_banner.atlas.txt.meta deleted file mode 100644 index 6349b6d32..000000000 --- a/Assets/arts/spines/ui/ui_herofund_banner/ui_herofund_banner.atlas.txt.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: fbd10f9e6b98eb141b620f6642110672 -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_herofund_banner.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_herofund_banner/ui_herofund_banner.png b/Assets/arts/spines/ui/ui_herofund_banner/ui_herofund_banner.png deleted file mode 100644 index a3c0e3223..000000000 Binary files a/Assets/arts/spines/ui/ui_herofund_banner/ui_herofund_banner.png and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_herofund_banner/ui_herofund_banner.png.meta b/Assets/arts/spines/ui/ui_herofund_banner/ui_herofund_banner.png.meta deleted file mode 100644 index 49d6f5b69..000000000 --- a/Assets/arts/spines/ui/ui_herofund_banner/ui_herofund_banner.png.meta +++ /dev/null @@ -1,147 +0,0 @@ -fileFormatVersion: 2 -guid: e5529f7f5e39e7e4c931f465c59f383a -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 1 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 0 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 0 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 47 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 1 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 50 - textureCompression: 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 - - serializedVersion: 3 - buildTarget: Server - 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: [] - nameFileIdTable: {} - spritePackingTag: - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: arts/spines/ui/ui_herofund_banner.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_herofund_banner/ui_herofund_banner.skel.bytes b/Assets/arts/spines/ui/ui_herofund_banner/ui_herofund_banner.skel.bytes deleted file mode 100644 index abcbaeb6a..000000000 Binary files a/Assets/arts/spines/ui/ui_herofund_banner/ui_herofund_banner.skel.bytes and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_herofund_banner/ui_herofund_banner.skel.bytes.meta b/Assets/arts/spines/ui/ui_herofund_banner/ui_herofund_banner.skel.bytes.meta deleted file mode 100644 index 2f6f28a52..000000000 --- a/Assets/arts/spines/ui/ui_herofund_banner/ui_herofund_banner.skel.bytes.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 55521c419bdeeed42a93c29d794e870d -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_herofund_banner.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_herofund_banner/ui_herofund_banner_atlas.asset b/Assets/arts/spines/ui/ui_herofund_banner/ui_herofund_banner_atlas.asset deleted file mode 100644 index 7f86d7f9d..000000000 --- a/Assets/arts/spines/ui/ui_herofund_banner/ui_herofund_banner_atlas.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: a6b194f808b1af6499c93410e504af42, type: 3} - m_Name: ui_herofund_banner_atlas - m_EditorClassIdentifier: - textureLoadingMode: 0 - onDemandTextureLoader: {fileID: 0} - atlasFile: {fileID: 4900000, guid: fbd10f9e6b98eb141b620f6642110672, type: 3} - materials: - - {fileID: 2100000, guid: 776e70381cba28b46b3efd6ab699fe53, type: 2} diff --git a/Assets/arts/spines/ui/ui_herofund_banner/ui_herofund_banner_atlas.asset.meta b/Assets/arts/spines/ui/ui_herofund_banner/ui_herofund_banner_atlas.asset.meta deleted file mode 100644 index 62916401d..000000000 --- a/Assets/arts/spines/ui/ui_herofund_banner/ui_herofund_banner_atlas.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: d850ccad7d9c6e74cba9b28e0c194c1a -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_herofund_banner.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_herofund_banner/ui_herofund_banner_material.mat b/Assets/arts/spines/ui/ui_herofund_banner/ui_herofund_banner_material.mat deleted file mode 100644 index c26756f47..000000000 --- a/Assets/arts/spines/ui/ui_herofund_banner/ui_herofund_banner_material.mat +++ /dev/null @@ -1,44 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!21 &2100000 -Material: - serializedVersion: 8 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: ui_herofund_banner_material - m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3} - m_ValidKeywords: - - _STRAIGHT_ALPHA_INPUT - m_InvalidKeywords: - - _USE8NEIGHBOURHOOD_ON - m_LightmapFlags: 4 - m_EnableInstancingVariants: 0 - m_DoubleSidedGI: 0 - m_CustomRenderQueue: -1 - stringTagMap: {} - disabledShaderPasses: [] - m_SavedProperties: - serializedVersion: 3 - m_TexEnvs: - - _MainTex: - m_Texture: {fileID: 2800000, guid: e5529f7f5e39e7e4c931f465c59f383a, type: 3} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - m_Ints: [] - m_Floats: - - _Cutoff: 0.1 - - _OutlineMipLevel: 0 - - _OutlineOpaqueAlpha: 1 - - _OutlineReferenceTexWidth: 1024 - - _OutlineSmoothness: 1 - - _OutlineWidth: 3 - - _StencilComp: 8 - - _StencilRef: 1 - - _StraightAlphaInput: 1 - - _ThresholdEnd: 0.25 - - _Use8Neighbourhood: 1 - m_Colors: - - _OutlineColor: {r: 1, g: 1, b: 0, a: 1} - m_BuildTextureStacks: [] diff --git a/Assets/arts/spines/ui/ui_herofund_banner/ui_herofund_banner_material.mat.meta b/Assets/arts/spines/ui/ui_herofund_banner/ui_herofund_banner_material.mat.meta deleted file mode 100644 index 3858fdf42..000000000 --- a/Assets/arts/spines/ui/ui_herofund_banner/ui_herofund_banner_material.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 776e70381cba28b46b3efd6ab699fe53 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 2100000 - userData: - assetBundleName: arts/spines/ui/ui_herofund_banner.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_herofund_banner/ui_herofund_banner_skeletondata.asset b/Assets/arts/spines/ui/ui_herofund_banner/ui_herofund_banner_skeletondata.asset deleted file mode 100644 index 35d969dbb..000000000 --- a/Assets/arts/spines/ui/ui_herofund_banner/ui_herofund_banner_skeletondata.asset +++ /dev/null @@ -1,31 +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: f1b3b4b945939a54ea0b23d3396115fb, type: 3} - m_Name: ui_herofund_banner_skeletondata - m_EditorClassIdentifier: - atlasAssets: - - {fileID: 11400000, guid: d850ccad7d9c6e74cba9b28e0c194c1a, type: 2} - scale: 0.01 - skeletonJSON: {fileID: 4900000, guid: 55521c419bdeeed42a93c29d794e870d, type: 3} - isUpgradingBlendModeMaterials: 0 - blendModeMaterials: - requiresBlendModeMaterials: 0 - applyAdditiveMaterial: 0 - additiveMaterials: [] - multiplyMaterials: [] - screenMaterials: [] - skeletonDataModifiers: [] - fromAnimation: [] - toAnimation: [] - duration: [] - defaultMix: 0.2 - controller: {fileID: 0} diff --git a/Assets/arts/spines/ui/ui_herofund_banner/ui_herofund_banner_skeletondata.asset.meta b/Assets/arts/spines/ui/ui_herofund_banner/ui_herofund_banner_skeletondata.asset.meta deleted file mode 100644 index 0be74fbe2..000000000 --- a/Assets/arts/spines/ui/ui_herofund_banner/ui_herofund_banner_skeletondata.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: a6ffa616719ac9b4b9e8a57f24dcb684 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_herofund_banner.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_herofund_banner_1.meta b/Assets/arts/spines/ui/ui_herofund_banner_1.meta deleted file mode 100644 index abb99b919..000000000 --- a/Assets/arts/spines/ui/ui_herofund_banner_1.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: feb34670115b2f24cae65c59bad051dc -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_herofund_banner_1/ui_herofund_banner_1.atlas.txt b/Assets/arts/spines/ui/ui_herofund_banner_1/ui_herofund_banner_1.atlas.txt deleted file mode 100644 index 84d622224..000000000 --- a/Assets/arts/spines/ui/ui_herofund_banner_1/ui_herofund_banner_1.atlas.txt +++ /dev/null @@ -1,78 +0,0 @@ -ui_herofund_banner_1.png -size:1024,1024 -filter:Linear,Linear -jianjia_l -bounds:946,863,77,76 -offsets:1,1,79,78 -jianjia_r -bounds:1,24,78,81 -offsets:1,2,80,84 -k1 -bounds:1,287,66,129 -offsets:1,1,68,131 -k2 -bounds:595,813,35,76 -offsets:1,1,37,78 -rotate:90 -k3 -bounds:171,521,55,65 -offsets:1,1,57,67 -k4 -bounds:389,646,73,54 -offsets:1,1,75,56 -spine -bounds:1,588,212,214 -tiao -bounds:1,804,592,219 -offsets:1,1,594,221 -tou -bounds:471,715,100,87 -offsets:1,1,102,89 -toukui -bounds:215,698,157,104 -x1 -bounds:934,941,82,82 -offsets:1,1,84,84 -x2 -bounds:934,941,82,82 -offsets:1,1,84,84 -x3 -bounds:171,457,62,62 -offsets:1,1,64,64 -x4 -bounds:862,853,82,82 -offsets:1,1,84,85 -x5 -bounds:69,315,90,101 -offsets:2,1,93,103 -xiongjin -bounds:770,937,162,86 -yan1 -bounds:573,774,15,28 -offsets:1,1,17,30 -yan2 -bounds:69,298,15,28 -offsets:1,1,17,30 -rotate:90 -youdabi -bounds:770,852,90,83 -offsets:1,1,92,85 -youjiao -bounds:215,596,95,100 -youshou -bounds:1,418,168,168 -offsets:1,1,170,170 -youxiaobi -bounds:1,197,61,88 -offsets:1,1,63,90 -zuodabi -bounds:312,615,75,81 -offsets:1,1,77,83 -zuojiao -bounds:374,702,95,100 -zuoshou -bounds:595,850,173,173 -offsets:1,1,175,175 -zuoxiaobi -bounds:1,107,61,88 -offsets:1,1,63,90 diff --git a/Assets/arts/spines/ui/ui_herofund_banner_1/ui_herofund_banner_1.atlas.txt.meta b/Assets/arts/spines/ui/ui_herofund_banner_1/ui_herofund_banner_1.atlas.txt.meta deleted file mode 100644 index 83f201fe2..000000000 --- a/Assets/arts/spines/ui/ui_herofund_banner_1/ui_herofund_banner_1.atlas.txt.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: c2e25b3431e36fd4d8661a02dfa62829 -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_herofund_banner_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_herofund_banner_1/ui_herofund_banner_1.png b/Assets/arts/spines/ui/ui_herofund_banner_1/ui_herofund_banner_1.png deleted file mode 100644 index b7488a058..000000000 Binary files a/Assets/arts/spines/ui/ui_herofund_banner_1/ui_herofund_banner_1.png and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_herofund_banner_1/ui_herofund_banner_1.png.meta b/Assets/arts/spines/ui/ui_herofund_banner_1/ui_herofund_banner_1.png.meta deleted file mode 100644 index 540ade26c..000000000 --- a/Assets/arts/spines/ui/ui_herofund_banner_1/ui_herofund_banner_1.png.meta +++ /dev/null @@ -1,147 +0,0 @@ -fileFormatVersion: 2 -guid: b682bf38ed589d243909b129eb133ff6 -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 1 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 0 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 0 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 47 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 1 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 50 - textureCompression: 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 - - serializedVersion: 3 - buildTarget: Server - 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: [] - nameFileIdTable: {} - spritePackingTag: - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: arts/spines/ui/ui_herofund_banner_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_herofund_banner_1/ui_herofund_banner_1.skel.bytes b/Assets/arts/spines/ui/ui_herofund_banner_1/ui_herofund_banner_1.skel.bytes deleted file mode 100644 index 54ddeff17..000000000 Binary files a/Assets/arts/spines/ui/ui_herofund_banner_1/ui_herofund_banner_1.skel.bytes and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_herofund_banner_1/ui_herofund_banner_1.skel.bytes.meta b/Assets/arts/spines/ui/ui_herofund_banner_1/ui_herofund_banner_1.skel.bytes.meta deleted file mode 100644 index ddcf5b380..000000000 --- a/Assets/arts/spines/ui/ui_herofund_banner_1/ui_herofund_banner_1.skel.bytes.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: abb28fb5395fdc34d9e5c2fcfb1b744c -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_herofund_banner_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_herofund_banner_1/ui_herofund_banner_1_atlas.asset b/Assets/arts/spines/ui/ui_herofund_banner_1/ui_herofund_banner_1_atlas.asset deleted file mode 100644 index c04c57555..000000000 --- a/Assets/arts/spines/ui/ui_herofund_banner_1/ui_herofund_banner_1_atlas.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: a6b194f808b1af6499c93410e504af42, type: 3} - m_Name: ui_herofund_banner_1_atlas - m_EditorClassIdentifier: - textureLoadingMode: 0 - onDemandTextureLoader: {fileID: 0} - atlasFile: {fileID: 4900000, guid: c2e25b3431e36fd4d8661a02dfa62829, type: 3} - materials: - - {fileID: 2100000, guid: dd9b75c4542f1ed4491f2ef96f028306, type: 2} diff --git a/Assets/arts/spines/ui/ui_herofund_banner_1/ui_herofund_banner_1_atlas.asset.meta b/Assets/arts/spines/ui/ui_herofund_banner_1/ui_herofund_banner_1_atlas.asset.meta deleted file mode 100644 index feac3e224..000000000 --- a/Assets/arts/spines/ui/ui_herofund_banner_1/ui_herofund_banner_1_atlas.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 10079d4120bf2a946a24b56a10c3d40c -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_herofund_banner_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_herofund_banner_1/ui_herofund_banner_1_material.mat b/Assets/arts/spines/ui/ui_herofund_banner_1/ui_herofund_banner_1_material.mat deleted file mode 100644 index f6a6d876b..000000000 --- a/Assets/arts/spines/ui/ui_herofund_banner_1/ui_herofund_banner_1_material.mat +++ /dev/null @@ -1,44 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!21 &2100000 -Material: - serializedVersion: 8 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: ui_herofund_banner_1_material - m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3} - m_ValidKeywords: - - _STRAIGHT_ALPHA_INPUT - m_InvalidKeywords: - - _USE8NEIGHBOURHOOD_ON - m_LightmapFlags: 4 - m_EnableInstancingVariants: 0 - m_DoubleSidedGI: 0 - m_CustomRenderQueue: -1 - stringTagMap: {} - disabledShaderPasses: [] - m_SavedProperties: - serializedVersion: 3 - m_TexEnvs: - - _MainTex: - m_Texture: {fileID: 2800000, guid: b682bf38ed589d243909b129eb133ff6, type: 3} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - m_Ints: [] - m_Floats: - - _Cutoff: 0.1 - - _OutlineMipLevel: 0 - - _OutlineOpaqueAlpha: 1 - - _OutlineReferenceTexWidth: 1024 - - _OutlineSmoothness: 1 - - _OutlineWidth: 3 - - _StencilComp: 8 - - _StencilRef: 1 - - _StraightAlphaInput: 1 - - _ThresholdEnd: 0.25 - - _Use8Neighbourhood: 1 - m_Colors: - - _OutlineColor: {r: 1, g: 1, b: 0, a: 1} - m_BuildTextureStacks: [] diff --git a/Assets/arts/spines/ui/ui_herofund_banner_1/ui_herofund_banner_1_material.mat.meta b/Assets/arts/spines/ui/ui_herofund_banner_1/ui_herofund_banner_1_material.mat.meta deleted file mode 100644 index 33c6c76df..000000000 --- a/Assets/arts/spines/ui/ui_herofund_banner_1/ui_herofund_banner_1_material.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: dd9b75c4542f1ed4491f2ef96f028306 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 2100000 - userData: - assetBundleName: arts/spines/ui/ui_herofund_banner_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_herofund_banner_1/ui_herofund_banner_1_skeletondata.asset b/Assets/arts/spines/ui/ui_herofund_banner_1/ui_herofund_banner_1_skeletondata.asset deleted file mode 100644 index e2ac5a607..000000000 --- a/Assets/arts/spines/ui/ui_herofund_banner_1/ui_herofund_banner_1_skeletondata.asset +++ /dev/null @@ -1,31 +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: f1b3b4b945939a54ea0b23d3396115fb, type: 3} - m_Name: ui_herofund_banner_1_skeletondata - m_EditorClassIdentifier: - atlasAssets: - - {fileID: 11400000, guid: 10079d4120bf2a946a24b56a10c3d40c, type: 2} - scale: 0.01 - skeletonJSON: {fileID: 4900000, guid: abb28fb5395fdc34d9e5c2fcfb1b744c, type: 3} - isUpgradingBlendModeMaterials: 0 - blendModeMaterials: - requiresBlendModeMaterials: 0 - applyAdditiveMaterial: 0 - additiveMaterials: [] - multiplyMaterials: [] - screenMaterials: [] - skeletonDataModifiers: [] - fromAnimation: [] - toAnimation: [] - duration: [] - defaultMix: 0.2 - controller: {fileID: 0} diff --git a/Assets/arts/spines/ui/ui_herofund_banner_1/ui_herofund_banner_1_skeletondata.asset.meta b/Assets/arts/spines/ui/ui_herofund_banner_1/ui_herofund_banner_1_skeletondata.asset.meta deleted file mode 100644 index f87d25c7d..000000000 --- a/Assets/arts/spines/ui/ui_herofund_banner_1/ui_herofund_banner_1_skeletondata.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 6ea624d20aa4f8b44912c4bdd056626a -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_herofund_banner_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_reward_star.meta b/Assets/arts/spines/ui/ui_reward_star.meta deleted file mode 100644 index 2ff586d8b..000000000 --- a/Assets/arts/spines/ui/ui_reward_star.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: e31aceacf1389e04190f89694a088af0 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_reward_star/ui_reward_star.atlas.txt b/Assets/arts/spines/ui/ui_reward_star/ui_reward_star.atlas.txt deleted file mode 100644 index cd26675d7..000000000 --- a/Assets/arts/spines/ui/ui_reward_star/ui_reward_star.atlas.txt +++ /dev/null @@ -1,6 +0,0 @@ -ui_reward_star.png -size:32,32 -filter:Linear,Linear -1 -bounds:1,1,26,26 -offsets:2,2,30,30 diff --git a/Assets/arts/spines/ui/ui_reward_star/ui_reward_star.atlas.txt.meta b/Assets/arts/spines/ui/ui_reward_star/ui_reward_star.atlas.txt.meta deleted file mode 100644 index 1ba3a5a1c..000000000 --- a/Assets/arts/spines/ui/ui_reward_star/ui_reward_star.atlas.txt.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 1986096e53db4c842a43d5e1b7821605 -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_reward_star.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_reward_star/ui_reward_star.png b/Assets/arts/spines/ui/ui_reward_star/ui_reward_star.png deleted file mode 100644 index 87ef0aefb..000000000 Binary files a/Assets/arts/spines/ui/ui_reward_star/ui_reward_star.png and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_reward_star/ui_reward_star.png.meta b/Assets/arts/spines/ui/ui_reward_star/ui_reward_star.png.meta deleted file mode 100644 index bee4e1e03..000000000 --- a/Assets/arts/spines/ui/ui_reward_star/ui_reward_star.png.meta +++ /dev/null @@ -1,147 +0,0 @@ -fileFormatVersion: 2 -guid: 12e4ddd1aca1e234f94d95f82b63271c -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 1 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 0 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 0 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 47 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 1 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 50 - textureCompression: 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 - - serializedVersion: 3 - buildTarget: Server - 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: [] - nameFileIdTable: {} - spritePackingTag: - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: arts/spines/ui/ui_reward_star.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_reward_star/ui_reward_star.skel.bytes b/Assets/arts/spines/ui/ui_reward_star/ui_reward_star.skel.bytes deleted file mode 100644 index 84c03c5cc..000000000 Binary files a/Assets/arts/spines/ui/ui_reward_star/ui_reward_star.skel.bytes and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_reward_star/ui_reward_star.skel.bytes.meta b/Assets/arts/spines/ui/ui_reward_star/ui_reward_star.skel.bytes.meta deleted file mode 100644 index c6ce16090..000000000 --- a/Assets/arts/spines/ui/ui_reward_star/ui_reward_star.skel.bytes.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 9b5be056155784d4a9e8fa7a3ed63c8a -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_reward_star.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_reward_star/ui_reward_star_atlas.asset b/Assets/arts/spines/ui/ui_reward_star/ui_reward_star_atlas.asset deleted file mode 100644 index f9f8911f8..000000000 --- a/Assets/arts/spines/ui/ui_reward_star/ui_reward_star_atlas.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: a6b194f808b1af6499c93410e504af42, type: 3} - m_Name: ui_reward_star_atlas - m_EditorClassIdentifier: - textureLoadingMode: 0 - onDemandTextureLoader: {fileID: 0} - atlasFile: {fileID: 4900000, guid: 1986096e53db4c842a43d5e1b7821605, type: 3} - materials: - - {fileID: 2100000, guid: 9884fe51236f63041a76b099c6f27f79, type: 2} diff --git a/Assets/arts/spines/ui/ui_reward_star/ui_reward_star_atlas.asset.meta b/Assets/arts/spines/ui/ui_reward_star/ui_reward_star_atlas.asset.meta deleted file mode 100644 index 65bbeb3c9..000000000 --- a/Assets/arts/spines/ui/ui_reward_star/ui_reward_star_atlas.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 18c72048e39953442b1de30e98e9a901 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_reward_star.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_reward_star/ui_reward_star_material.mat b/Assets/arts/spines/ui/ui_reward_star/ui_reward_star_material.mat deleted file mode 100644 index b10ff0465..000000000 --- a/Assets/arts/spines/ui/ui_reward_star/ui_reward_star_material.mat +++ /dev/null @@ -1,44 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!21 &2100000 -Material: - serializedVersion: 8 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: ui_reward_star_material - m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3} - m_ValidKeywords: - - _STRAIGHT_ALPHA_INPUT - m_InvalidKeywords: - - _USE8NEIGHBOURHOOD_ON - m_LightmapFlags: 4 - m_EnableInstancingVariants: 0 - m_DoubleSidedGI: 0 - m_CustomRenderQueue: -1 - stringTagMap: {} - disabledShaderPasses: [] - m_SavedProperties: - serializedVersion: 3 - m_TexEnvs: - - _MainTex: - m_Texture: {fileID: 2800000, guid: 12e4ddd1aca1e234f94d95f82b63271c, type: 3} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - m_Ints: [] - m_Floats: - - _Cutoff: 0.1 - - _OutlineMipLevel: 0 - - _OutlineOpaqueAlpha: 1 - - _OutlineReferenceTexWidth: 1024 - - _OutlineSmoothness: 1 - - _OutlineWidth: 3 - - _StencilComp: 8 - - _StencilRef: 1 - - _StraightAlphaInput: 1 - - _ThresholdEnd: 0.25 - - _Use8Neighbourhood: 1 - m_Colors: - - _OutlineColor: {r: 1, g: 1, b: 0, a: 1} - m_BuildTextureStacks: [] diff --git a/Assets/arts/spines/ui/ui_reward_star/ui_reward_star_material.mat.meta b/Assets/arts/spines/ui/ui_reward_star/ui_reward_star_material.mat.meta deleted file mode 100644 index 590d3f1cb..000000000 --- a/Assets/arts/spines/ui/ui_reward_star/ui_reward_star_material.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 9884fe51236f63041a76b099c6f27f79 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 2100000 - userData: - assetBundleName: arts/spines/ui/ui_reward_star.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_reward_star/ui_reward_star_skeletondata.asset b/Assets/arts/spines/ui/ui_reward_star/ui_reward_star_skeletondata.asset deleted file mode 100644 index cb3834316..000000000 --- a/Assets/arts/spines/ui/ui_reward_star/ui_reward_star_skeletondata.asset +++ /dev/null @@ -1,31 +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: f1b3b4b945939a54ea0b23d3396115fb, type: 3} - m_Name: ui_reward_star_skeletondata - m_EditorClassIdentifier: - atlasAssets: - - {fileID: 11400000, guid: 18c72048e39953442b1de30e98e9a901, type: 2} - scale: 0.01 - skeletonJSON: {fileID: 4900000, guid: 9b5be056155784d4a9e8fa7a3ed63c8a, type: 3} - isUpgradingBlendModeMaterials: 0 - blendModeMaterials: - requiresBlendModeMaterials: 0 - applyAdditiveMaterial: 0 - additiveMaterials: [] - multiplyMaterials: [] - screenMaterials: [] - skeletonDataModifiers: [] - fromAnimation: [] - toAnimation: [] - duration: [] - defaultMix: 0.2 - controller: {fileID: 0} diff --git a/Assets/arts/spines/ui/ui_reward_star/ui_reward_star_skeletondata.asset.meta b/Assets/arts/spines/ui/ui_reward_star/ui_reward_star_skeletondata.asset.meta deleted file mode 100644 index 2c55176bf..000000000 --- a/Assets/arts/spines/ui/ui_reward_star/ui_reward_star_skeletondata.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 092efdd78b35d0043b1d9d63f70a3dcb -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_reward_star.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_sevenday_chest_1.meta b/Assets/arts/spines/ui/ui_sevenday_chest_1.meta deleted file mode 100644 index 97d95629d..000000000 --- a/Assets/arts/spines/ui/ui_sevenday_chest_1.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: d05360f44b8044c4498e18e4f27232cd -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_sevenday_chest_1/ui_sevenday_chest_1.atlas.txt b/Assets/arts/spines/ui/ui_sevenday_chest_1/ui_sevenday_chest_1.atlas.txt deleted file mode 100644 index af2c194ac..000000000 --- a/Assets/arts/spines/ui/ui_sevenday_chest_1/ui_sevenday_chest_1.atlas.txt +++ /dev/null @@ -1,13 +0,0 @@ -ui_sevenday_chest_1.png -size:128,128 -filter:Linear,Linear -1 -bounds:1,2,57,50 -rotate:90 -2 -bounds:1,61,55,53 -offsets:1,1,57,62 -xing -bounds:58,63,51,56 -offsets:2,3,55,61 -rotate:90 diff --git a/Assets/arts/spines/ui/ui_sevenday_chest_1/ui_sevenday_chest_1.atlas.txt.meta b/Assets/arts/spines/ui/ui_sevenday_chest_1/ui_sevenday_chest_1.atlas.txt.meta deleted file mode 100644 index 527d68ad4..000000000 --- a/Assets/arts/spines/ui/ui_sevenday_chest_1/ui_sevenday_chest_1.atlas.txt.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 180fc87a282ec564d8aea1cb83be36d1 -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_sevenday_chest_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_sevenday_chest_1/ui_sevenday_chest_1.png b/Assets/arts/spines/ui/ui_sevenday_chest_1/ui_sevenday_chest_1.png deleted file mode 100644 index 2920b1513..000000000 Binary files a/Assets/arts/spines/ui/ui_sevenday_chest_1/ui_sevenday_chest_1.png and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_sevenday_chest_1/ui_sevenday_chest_1.png.meta b/Assets/arts/spines/ui/ui_sevenday_chest_1/ui_sevenday_chest_1.png.meta deleted file mode 100644 index a195cb048..000000000 --- a/Assets/arts/spines/ui/ui_sevenday_chest_1/ui_sevenday_chest_1.png.meta +++ /dev/null @@ -1,147 +0,0 @@ -fileFormatVersion: 2 -guid: a3b667b2f661f524aba4c11d12b279b7 -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 1 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 0 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 0 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 47 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 1 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 50 - textureCompression: 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 - - serializedVersion: 3 - buildTarget: Server - 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: [] - nameFileIdTable: {} - spritePackingTag: - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: arts/spines/ui/ui_sevenday_chest_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_sevenday_chest_1/ui_sevenday_chest_1.skel.bytes b/Assets/arts/spines/ui/ui_sevenday_chest_1/ui_sevenday_chest_1.skel.bytes deleted file mode 100644 index 068f670f0..000000000 Binary files a/Assets/arts/spines/ui/ui_sevenday_chest_1/ui_sevenday_chest_1.skel.bytes and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_sevenday_chest_1/ui_sevenday_chest_1.skel.bytes.meta b/Assets/arts/spines/ui/ui_sevenday_chest_1/ui_sevenday_chest_1.skel.bytes.meta deleted file mode 100644 index 84f517313..000000000 --- a/Assets/arts/spines/ui/ui_sevenday_chest_1/ui_sevenday_chest_1.skel.bytes.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: c27b197edb3e49e48b6eb9a894fd3c4a -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_sevenday_chest_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_sevenday_chest_1/ui_sevenday_chest_1_atlas.asset b/Assets/arts/spines/ui/ui_sevenday_chest_1/ui_sevenday_chest_1_atlas.asset deleted file mode 100644 index f9286f870..000000000 --- a/Assets/arts/spines/ui/ui_sevenday_chest_1/ui_sevenday_chest_1_atlas.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: a6b194f808b1af6499c93410e504af42, type: 3} - m_Name: ui_sevenday_chest_1_atlas - m_EditorClassIdentifier: - textureLoadingMode: 0 - onDemandTextureLoader: {fileID: 0} - atlasFile: {fileID: 4900000, guid: 180fc87a282ec564d8aea1cb83be36d1, type: 3} - materials: - - {fileID: 2100000, guid: 8e273f82f6e472c4ab6686615a98fdaa, type: 2} diff --git a/Assets/arts/spines/ui/ui_sevenday_chest_1/ui_sevenday_chest_1_atlas.asset.meta b/Assets/arts/spines/ui/ui_sevenday_chest_1/ui_sevenday_chest_1_atlas.asset.meta deleted file mode 100644 index 8f4470934..000000000 --- a/Assets/arts/spines/ui/ui_sevenday_chest_1/ui_sevenday_chest_1_atlas.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 21082bdb03c861d40b6a30266986604f -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_sevenday_chest_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_sevenday_chest_1/ui_sevenday_chest_1_material.mat b/Assets/arts/spines/ui/ui_sevenday_chest_1/ui_sevenday_chest_1_material.mat deleted file mode 100644 index e04fe31b5..000000000 --- a/Assets/arts/spines/ui/ui_sevenday_chest_1/ui_sevenday_chest_1_material.mat +++ /dev/null @@ -1,44 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!21 &2100000 -Material: - serializedVersion: 8 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: ui_sevenday_chest_1_material - m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3} - m_ValidKeywords: - - _STRAIGHT_ALPHA_INPUT - m_InvalidKeywords: - - _USE8NEIGHBOURHOOD_ON - m_LightmapFlags: 4 - m_EnableInstancingVariants: 0 - m_DoubleSidedGI: 0 - m_CustomRenderQueue: -1 - stringTagMap: {} - disabledShaderPasses: [] - m_SavedProperties: - serializedVersion: 3 - m_TexEnvs: - - _MainTex: - m_Texture: {fileID: 2800000, guid: a3b667b2f661f524aba4c11d12b279b7, type: 3} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - m_Ints: [] - m_Floats: - - _Cutoff: 0.1 - - _OutlineMipLevel: 0 - - _OutlineOpaqueAlpha: 1 - - _OutlineReferenceTexWidth: 1024 - - _OutlineSmoothness: 1 - - _OutlineWidth: 3 - - _StencilComp: 8 - - _StencilRef: 1 - - _StraightAlphaInput: 1 - - _ThresholdEnd: 0.25 - - _Use8Neighbourhood: 1 - m_Colors: - - _OutlineColor: {r: 1, g: 1, b: 0, a: 1} - m_BuildTextureStacks: [] diff --git a/Assets/arts/spines/ui/ui_sevenday_chest_1/ui_sevenday_chest_1_material.mat.meta b/Assets/arts/spines/ui/ui_sevenday_chest_1/ui_sevenday_chest_1_material.mat.meta deleted file mode 100644 index 796a58c39..000000000 --- a/Assets/arts/spines/ui/ui_sevenday_chest_1/ui_sevenday_chest_1_material.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 8e273f82f6e472c4ab6686615a98fdaa -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 2100000 - userData: - assetBundleName: arts/spines/ui/ui_sevenday_chest_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_sevenday_chest_1/ui_sevenday_chest_1_skeletondata.asset b/Assets/arts/spines/ui/ui_sevenday_chest_1/ui_sevenday_chest_1_skeletondata.asset deleted file mode 100644 index c5ffb5225..000000000 --- a/Assets/arts/spines/ui/ui_sevenday_chest_1/ui_sevenday_chest_1_skeletondata.asset +++ /dev/null @@ -1,31 +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: f1b3b4b945939a54ea0b23d3396115fb, type: 3} - m_Name: ui_sevenday_chest_1_skeletondata - m_EditorClassIdentifier: - atlasAssets: - - {fileID: 11400000, guid: 21082bdb03c861d40b6a30266986604f, type: 2} - scale: 0.01 - skeletonJSON: {fileID: 4900000, guid: c27b197edb3e49e48b6eb9a894fd3c4a, type: 3} - isUpgradingBlendModeMaterials: 0 - blendModeMaterials: - requiresBlendModeMaterials: 0 - applyAdditiveMaterial: 0 - additiveMaterials: [] - multiplyMaterials: [] - screenMaterials: [] - skeletonDataModifiers: [] - fromAnimation: [] - toAnimation: [] - duration: [] - defaultMix: 0.2 - controller: {fileID: 0} diff --git a/Assets/arts/spines/ui/ui_sevenday_chest_1/ui_sevenday_chest_1_skeletondata.asset.meta b/Assets/arts/spines/ui/ui_sevenday_chest_1/ui_sevenday_chest_1_skeletondata.asset.meta deleted file mode 100644 index e0b2dc414..000000000 --- a/Assets/arts/spines/ui/ui_sevenday_chest_1/ui_sevenday_chest_1_skeletondata.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 46fc54fbd73d24b42ae9cf7d5657cb43 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_sevenday_chest_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_task_chest_1.meta b/Assets/arts/spines/ui/ui_task_chest_1.meta deleted file mode 100644 index 61c8999f6..000000000 --- a/Assets/arts/spines/ui/ui_task_chest_1.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 3d809ce1298b3b84ab551a2a3542228f -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_task_chest_1/ui_task_chest_1.atlas.txt b/Assets/arts/spines/ui/ui_task_chest_1/ui_task_chest_1.atlas.txt deleted file mode 100644 index 1089c76ad..000000000 --- a/Assets/arts/spines/ui/ui_task_chest_1/ui_task_chest_1.atlas.txt +++ /dev/null @@ -1,10 +0,0 @@ -ui_task_chest_1.png -size:256,256 -filter:Linear,Linear -1 -bounds:1,1,120,104 -2 -bounds:1,107,120,115 -xing -bounds:123,166,51,56 -offsets:2,3,55,61 diff --git a/Assets/arts/spines/ui/ui_task_chest_1/ui_task_chest_1.atlas.txt.meta b/Assets/arts/spines/ui/ui_task_chest_1/ui_task_chest_1.atlas.txt.meta deleted file mode 100644 index b1fffe5cc..000000000 --- a/Assets/arts/spines/ui/ui_task_chest_1/ui_task_chest_1.atlas.txt.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: c130a0ccdfba28e47b71a9f7bdf855cc -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_task_chest_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_task_chest_1/ui_task_chest_1.png b/Assets/arts/spines/ui/ui_task_chest_1/ui_task_chest_1.png deleted file mode 100644 index 9f8e2f514..000000000 Binary files a/Assets/arts/spines/ui/ui_task_chest_1/ui_task_chest_1.png and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_task_chest_1/ui_task_chest_1.png.meta b/Assets/arts/spines/ui/ui_task_chest_1/ui_task_chest_1.png.meta deleted file mode 100644 index 13741c48c..000000000 --- a/Assets/arts/spines/ui/ui_task_chest_1/ui_task_chest_1.png.meta +++ /dev/null @@ -1,147 +0,0 @@ -fileFormatVersion: 2 -guid: eb8ade223d5932042862971bb885a4da -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 1 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 0 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 0 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 47 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 1 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 50 - textureCompression: 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 - - serializedVersion: 3 - buildTarget: Server - 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: [] - nameFileIdTable: {} - spritePackingTag: - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: arts/spines/ui/ui_task_chest_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_task_chest_1/ui_task_chest_1.skel.bytes b/Assets/arts/spines/ui/ui_task_chest_1/ui_task_chest_1.skel.bytes deleted file mode 100644 index 1804cc42f..000000000 Binary files a/Assets/arts/spines/ui/ui_task_chest_1/ui_task_chest_1.skel.bytes and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_task_chest_1/ui_task_chest_1.skel.bytes.meta b/Assets/arts/spines/ui/ui_task_chest_1/ui_task_chest_1.skel.bytes.meta deleted file mode 100644 index 34e377a74..000000000 --- a/Assets/arts/spines/ui/ui_task_chest_1/ui_task_chest_1.skel.bytes.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: bc88794de445f644aab72e875b3ca427 -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_task_chest_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_task_chest_1/ui_task_chest_1_atlas.asset b/Assets/arts/spines/ui/ui_task_chest_1/ui_task_chest_1_atlas.asset deleted file mode 100644 index 441bd884e..000000000 --- a/Assets/arts/spines/ui/ui_task_chest_1/ui_task_chest_1_atlas.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: a6b194f808b1af6499c93410e504af42, type: 3} - m_Name: ui_task_chest_1_atlas - m_EditorClassIdentifier: - textureLoadingMode: 0 - onDemandTextureLoader: {fileID: 0} - atlasFile: {fileID: 4900000, guid: c130a0ccdfba28e47b71a9f7bdf855cc, type: 3} - materials: - - {fileID: 2100000, guid: b35bfdb8172771842b819170ce1f4181, type: 2} diff --git a/Assets/arts/spines/ui/ui_task_chest_1/ui_task_chest_1_atlas.asset.meta b/Assets/arts/spines/ui/ui_task_chest_1/ui_task_chest_1_atlas.asset.meta deleted file mode 100644 index 79d10b0e9..000000000 --- a/Assets/arts/spines/ui/ui_task_chest_1/ui_task_chest_1_atlas.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 87c4d171f8e36214da9fc46ba0203ed3 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_task_chest_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_task_chest_1/ui_task_chest_1_material.mat b/Assets/arts/spines/ui/ui_task_chest_1/ui_task_chest_1_material.mat deleted file mode 100644 index aeb88b563..000000000 --- a/Assets/arts/spines/ui/ui_task_chest_1/ui_task_chest_1_material.mat +++ /dev/null @@ -1,44 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!21 &2100000 -Material: - serializedVersion: 8 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: ui_task_chest_1_material - m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3} - m_ValidKeywords: - - _STRAIGHT_ALPHA_INPUT - m_InvalidKeywords: - - _USE8NEIGHBOURHOOD_ON - m_LightmapFlags: 4 - m_EnableInstancingVariants: 0 - m_DoubleSidedGI: 0 - m_CustomRenderQueue: -1 - stringTagMap: {} - disabledShaderPasses: [] - m_SavedProperties: - serializedVersion: 3 - m_TexEnvs: - - _MainTex: - m_Texture: {fileID: 2800000, guid: eb8ade223d5932042862971bb885a4da, type: 3} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - m_Ints: [] - m_Floats: - - _Cutoff: 0.1 - - _OutlineMipLevel: 0 - - _OutlineOpaqueAlpha: 1 - - _OutlineReferenceTexWidth: 1024 - - _OutlineSmoothness: 1 - - _OutlineWidth: 3 - - _StencilComp: 8 - - _StencilRef: 1 - - _StraightAlphaInput: 1 - - _ThresholdEnd: 0.25 - - _Use8Neighbourhood: 1 - m_Colors: - - _OutlineColor: {r: 1, g: 1, b: 0, a: 1} - m_BuildTextureStacks: [] diff --git a/Assets/arts/spines/ui/ui_task_chest_1/ui_task_chest_1_material.mat.meta b/Assets/arts/spines/ui/ui_task_chest_1/ui_task_chest_1_material.mat.meta deleted file mode 100644 index 3028c3e53..000000000 --- a/Assets/arts/spines/ui/ui_task_chest_1/ui_task_chest_1_material.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: b35bfdb8172771842b819170ce1f4181 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 2100000 - userData: - assetBundleName: arts/spines/ui/ui_task_chest_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_task_chest_1/ui_task_chest_1_skeletondata.asset b/Assets/arts/spines/ui/ui_task_chest_1/ui_task_chest_1_skeletondata.asset deleted file mode 100644 index d3d9dd8b2..000000000 --- a/Assets/arts/spines/ui/ui_task_chest_1/ui_task_chest_1_skeletondata.asset +++ /dev/null @@ -1,31 +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: f1b3b4b945939a54ea0b23d3396115fb, type: 3} - m_Name: ui_task_chest_1_skeletondata - m_EditorClassIdentifier: - atlasAssets: - - {fileID: 11400000, guid: 87c4d171f8e36214da9fc46ba0203ed3, type: 2} - scale: 0.01 - skeletonJSON: {fileID: 4900000, guid: bc88794de445f644aab72e875b3ca427, type: 3} - isUpgradingBlendModeMaterials: 0 - blendModeMaterials: - requiresBlendModeMaterials: 0 - applyAdditiveMaterial: 0 - additiveMaterials: [] - multiplyMaterials: [] - screenMaterials: [] - skeletonDataModifiers: [] - fromAnimation: [] - toAnimation: [] - duration: [] - defaultMix: 0.2 - controller: {fileID: 0} diff --git a/Assets/arts/spines/ui/ui_task_chest_1/ui_task_chest_1_skeletondata.asset.meta b/Assets/arts/spines/ui/ui_task_chest_1/ui_task_chest_1_skeletondata.asset.meta deleted file mode 100644 index 50afde393..000000000 --- a/Assets/arts/spines/ui/ui_task_chest_1/ui_task_chest_1_skeletondata.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: eaa887e149c6eec4a9109eaa121ded56 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_task_chest_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_task_chest_2.meta b/Assets/arts/spines/ui/ui_task_chest_2.meta deleted file mode 100644 index bc35ef52f..000000000 --- a/Assets/arts/spines/ui/ui_task_chest_2.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 2309d0bcbf17b114ba0a7ac961f222d3 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_task_chest_2/ui_task_chest_2.atlas.txt b/Assets/arts/spines/ui/ui_task_chest_2/ui_task_chest_2.atlas.txt deleted file mode 100644 index f1d81ce8f..000000000 --- a/Assets/arts/spines/ui/ui_task_chest_2/ui_task_chest_2.atlas.txt +++ /dev/null @@ -1,11 +0,0 @@ -ui_task_chest_2.png -size:256,256 -filter:Linear,Linear -1 -bounds:1,1,120,107 -2 -bounds:1,110,120,118 -offsets:0,0,120,119 -xing -bounds:123,172,51,56 -offsets:2,3,55,61 diff --git a/Assets/arts/spines/ui/ui_task_chest_2/ui_task_chest_2.atlas.txt.meta b/Assets/arts/spines/ui/ui_task_chest_2/ui_task_chest_2.atlas.txt.meta deleted file mode 100644 index c4595fd75..000000000 --- a/Assets/arts/spines/ui/ui_task_chest_2/ui_task_chest_2.atlas.txt.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 7154174222052c64dbbafbbbf50b79cc -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_task_chest_2.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_task_chest_2/ui_task_chest_2.png b/Assets/arts/spines/ui/ui_task_chest_2/ui_task_chest_2.png deleted file mode 100644 index 75930e067..000000000 Binary files a/Assets/arts/spines/ui/ui_task_chest_2/ui_task_chest_2.png and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_task_chest_2/ui_task_chest_2.png.meta b/Assets/arts/spines/ui/ui_task_chest_2/ui_task_chest_2.png.meta deleted file mode 100644 index e074edd62..000000000 --- a/Assets/arts/spines/ui/ui_task_chest_2/ui_task_chest_2.png.meta +++ /dev/null @@ -1,147 +0,0 @@ -fileFormatVersion: 2 -guid: 86b4f6c614ac30d4e85d3b216b5f9cfa -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 1 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 0 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 0 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 47 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 1 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 50 - textureCompression: 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 - - serializedVersion: 3 - buildTarget: Server - 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: [] - nameFileIdTable: {} - spritePackingTag: - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: arts/spines/ui/ui_task_chest_2.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_task_chest_2/ui_task_chest_2.skel.bytes b/Assets/arts/spines/ui/ui_task_chest_2/ui_task_chest_2.skel.bytes deleted file mode 100644 index af8f3ff35..000000000 Binary files a/Assets/arts/spines/ui/ui_task_chest_2/ui_task_chest_2.skel.bytes and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_task_chest_2/ui_task_chest_2.skel.bytes.meta b/Assets/arts/spines/ui/ui_task_chest_2/ui_task_chest_2.skel.bytes.meta deleted file mode 100644 index 1225b1fcf..000000000 --- a/Assets/arts/spines/ui/ui_task_chest_2/ui_task_chest_2.skel.bytes.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 3234207b6ec8d67488d51e9f37666065 -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_task_chest_2.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_task_chest_2/ui_task_chest_2_atlas.asset b/Assets/arts/spines/ui/ui_task_chest_2/ui_task_chest_2_atlas.asset deleted file mode 100644 index f9fc18e08..000000000 --- a/Assets/arts/spines/ui/ui_task_chest_2/ui_task_chest_2_atlas.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: a6b194f808b1af6499c93410e504af42, type: 3} - m_Name: ui_task_chest_2_atlas - m_EditorClassIdentifier: - textureLoadingMode: 0 - onDemandTextureLoader: {fileID: 0} - atlasFile: {fileID: 4900000, guid: 7154174222052c64dbbafbbbf50b79cc, type: 3} - materials: - - {fileID: 2100000, guid: 31e4a8e4ea2c8e94295937d2e9e5aba3, type: 2} diff --git a/Assets/arts/spines/ui/ui_task_chest_2/ui_task_chest_2_atlas.asset.meta b/Assets/arts/spines/ui/ui_task_chest_2/ui_task_chest_2_atlas.asset.meta deleted file mode 100644 index e39000d28..000000000 --- a/Assets/arts/spines/ui/ui_task_chest_2/ui_task_chest_2_atlas.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 04d9dcf925b7838409aba0ed2ed32c7f -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_task_chest_2.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_task_chest_2/ui_task_chest_2_material.mat b/Assets/arts/spines/ui/ui_task_chest_2/ui_task_chest_2_material.mat deleted file mode 100644 index 535667a69..000000000 --- a/Assets/arts/spines/ui/ui_task_chest_2/ui_task_chest_2_material.mat +++ /dev/null @@ -1,44 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!21 &2100000 -Material: - serializedVersion: 8 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: ui_task_chest_2_material - m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3} - m_ValidKeywords: - - _STRAIGHT_ALPHA_INPUT - m_InvalidKeywords: - - _USE8NEIGHBOURHOOD_ON - m_LightmapFlags: 4 - m_EnableInstancingVariants: 0 - m_DoubleSidedGI: 0 - m_CustomRenderQueue: -1 - stringTagMap: {} - disabledShaderPasses: [] - m_SavedProperties: - serializedVersion: 3 - m_TexEnvs: - - _MainTex: - m_Texture: {fileID: 2800000, guid: 86b4f6c614ac30d4e85d3b216b5f9cfa, type: 3} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - m_Ints: [] - m_Floats: - - _Cutoff: 0.1 - - _OutlineMipLevel: 0 - - _OutlineOpaqueAlpha: 1 - - _OutlineReferenceTexWidth: 1024 - - _OutlineSmoothness: 1 - - _OutlineWidth: 3 - - _StencilComp: 8 - - _StencilRef: 1 - - _StraightAlphaInput: 1 - - _ThresholdEnd: 0.25 - - _Use8Neighbourhood: 1 - m_Colors: - - _OutlineColor: {r: 1, g: 1, b: 0, a: 1} - m_BuildTextureStacks: [] diff --git a/Assets/arts/spines/ui/ui_task_chest_2/ui_task_chest_2_material.mat.meta b/Assets/arts/spines/ui/ui_task_chest_2/ui_task_chest_2_material.mat.meta deleted file mode 100644 index bc956bec7..000000000 --- a/Assets/arts/spines/ui/ui_task_chest_2/ui_task_chest_2_material.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 31e4a8e4ea2c8e94295937d2e9e5aba3 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 2100000 - userData: - assetBundleName: arts/spines/ui/ui_task_chest_2.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_task_chest_2/ui_task_chest_2_skeletondata.asset b/Assets/arts/spines/ui/ui_task_chest_2/ui_task_chest_2_skeletondata.asset deleted file mode 100644 index ad3fdbf1c..000000000 --- a/Assets/arts/spines/ui/ui_task_chest_2/ui_task_chest_2_skeletondata.asset +++ /dev/null @@ -1,31 +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: f1b3b4b945939a54ea0b23d3396115fb, type: 3} - m_Name: ui_task_chest_2_skeletondata - m_EditorClassIdentifier: - atlasAssets: - - {fileID: 11400000, guid: 04d9dcf925b7838409aba0ed2ed32c7f, type: 2} - scale: 0.01 - skeletonJSON: {fileID: 4900000, guid: 3234207b6ec8d67488d51e9f37666065, type: 3} - isUpgradingBlendModeMaterials: 0 - blendModeMaterials: - requiresBlendModeMaterials: 0 - applyAdditiveMaterial: 0 - additiveMaterials: [] - multiplyMaterials: [] - screenMaterials: [] - skeletonDataModifiers: [] - fromAnimation: [] - toAnimation: [] - duration: [] - defaultMix: 0.2 - controller: {fileID: 0} diff --git a/Assets/arts/spines/ui/ui_task_chest_2/ui_task_chest_2_skeletondata.asset.meta b/Assets/arts/spines/ui/ui_task_chest_2/ui_task_chest_2_skeletondata.asset.meta deleted file mode 100644 index 66a49ae9a..000000000 --- a/Assets/arts/spines/ui/ui_task_chest_2/ui_task_chest_2_skeletondata.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 63c44a7f2d25277448ee9bbf18ad933a -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_task_chest_2.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_unlock_light_1.meta b/Assets/arts/spines/ui/ui_unlock_light_1.meta deleted file mode 100644 index 0f113b87a..000000000 --- a/Assets/arts/spines/ui/ui_unlock_light_1.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 937f6a548b157bc408bb489012a79267 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_unlock_light_1/ui_unlock_light_1.atlas.txt b/Assets/arts/spines/ui/ui_unlock_light_1/ui_unlock_light_1.atlas.txt deleted file mode 100644 index fe098be6e..000000000 --- a/Assets/arts/spines/ui/ui_unlock_light_1/ui_unlock_light_1.atlas.txt +++ /dev/null @@ -1,9 +0,0 @@ -ui_unlock_light_1.png -size:512,512 -filter:Linear,Linear -g3 -bounds:2,2,35,10 -offsets:0,1,35,12 -quan1 -bounds:2,14,273,273 -offsets:0,0,273,274 diff --git a/Assets/arts/spines/ui/ui_unlock_light_1/ui_unlock_light_1.atlas.txt.meta b/Assets/arts/spines/ui/ui_unlock_light_1/ui_unlock_light_1.atlas.txt.meta deleted file mode 100644 index 2ac883969..000000000 --- a/Assets/arts/spines/ui/ui_unlock_light_1/ui_unlock_light_1.atlas.txt.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: cf93d3b104db11a4494ed68ded0728ea -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_unlock_light_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_unlock_light_1/ui_unlock_light_1.png b/Assets/arts/spines/ui/ui_unlock_light_1/ui_unlock_light_1.png deleted file mode 100644 index 29f8567cb..000000000 Binary files a/Assets/arts/spines/ui/ui_unlock_light_1/ui_unlock_light_1.png and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_unlock_light_1/ui_unlock_light_1.png.meta b/Assets/arts/spines/ui/ui_unlock_light_1/ui_unlock_light_1.png.meta deleted file mode 100644 index 287f5cb6a..000000000 --- a/Assets/arts/spines/ui/ui_unlock_light_1/ui_unlock_light_1.png.meta +++ /dev/null @@ -1,147 +0,0 @@ -fileFormatVersion: 2 -guid: 6da66290ce90da848b0fba93d06b99b9 -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 1 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 0 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 0 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 47 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 1 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 50 - textureCompression: 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 - - serializedVersion: 3 - buildTarget: Server - 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: [] - nameFileIdTable: {} - spritePackingTag: - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: arts/spines/ui/ui_unlock_light_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_unlock_light_1/ui_unlock_light_1.skel.bytes b/Assets/arts/spines/ui/ui_unlock_light_1/ui_unlock_light_1.skel.bytes deleted file mode 100644 index b0fa6c579..000000000 Binary files a/Assets/arts/spines/ui/ui_unlock_light_1/ui_unlock_light_1.skel.bytes and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_unlock_light_1/ui_unlock_light_1.skel.bytes.meta b/Assets/arts/spines/ui/ui_unlock_light_1/ui_unlock_light_1.skel.bytes.meta deleted file mode 100644 index 23f1be5a7..000000000 --- a/Assets/arts/spines/ui/ui_unlock_light_1/ui_unlock_light_1.skel.bytes.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 6bf417a5c1bdb8149941fbac6ec58981 -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_unlock_light_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_unlock_light_1/ui_unlock_light_1_atlas.asset b/Assets/arts/spines/ui/ui_unlock_light_1/ui_unlock_light_1_atlas.asset deleted file mode 100644 index 60a1eb1a9..000000000 --- a/Assets/arts/spines/ui/ui_unlock_light_1/ui_unlock_light_1_atlas.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: a6b194f808b1af6499c93410e504af42, type: 3} - m_Name: ui_unlock_light_1_atlas - m_EditorClassIdentifier: - textureLoadingMode: 0 - onDemandTextureLoader: {fileID: 0} - atlasFile: {fileID: 4900000, guid: cf93d3b104db11a4494ed68ded0728ea, type: 3} - materials: - - {fileID: 2100000, guid: 0d596129b4e8b3847932767af456177a, type: 2} diff --git a/Assets/arts/spines/ui/ui_unlock_light_1/ui_unlock_light_1_atlas.asset.meta b/Assets/arts/spines/ui/ui_unlock_light_1/ui_unlock_light_1_atlas.asset.meta deleted file mode 100644 index 4d789c189..000000000 --- a/Assets/arts/spines/ui/ui_unlock_light_1/ui_unlock_light_1_atlas.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: a6f6a3780c9d8f44b9f4f825df0ac81f -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_unlock_light_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_unlock_light_1/ui_unlock_light_1_material.mat b/Assets/arts/spines/ui/ui_unlock_light_1/ui_unlock_light_1_material.mat deleted file mode 100644 index f3bbad8be..000000000 --- a/Assets/arts/spines/ui/ui_unlock_light_1/ui_unlock_light_1_material.mat +++ /dev/null @@ -1,44 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!21 &2100000 -Material: - serializedVersion: 8 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: ui_unlock_light_1_material - m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3} - m_ValidKeywords: - - _STRAIGHT_ALPHA_INPUT - m_InvalidKeywords: - - _USE8NEIGHBOURHOOD_ON - m_LightmapFlags: 4 - m_EnableInstancingVariants: 0 - m_DoubleSidedGI: 0 - m_CustomRenderQueue: -1 - stringTagMap: {} - disabledShaderPasses: [] - m_SavedProperties: - serializedVersion: 3 - m_TexEnvs: - - _MainTex: - m_Texture: {fileID: 2800000, guid: 6da66290ce90da848b0fba93d06b99b9, type: 3} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - m_Ints: [] - m_Floats: - - _Cutoff: 0.1 - - _OutlineMipLevel: 0 - - _OutlineOpaqueAlpha: 1 - - _OutlineReferenceTexWidth: 1024 - - _OutlineSmoothness: 1 - - _OutlineWidth: 3 - - _StencilComp: 8 - - _StencilRef: 1 - - _StraightAlphaInput: 1 - - _ThresholdEnd: 0.25 - - _Use8Neighbourhood: 1 - m_Colors: - - _OutlineColor: {r: 1, g: 1, b: 0, a: 1} - m_BuildTextureStacks: [] diff --git a/Assets/arts/spines/ui/ui_unlock_light_1/ui_unlock_light_1_material.mat.meta b/Assets/arts/spines/ui/ui_unlock_light_1/ui_unlock_light_1_material.mat.meta deleted file mode 100644 index 8b49d6e0a..000000000 --- a/Assets/arts/spines/ui/ui_unlock_light_1/ui_unlock_light_1_material.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 0d596129b4e8b3847932767af456177a -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 2100000 - userData: - assetBundleName: arts/spines/ui/ui_unlock_light_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_unlock_light_1/ui_unlock_light_1_skeletondata.asset b/Assets/arts/spines/ui/ui_unlock_light_1/ui_unlock_light_1_skeletondata.asset deleted file mode 100644 index 232d3e577..000000000 --- a/Assets/arts/spines/ui/ui_unlock_light_1/ui_unlock_light_1_skeletondata.asset +++ /dev/null @@ -1,31 +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: f1b3b4b945939a54ea0b23d3396115fb, type: 3} - m_Name: ui_unlock_light_1_skeletondata - m_EditorClassIdentifier: - atlasAssets: - - {fileID: 11400000, guid: a6f6a3780c9d8f44b9f4f825df0ac81f, type: 2} - scale: 0.01 - skeletonJSON: {fileID: 4900000, guid: 6bf417a5c1bdb8149941fbac6ec58981, type: 3} - isUpgradingBlendModeMaterials: 0 - blendModeMaterials: - requiresBlendModeMaterials: 0 - applyAdditiveMaterial: 0 - additiveMaterials: [] - multiplyMaterials: [] - screenMaterials: [] - skeletonDataModifiers: [] - fromAnimation: [] - toAnimation: [] - duration: [] - defaultMix: 0 - controller: {fileID: 0} diff --git a/Assets/arts/spines/ui/ui_unlock_light_1/ui_unlock_light_1_skeletondata.asset.meta b/Assets/arts/spines/ui/ui_unlock_light_1/ui_unlock_light_1_skeletondata.asset.meta deleted file mode 100644 index 704c9bca3..000000000 --- a/Assets/arts/spines/ui/ui_unlock_light_1/ui_unlock_light_1_skeletondata.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 4625b9fa08643e94a9bac693177a6078 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_unlock_light_1.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_unlock_light_2.meta b/Assets/arts/spines/ui/ui_unlock_light_2.meta deleted file mode 100644 index 408c54ee6..000000000 --- a/Assets/arts/spines/ui/ui_unlock_light_2.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 829b44b52f357564883c7410820d4a41 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_unlock_light_2/ui_unlock_light_2.atlas.txt b/Assets/arts/spines/ui/ui_unlock_light_2/ui_unlock_light_2.atlas.txt deleted file mode 100644 index 935721a40..000000000 --- a/Assets/arts/spines/ui/ui_unlock_light_2/ui_unlock_light_2.atlas.txt +++ /dev/null @@ -1,6 +0,0 @@ -ui_unlock_light_2.png -size:128,128 -filter:Linear,Linear -xx -bounds:2,2,62,63 -offsets:7,7,75,77 diff --git a/Assets/arts/spines/ui/ui_unlock_light_2/ui_unlock_light_2.atlas.txt.meta b/Assets/arts/spines/ui/ui_unlock_light_2/ui_unlock_light_2.atlas.txt.meta deleted file mode 100644 index 7a727c7b4..000000000 --- a/Assets/arts/spines/ui/ui_unlock_light_2/ui_unlock_light_2.atlas.txt.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 7afc7eb0602d1984aae0ea24a1858d2a -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_unlock_light_2.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_unlock_light_2/ui_unlock_light_2.png b/Assets/arts/spines/ui/ui_unlock_light_2/ui_unlock_light_2.png deleted file mode 100644 index 8d87f624f..000000000 Binary files a/Assets/arts/spines/ui/ui_unlock_light_2/ui_unlock_light_2.png and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_unlock_light_2/ui_unlock_light_2.png.meta b/Assets/arts/spines/ui/ui_unlock_light_2/ui_unlock_light_2.png.meta deleted file mode 100644 index 571bf901f..000000000 --- a/Assets/arts/spines/ui/ui_unlock_light_2/ui_unlock_light_2.png.meta +++ /dev/null @@ -1,147 +0,0 @@ -fileFormatVersion: 2 -guid: d9d5bceb4d174834b9db1ce09ce38512 -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 1 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 0 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 0 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 47 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 1 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: 50 - textureCompression: 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 - - serializedVersion: 3 - buildTarget: Server - 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: [] - nameFileIdTable: {} - spritePackingTag: - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: arts/spines/ui/ui_unlock_light_2.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_unlock_light_2/ui_unlock_light_2.skel.bytes b/Assets/arts/spines/ui/ui_unlock_light_2/ui_unlock_light_2.skel.bytes deleted file mode 100644 index 7917740e9..000000000 Binary files a/Assets/arts/spines/ui/ui_unlock_light_2/ui_unlock_light_2.skel.bytes and /dev/null differ diff --git a/Assets/arts/spines/ui/ui_unlock_light_2/ui_unlock_light_2.skel.bytes.meta b/Assets/arts/spines/ui/ui_unlock_light_2/ui_unlock_light_2.skel.bytes.meta deleted file mode 100644 index 57b98b61c..000000000 --- a/Assets/arts/spines/ui/ui_unlock_light_2/ui_unlock_light_2.skel.bytes.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 61cd1cb6e128f584cbe72fda5a182dfe -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: arts/spines/ui/ui_unlock_light_2.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_unlock_light_2/ui_unlock_light_2_atlas.asset b/Assets/arts/spines/ui/ui_unlock_light_2/ui_unlock_light_2_atlas.asset deleted file mode 100644 index 7cebad2a9..000000000 --- a/Assets/arts/spines/ui/ui_unlock_light_2/ui_unlock_light_2_atlas.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: a6b194f808b1af6499c93410e504af42, type: 3} - m_Name: ui_unlock_light_2_atlas - m_EditorClassIdentifier: - textureLoadingMode: 0 - onDemandTextureLoader: {fileID: 0} - atlasFile: {fileID: 4900000, guid: 7afc7eb0602d1984aae0ea24a1858d2a, type: 3} - materials: - - {fileID: 2100000, guid: 1a26ce43392abd24ba6ff2a9ee6df944, type: 2} diff --git a/Assets/arts/spines/ui/ui_unlock_light_2/ui_unlock_light_2_atlas.asset.meta b/Assets/arts/spines/ui/ui_unlock_light_2/ui_unlock_light_2_atlas.asset.meta deleted file mode 100644 index fc8d74122..000000000 --- a/Assets/arts/spines/ui/ui_unlock_light_2/ui_unlock_light_2_atlas.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 4741e73185967cc41a24ce9abab853c6 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_unlock_light_2.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_unlock_light_2/ui_unlock_light_2_material.mat b/Assets/arts/spines/ui/ui_unlock_light_2/ui_unlock_light_2_material.mat deleted file mode 100644 index 1fb076385..000000000 --- a/Assets/arts/spines/ui/ui_unlock_light_2/ui_unlock_light_2_material.mat +++ /dev/null @@ -1,44 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!21 &2100000 -Material: - serializedVersion: 8 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: ui_unlock_light_2_material - m_Shader: {fileID: 4800000, guid: b2f91ac81daca8e4392188a2ba68c1e3, type: 3} - m_ValidKeywords: - - _STRAIGHT_ALPHA_INPUT - m_InvalidKeywords: - - _USE8NEIGHBOURHOOD_ON - m_LightmapFlags: 4 - m_EnableInstancingVariants: 0 - m_DoubleSidedGI: 0 - m_CustomRenderQueue: -1 - stringTagMap: {} - disabledShaderPasses: [] - m_SavedProperties: - serializedVersion: 3 - m_TexEnvs: - - _MainTex: - m_Texture: {fileID: 2800000, guid: d9d5bceb4d174834b9db1ce09ce38512, type: 3} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - m_Ints: [] - m_Floats: - - _Cutoff: 0.1 - - _OutlineMipLevel: 0 - - _OutlineOpaqueAlpha: 1 - - _OutlineReferenceTexWidth: 1024 - - _OutlineSmoothness: 1 - - _OutlineWidth: 3 - - _StencilComp: 8 - - _StencilRef: 1 - - _StraightAlphaInput: 1 - - _ThresholdEnd: 0.25 - - _Use8Neighbourhood: 1 - m_Colors: - - _OutlineColor: {r: 1, g: 1, b: 0, a: 1} - m_BuildTextureStacks: [] diff --git a/Assets/arts/spines/ui/ui_unlock_light_2/ui_unlock_light_2_material.mat.meta b/Assets/arts/spines/ui/ui_unlock_light_2/ui_unlock_light_2_material.mat.meta deleted file mode 100644 index 79b73176e..000000000 --- a/Assets/arts/spines/ui/ui_unlock_light_2/ui_unlock_light_2_material.mat.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 1a26ce43392abd24ba6ff2a9ee6df944 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 2100000 - userData: - assetBundleName: arts/spines/ui/ui_unlock_light_2.ab - assetBundleVariant: diff --git a/Assets/arts/spines/ui/ui_unlock_light_2/ui_unlock_light_2_skeletondata.asset b/Assets/arts/spines/ui/ui_unlock_light_2/ui_unlock_light_2_skeletondata.asset deleted file mode 100644 index dc2cafd9c..000000000 --- a/Assets/arts/spines/ui/ui_unlock_light_2/ui_unlock_light_2_skeletondata.asset +++ /dev/null @@ -1,31 +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: f1b3b4b945939a54ea0b23d3396115fb, type: 3} - m_Name: ui_unlock_light_2_skeletondata - m_EditorClassIdentifier: - atlasAssets: - - {fileID: 11400000, guid: 4741e73185967cc41a24ce9abab853c6, type: 2} - scale: 0.01 - skeletonJSON: {fileID: 4900000, guid: 61cd1cb6e128f584cbe72fda5a182dfe, type: 3} - isUpgradingBlendModeMaterials: 0 - blendModeMaterials: - requiresBlendModeMaterials: 0 - applyAdditiveMaterial: 0 - additiveMaterials: [] - multiplyMaterials: [] - screenMaterials: [] - skeletonDataModifiers: [] - fromAnimation: [] - toAnimation: [] - duration: [] - defaultMix: 0 - controller: {fileID: 0} diff --git a/Assets/arts/spines/ui/ui_unlock_light_2/ui_unlock_light_2_skeletondata.asset.meta b/Assets/arts/spines/ui/ui_unlock_light_2/ui_unlock_light_2_skeletondata.asset.meta deleted file mode 100644 index 0ffdf2cca..000000000 --- a/Assets/arts/spines/ui/ui_unlock_light_2/ui_unlock_light_2_skeletondata.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 42da5c492090e394e889dc6cf80adbad -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: arts/spines/ui/ui_unlock_light_2.ab - assetBundleVariant: diff --git a/Assets/lua/app/ui/shop/cell/gift_reward_cell.lua.bytes b/Assets/lua/app/ui/shop/cell/gift_reward_cell.lua.bytes index ede09e977..59dbe3250 100644 Binary files a/Assets/lua/app/ui/shop/cell/gift_reward_cell.lua.bytes and b/Assets/lua/app/ui/shop/cell/gift_reward_cell.lua.bytes differ