diff --git a/lua_probject/base_project/Game/View/FilterView.lua b/lua_probject/base_project/Game/View/FilterView.lua index 999eb64..27e85cd 100644 --- a/lua_probject/base_project/Game/View/FilterView.lua +++ b/lua_probject/base_project/Game/View/FilterView.lua @@ -13,15 +13,24 @@ end function M:init() local view = self._view - local bg = view.transform:GetComponent(typeof(UnityEngine.UI.Image)) - bg.sprite = CommonUISprite:GetSprite("bg1") - local btnBack = view.transform:Find("btnBack") local btnBackBg = btnBack:GetComponent(typeof(UnityEngine.UI.Image)) btnBackBg.sprite = CommonUISprite:GetSprite("arrow1") btnBack = btnBack:GetComponent(typeof(UnityEngine.UI.Button)) LuaUIHelper:AddButtonClick(btnBack, function() - ViewManager.ChangeView(ViewManager.View_MainNew) + UIManager.ShowUI(UIManager.LobbyView) + end) + + local btnReset = view.transform:Find("btnReset") + btnReset = btnReset:GetComponent(typeof(UnityEngine.UI.Button)) + LuaUIHelper:AddButtonClick(btnReset, function() + + end) + + local btnFilter = view.transform:Find("btnFilter") + btnFilter = btnFilter:GetComponent(typeof(UnityEngine.UI.Button)) + LuaUIHelper:AddButtonClick(btnFilter, function() + end) self.titleCopy = view.transform:Find("scroll/Viewport/Content/imageTitle") @@ -34,9 +43,9 @@ end function M:SetList(v) for index, value in ipairs(self.list) do - value.goTitle:SetActive(false) - value.rectTs:SetActive(false) - value.rectRank:SetActive(false) + value.rectTitle.gameObject:SetActive(false) + value.rectTs.gameObject:SetActive(false) + value.rectRank.gameObject:SetActive(false) end for index, value in ipairs(v) do if index > #self.list then @@ -142,6 +151,7 @@ function M:ShowData(indexTemp, val, v) end listRank[index].textName.text = value.name listRank[index].goItem.gameObject:SetActive(true) + listRank[index].Animator:Play("stop", -1, 0) end end @@ -156,9 +166,16 @@ end function M:OnClickItem(val) -- print("按键值:" .. val.indexList .. "=" .. val.type .. "=" .. val.kind .. "=" .. val.index) local temp = FilterData[val.type] - if val.kind == "ts" then + if val.kind == "Ts" then for index, value in ipairs(temp.ts.data) do if val.index == index then + value.isShow = not value.isShow + local d = self.list[val.indexList].TS.list[index] + if value.isShow then + d.Animator:Play("open", -1, 0) + else + d.Animator:Play("close", -1, 0) + end break end end @@ -170,6 +187,9 @@ function M:OnClickItem(val) local v = index % 4 if v == 1 then value.isShow = not value.isShow + data[index + 1].isShow = value.isShow + data[index + 2].isShow = value.isShow + data[index + 3].isShow = value.isShow if value.isShow then listRank[index].Animator:Play("open", -1, 0) listRank[index + 1].Animator:Play("open", -1, 0) @@ -184,21 +204,64 @@ function M:OnClickItem(val) else value.isShow = not value.isShow v = index - v - print("这是数字" .. v .. "=" .. index) - if value.isShow then - listRank[index].Animator:Play("open", -1, 0) - else - listRank[index].Animator:Play("close", -1, 0) + if v % 4 == 0 and index % 4 == 0 then + v = v - 4 end - print("什么鬼" .. - tostring(data[v + 2].isShow) .. - tostring(data[v + 3].isShow) .. tostring(data[v + 4].isShow)) + + local animTimeIndex = LuaUIHelper:GetAnimatorAormalizedTime(listRank[index].Animator, true) + if value.isShow then + if not LuaUIHelper:GetAnimatorIsName(listRank[index].Animator, "open") then + if animTimeIndex > 1 then + animTimeIndex = 1 + end + if not LuaUIHelper:GetAnimatorIsName(listRank[index].Animator, "close") then + animTimeIndex = 1 + else + animTimeIndex = 1 - animTimeIndex + end + listRank[index].Animator:Play("open", -1, animTimeIndex) + end + else + if not LuaUIHelper:GetAnimatorIsName(listRank[index].Animator, "close") then + if animTimeIndex > 1 then + animTimeIndex = 1 + end + if not LuaUIHelper:GetAnimatorIsName(listRank[index].Animator, "open") then + animTimeIndex = 1 + else + animTimeIndex = 1 - animTimeIndex + end + listRank[index].Animator:Play("close", -1, animTimeIndex) + end + end + + local animTimeHead = LuaUIHelper:GetAnimatorAormalizedTime(listRank[v + 1].Animator, true) if data[v + 2].isShow and data[v + 3].isShow and data[v + 4].isShow then data[v + 1].isShow = true - listRank[v + 1].Animator:Play("open", -1, 0) + if not LuaUIHelper:GetAnimatorIsName(listRank[v + 1].Animator, "open") then + if animTimeHead > 1 then + animTimeHead = 1 + end + if not LuaUIHelper:GetAnimatorIsName(listRank[v + 1].Animator, "close") then + animTimeHead = 1 + listRank[v + 1].Animator:Play("open", -1, animTimeHead) + else + listRank[v + 1].Animator:Play("open", -1, 1 - animTimeHead) + end + end else data[v + 1].isShow = false - listRank[v + 1].Animator:Play("close", -1, 0) + if not LuaUIHelper:GetAnimatorIsName(listRank[v + 1].Animator, "close") then + if animTimeHead > 1 then + animTimeHead = 1 + end + if not LuaUIHelper:GetAnimatorIsName(listRank[v + 1].Animator, "open") then + animTimeHead = 1 + listRank[v + 1].Animator:Play("close", -1, animTimeHead) + else + listRank[v + 1].Animator:Play("close", -1, 1 - animTimeHead) + end + end end end break diff --git a/lua_probject/base_project/Game/View/LobbyNew/LobbyHome.lua b/lua_probject/base_project/Game/View/LobbyNew/LobbyHome.lua index 9702471..fdc45b0 100644 --- a/lua_probject/base_project/Game/View/LobbyNew/LobbyHome.lua +++ b/lua_probject/base_project/Game/View/LobbyNew/LobbyHome.lua @@ -18,12 +18,12 @@ function M:init(view) LuaUIHelper:AddButtonClick(btnNews, function() end) - local btnFilter = view:Find("btnFilter") - self.btnFilter_activepoint = btnFilter:Find("imagePoint") - btnFilter = btnFilter:GetComponent(typeof(UnityEngine.UI.Button)) - LuaUIHelper:AddButtonClick(btnFilter, function() + self.btnFilter = view:Find("btnFilter") + self.btnFilter_activepoint = self.btnFilter:Find("imagePoint") + self.btnFilter = self.btnFilter:GetComponent(typeof(UnityEngine.UI.Button)) + LuaUIHelper:AddButtonClick(self.btnFilter, function() local viewTemp = UIManager.ShowUI(UIManager.ViewFilter) - viewTemp:SetList(self.aar_title[self.enumTitle.Home].page) + viewTemp:SetList(self.aar_title[self.selectTitle].page) end) self.aar_title = {} @@ -73,7 +73,12 @@ function M:init(view) end function M:OnShowPage(val) - + self.selectTitle = self.aar_title[val].v + if #self.aar_title[val].page == 0 then + self.btnFilter.gameObject:SetActive(false) + else + self.btnFilter.gameObject:SetActive(true) + end end return M diff --git a/wb_unity_pro/.vs/wb_unity_pro/CopilotIndices/17.14.1368.60722/CodeChunks.db b/wb_unity_pro/.vs/wb_unity_pro/CopilotIndices/17.14.1368.60722/CodeChunks.db index 43e1cc7..36d9463 100644 Binary files a/wb_unity_pro/.vs/wb_unity_pro/CopilotIndices/17.14.1368.60722/CodeChunks.db and b/wb_unity_pro/.vs/wb_unity_pro/CopilotIndices/17.14.1368.60722/CodeChunks.db differ diff --git a/wb_unity_pro/.vs/wb_unity_pro/CopilotIndices/17.14.1368.60722/SemanticSymbols.db b/wb_unity_pro/.vs/wb_unity_pro/CopilotIndices/17.14.1368.60722/SemanticSymbols.db index ac67f80..c49cc91 100644 Binary files a/wb_unity_pro/.vs/wb_unity_pro/CopilotIndices/17.14.1368.60722/SemanticSymbols.db and b/wb_unity_pro/.vs/wb_unity_pro/CopilotIndices/17.14.1368.60722/SemanticSymbols.db differ diff --git a/wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/0b1a0ec4-50d9-4f0b-bc01-9b9e2177de81.vsidx b/wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/0b1a0ec4-50d9-4f0b-bc01-9b9e2177de81.vsidx deleted file mode 100644 index 486bf81..0000000 Binary files a/wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/0b1a0ec4-50d9-4f0b-bc01-9b9e2177de81.vsidx and /dev/null differ diff --git a/wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/6eb34f40-2c84-4db6-83e1-c117116edca3.vsidx b/wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/0d2f1b46-8d3b-4a67-aea5-05992c4288d7.vsidx similarity index 77% rename from wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/6eb34f40-2c84-4db6-83e1-c117116edca3.vsidx rename to wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/0d2f1b46-8d3b-4a67-aea5-05992c4288d7.vsidx index 6ec09ef..30d753b 100644 Binary files a/wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/6eb34f40-2c84-4db6-83e1-c117116edca3.vsidx and b/wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/0d2f1b46-8d3b-4a67-aea5-05992c4288d7.vsidx differ diff --git a/wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/94439c1a-33dc-474d-9164-fc4846b7a548.vsidx b/wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/94439c1a-33dc-474d-9164-fc4846b7a548.vsidx new file mode 100644 index 0000000..bc0ecbd Binary files /dev/null and b/wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/94439c1a-33dc-474d-9164-fc4846b7a548.vsidx differ diff --git a/wb_unity_pro/.vs/wb_unity_pro/v17/DocumentLayout.backup.json b/wb_unity_pro/.vs/wb_unity_pro/v17/DocumentLayout.backup.json index 139048c..12997f3 100644 --- a/wb_unity_pro/.vs/wb_unity_pro/v17/DocumentLayout.backup.json +++ b/wb_unity_pro/.vs/wb_unity_pro/v17/DocumentLayout.backup.json @@ -2,14 +2,6 @@ "Version": 1, "WorkspaceRootPath": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\", "Documents": [ - { - "AbsoluteMoniker": "D:0:0:{D75A4DC2-9F64-A98D-0D87-0D117969F0D9}|Assembly-CSharp-Editor.csproj|d:\\unityproject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\editor\\customsettings.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", - "RelativeMoniker": "D:0:0:{D75A4DC2-9F64-A98D-0D87-0D117969F0D9}|Assembly-CSharp-Editor.csproj|solutionrelative:assets\\scripts\\editor\\customsettings.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" - }, - { - "AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\vercheck.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", - "RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\vercheck.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" - }, { "AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|d:\\unityproject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\core\\luauihelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\core\\luauihelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" @@ -19,8 +11,8 @@ "RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\hotupdate.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { - "AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\source\\generate\\hotupdatewrap.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", - "RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\source\\generate\\hotupdatewrap.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" + "AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\vercheck.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", + "RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\vercheck.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { "AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\core\\pageslidermanager.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", @@ -54,23 +46,11 @@ "DocumentGroups": [ { "DockedWidth": 222, - "SelectedChildIndex": 2, + "SelectedChildIndex": 0, "Children": [ { "$type": "Document", - "DocumentIndex": 4, - "Title": "HotupdateWrap.cs", - "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Source\\Generate\\HotupdateWrap.cs", - "RelativeDocumentMoniker": "Assets\\Source\\Generate\\HotupdateWrap.cs", - "ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Source\\Generate\\HotupdateWrap.cs", - "RelativeToolTip": "Assets\\Source\\Generate\\HotupdateWrap.cs", - "ViewState": "AgIAAAAAAAAAAAAAAAAAAAQAAAANAAAAAAAAAA==", - "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", - "WhenOpened": "2025-12-16T12:10:36.126Z" - }, - { - "$type": "Document", - "DocumentIndex": 3, + "DocumentIndex": 1, "Title": "HotUpdate.cs", "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\HotUpdate.cs", "RelativeDocumentMoniker": "Assets\\Scripts\\HotUpdate.cs", @@ -78,24 +58,12 @@ "RelativeToolTip": "Assets\\Scripts\\HotUpdate.cs", "ViewState": "AgIAAJcAAAAAAAAAAAAAwK4AAAAAAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", - "WhenOpened": "2025-12-16T11:52:29.165Z" - }, - { - "$type": "Document", - "DocumentIndex": 0, - "Title": "CustomSettings.cs", - "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Editor\\CustomSettings.cs", - "RelativeDocumentMoniker": "Assets\\Scripts\\Editor\\CustomSettings.cs", - "ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Editor\\CustomSettings.cs", - "RelativeToolTip": "Assets\\Scripts\\Editor\\CustomSettings.cs", - "ViewState": "AgIAAJ4AAAAAAAAAAADgv7IAAAAxAAAAAAAAAA==", - "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", - "WhenOpened": "2025-12-12T10:00:55.514Z", + "WhenOpened": "2025-12-16T11:52:29.165Z", "EditorCaption": "" }, { "$type": "Document", - "DocumentIndex": 1, + "DocumentIndex": 2, "Title": "VerCheck.cs", "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\VerCheck.cs", "RelativeDocumentMoniker": "Assets\\Scripts\\VerCheck.cs", @@ -107,7 +75,7 @@ }, { "$type": "Document", - "DocumentIndex": 6, + "DocumentIndex": 4, "Title": "BuildBaseWindow.cs", "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Editor\\BuildBaseWindow.cs", "RelativeDocumentMoniker": "Assets\\Scripts\\Editor\\BuildBaseWindow.cs", @@ -119,7 +87,7 @@ }, { "$type": "Document", - "DocumentIndex": 5, + "DocumentIndex": 3, "Title": "PageSliderManager.cs", "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\PageSliderManager.cs", "RelativeDocumentMoniker": "Assets\\Scripts\\Core\\PageSliderManager.cs", @@ -131,7 +99,7 @@ }, { "$type": "Document", - "DocumentIndex": 9, + "DocumentIndex": 7, "Title": "LuaUIHelperSprite.cs", "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelperSprite.cs", "RelativeDocumentMoniker": "Assets\\Scripts\\Core\\LuaUIHelperSprite.cs", @@ -149,7 +117,7 @@ "Children": [ { "$type": "Document", - "DocumentIndex": 7, + "DocumentIndex": 5, "Title": "LuaUIHelperText.cs", "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelperText.cs", "RelativeDocumentMoniker": "Assets\\Scripts\\Core\\LuaUIHelperText.cs", @@ -161,7 +129,7 @@ }, { "$type": "Document", - "DocumentIndex": 8, + "DocumentIndex": 6, "Title": "LuaNetClient.cs", "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaNetClient.cs", "RelativeDocumentMoniker": "Assets\\Scripts\\Core\\LuaNetClient.cs", @@ -173,20 +141,20 @@ }, { "$type": "Document", - "DocumentIndex": 2, + "DocumentIndex": 0, "Title": "LuaUIHelper.cs", "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelper.cs", "RelativeDocumentMoniker": "Assets\\Scripts\\Core\\LuaUIHelper.cs", "ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelper.cs", "RelativeToolTip": "Assets\\Scripts\\Core\\LuaUIHelper.cs", - "ViewState": "AgIAAHEBAAAAAAAAAAAIwJwBAAApAAAAAAAAAA==", + "ViewState": "AgIAAJoBAAAAAAAAAAAcwLABAAAFAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "WhenOpened": "2025-11-06T12:57:44.98Z", "EditorCaption": "" }, { "$type": "Document", - "DocumentIndex": 10, + "DocumentIndex": 8, "Title": "GameApplication.cs", "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\GameApplication.cs", "RelativeDocumentMoniker": "Assets\\Scripts\\GameApplication.cs", diff --git a/wb_unity_pro/.vs/wb_unity_pro/v17/DocumentLayout.json b/wb_unity_pro/.vs/wb_unity_pro/v17/DocumentLayout.json index 77df93a..df66fa9 100644 --- a/wb_unity_pro/.vs/wb_unity_pro/v17/DocumentLayout.json +++ b/wb_unity_pro/.vs/wb_unity_pro/v17/DocumentLayout.json @@ -2,26 +2,22 @@ "Version": 1, "WorkspaceRootPath": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\", "Documents": [ + { + "AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\core\\pageslidermanager.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", + "RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\core\\pageslidermanager.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" + }, { "AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|d:\\unityproject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\core\\luauihelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\core\\luauihelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { - "AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\source\\generate\\hotupdatewrap.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", - "RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\source\\generate\\hotupdatewrap.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" + "AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|d:\\unityproject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\hotupdate.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", + "RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\hotupdate.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { "AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\vercheck.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\vercheck.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, - { - "AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\hotupdate.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", - "RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\hotupdate.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" - }, - { - "AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\core\\pageslidermanager.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", - "RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\core\\pageslidermanager.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" - }, { "AbsoluteMoniker": "D:0:0:{D75A4DC2-9F64-A98D-0D87-0D117969F0D9}|Assembly-CSharp-Editor.csproj|D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\editor\\buildbasewindow.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{D75A4DC2-9F64-A98D-0D87-0D117969F0D9}|Assembly-CSharp-Editor.csproj|solutionrelative:assets\\scripts\\editor\\buildbasewindow.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" @@ -50,24 +46,11 @@ "DocumentGroups": [ { "DockedWidth": 222, - "SelectedChildIndex": 0, + "SelectedChildIndex": 3, "Children": [ { "$type": "Document", - "DocumentIndex": 1, - "Title": "HotupdateWrap.cs", - "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Source\\Generate\\HotupdateWrap.cs", - "RelativeDocumentMoniker": "Assets\\Source\\Generate\\HotupdateWrap.cs", - "ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Source\\Generate\\HotupdateWrap.cs", - "RelativeToolTip": "Assets\\Source\\Generate\\HotupdateWrap.cs", - "ViewState": "AgIAAAAAAAAAAAAAAAAAAAQAAAANAAAAAAAAAA==", - "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", - "WhenOpened": "2025-12-16T12:10:36.126Z", - "EditorCaption": "" - }, - { - "$type": "Document", - "DocumentIndex": 3, + "DocumentIndex": 2, "Title": "HotUpdate.cs", "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\HotUpdate.cs", "RelativeDocumentMoniker": "Assets\\Scripts\\HotUpdate.cs", @@ -75,11 +58,12 @@ "RelativeToolTip": "Assets\\Scripts\\HotUpdate.cs", "ViewState": "AgIAAJcAAAAAAAAAAAAAwK4AAAAAAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", - "WhenOpened": "2025-12-16T11:52:29.165Z" + "WhenOpened": "2025-12-16T11:52:29.165Z", + "EditorCaption": "" }, { "$type": "Document", - "DocumentIndex": 2, + "DocumentIndex": 3, "Title": "VerCheck.cs", "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\VerCheck.cs", "RelativeDocumentMoniker": "Assets\\Scripts\\VerCheck.cs", @@ -91,7 +75,7 @@ }, { "$type": "Document", - "DocumentIndex": 5, + "DocumentIndex": 4, "Title": "BuildBaseWindow.cs", "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Editor\\BuildBaseWindow.cs", "RelativeDocumentMoniker": "Assets\\Scripts\\Editor\\BuildBaseWindow.cs", @@ -103,19 +87,20 @@ }, { "$type": "Document", - "DocumentIndex": 4, + "DocumentIndex": 0, "Title": "PageSliderManager.cs", "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\PageSliderManager.cs", "RelativeDocumentMoniker": "Assets\\Scripts\\Core\\PageSliderManager.cs", - "ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\PageSliderManager.cs", - "RelativeToolTip": "Assets\\Scripts\\Core\\PageSliderManager.cs", - "ViewState": "AgIAANIDAAAAAAAAAABIwAUEAAABAAAAAAAAAA==", + "ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\PageSliderManager.cs*", + "RelativeToolTip": "Assets\\Scripts\\Core\\PageSliderManager.cs*", + "ViewState": "AgIAANcAAAAAAAAAAAAAAOMAAAAMAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", - "WhenOpened": "2025-12-08T06:38:38.347Z" + "WhenOpened": "2025-12-08T06:38:38.347Z", + "EditorCaption": "" }, { "$type": "Document", - "DocumentIndex": 8, + "DocumentIndex": 7, "Title": "LuaUIHelperSprite.cs", "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelperSprite.cs", "RelativeDocumentMoniker": "Assets\\Scripts\\Core\\LuaUIHelperSprite.cs", @@ -133,7 +118,7 @@ "Children": [ { "$type": "Document", - "DocumentIndex": 6, + "DocumentIndex": 5, "Title": "LuaUIHelperText.cs", "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelperText.cs", "RelativeDocumentMoniker": "Assets\\Scripts\\Core\\LuaUIHelperText.cs", @@ -145,7 +130,7 @@ }, { "$type": "Document", - "DocumentIndex": 7, + "DocumentIndex": 6, "Title": "LuaNetClient.cs", "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaNetClient.cs", "RelativeDocumentMoniker": "Assets\\Scripts\\Core\\LuaNetClient.cs", @@ -157,20 +142,20 @@ }, { "$type": "Document", - "DocumentIndex": 0, + "DocumentIndex": 1, "Title": "LuaUIHelper.cs", "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelper.cs", "RelativeDocumentMoniker": "Assets\\Scripts\\Core\\LuaUIHelper.cs", - "ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelper.cs*", - "RelativeToolTip": "Assets\\Scripts\\Core\\LuaUIHelper.cs*", - "ViewState": "AgIAAHEBAAAAAAAAAAAAwIEBAAAwAAAAAAAAAA==", + "ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelper.cs", + "RelativeToolTip": "Assets\\Scripts\\Core\\LuaUIHelper.cs", + "ViewState": "AgIAAAMAAAAAAAAAAAAqwIIBAAAoAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "WhenOpened": "2025-11-06T12:57:44.98Z", "EditorCaption": "" }, { "$type": "Document", - "DocumentIndex": 9, + "DocumentIndex": 8, "Title": "GameApplication.cs", "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\GameApplication.cs", "RelativeDocumentMoniker": "Assets\\Scripts\\GameApplication.cs", diff --git a/wb_unity_pro/Assets/ART/UITemp/筛选-1.png b/wb_unity_pro/Assets/ART/UITemp/筛选-1.png deleted file mode 100644 index 08f9c7b..0000000 Binary files a/wb_unity_pro/Assets/ART/UITemp/筛选-1.png and /dev/null differ diff --git a/wb_unity_pro/Assets/ART/UITemp/筛选-1.png.meta b/wb_unity_pro/Assets/ART/UITemp/筛选-1.png.meta deleted file mode 100644 index 1a5b8a2..0000000 --- a/wb_unity_pro/Assets/ART/UITemp/筛选-1.png.meta +++ /dev/null @@ -1,135 +0,0 @@ -fileFormatVersion: 2 -guid: 9518a1457d09fd64f8c81d36eaf44860 -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: 0 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 8 - 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: 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: iPhone - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - 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: 5e97eb03825dee720800000000000000 - internalID: 0 - vertices: [] - indices: - edges: [] - weights: [] - secondaryTextures: [] - nameFileIdTable: {} - spritePackingTag: - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: base/prefab/b0e54c5146b13d4608d0df953e17ef0f - assetBundleVariant: diff --git a/wb_unity_pro/Assets/ART/base/lobby/lobby/Unit/unitMain.prefab b/wb_unity_pro/Assets/ART/base/lobby/lobby/Unit/unitMain.prefab index afd785c..a64cff7 100644 --- a/wb_unity_pro/Assets/ART/base/lobby/lobby/Unit/unitMain.prefab +++ b/wb_unity_pro/Assets/ART/base/lobby/lobby/Unit/unitMain.prefab @@ -162,7 +162,7 @@ RectTransform: - {fileID: 487682270168187552} - {fileID: 487682270228370121} m_Father: {fileID: 487682269292939090} - m_RootOrder: 16 + m_RootOrder: 20 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0} m_AnchorMax: {x: 0.5, y: 1} @@ -498,7 +498,7 @@ RectTransform: m_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 487682269292939090} - m_RootOrder: 6 + m_RootOrder: 10 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 1} m_AnchorMax: {x: 0.5, y: 1} @@ -580,7 +580,7 @@ RectTransform: m_Children: - {fileID: 487682270320477369} m_Father: {fileID: 487682269292939090} - m_RootOrder: 12 + m_RootOrder: 16 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 1} m_AnchorMax: {x: 0.5, y: 1} @@ -1563,7 +1563,7 @@ RectTransform: - {fileID: 487682269985910658} - {fileID: 487682269882893785} m_Father: {fileID: 487682269292939090} - m_RootOrder: 1 + m_RootOrder: 5 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 1} m_AnchorMax: {x: 0.5, y: 1} @@ -1683,7 +1683,7 @@ RectTransform: m_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 487682269292939090} - m_RootOrder: 3 + m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 1} m_AnchorMax: {x: 0.5, y: 1} @@ -1912,6 +1912,10 @@ RectTransform: m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 m_Children: + - {fileID: 1135878039837604115} + - {fileID: 104359917031409509} + - {fileID: 332875199416893673} + - {fileID: 6468636358308169327} - {fileID: 487682270390470179} - {fileID: 487682269134733828} - {fileID: 487682270227228720} @@ -2084,7 +2088,7 @@ RectTransform: m_Children: - {fileID: 487682268954280178} m_Father: {fileID: 487682269292939090} - m_RootOrder: 13 + m_RootOrder: 17 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 1} m_AnchorMax: {x: 0.5, y: 1} @@ -2280,7 +2284,7 @@ RectTransform: m_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 487682269292939090} - m_RootOrder: 8 + m_RootOrder: 12 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 1} m_AnchorMax: {x: 0.5, y: 1} @@ -2714,7 +2718,7 @@ RectTransform: m_Children: - {fileID: 487682268991404737} m_Father: {fileID: 487682269292939090} - m_RootOrder: 10 + m_RootOrder: 14 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 1} m_AnchorMax: {x: 0.5, y: 1} @@ -3146,7 +3150,7 @@ RectTransform: m_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 487682269292939090} - m_RootOrder: 7 + m_RootOrder: 11 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 1} m_AnchorMax: {x: 0.5, y: 1} @@ -3707,7 +3711,7 @@ RectTransform: - {fileID: 487682269723626954} - {fileID: 487682270373465519} m_Father: {fileID: 487682269292939090} - m_RootOrder: 2 + m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 1} m_AnchorMax: {x: 0.5, y: 1} @@ -3912,7 +3916,7 @@ RectTransform: - {fileID: 487682269159211005} - {fileID: 487682270204017537} m_Father: {fileID: 487682269292939090} - m_RootOrder: 11 + m_RootOrder: 15 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 1} m_AnchorMax: {x: 0.5, y: 1} @@ -3991,7 +3995,7 @@ RectTransform: - {fileID: 4435061787235051526} - {fileID: 487682269838013122} m_Father: {fileID: 487682269292939090} - m_RootOrder: 14 + m_RootOrder: 18 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 1} m_AnchorMax: {x: 0.5, y: 1} @@ -4314,7 +4318,7 @@ RectTransform: - {fileID: 9045739225198022563} - {fileID: 7583661353678978444} m_Father: {fileID: 487682269292939090} - m_RootOrder: 15 + m_RootOrder: 19 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 1} m_AnchorMax: {x: 0.5, y: 1} @@ -4363,7 +4367,7 @@ RectTransform: - {fileID: 487682268714481418} - {fileID: 487682269971920916} m_Father: {fileID: 487682269292939090} - m_RootOrder: 0 + m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 1} m_AnchorMax: {x: 0.5, y: 1} @@ -4718,7 +4722,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0.00016137396} + m_AnchoredPosition: {x: 0, y: 0.000085865766} m_SizeDelta: {x: 0, y: 300} m_Pivot: {x: 0, y: 1} --- !u!114 &487682270458738526 @@ -4776,7 +4780,7 @@ RectTransform: m_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 487682269292939090} - m_RootOrder: 9 + m_RootOrder: 13 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 1} m_AnchorMax: {x: 0.5, y: 1} @@ -5012,7 +5016,7 @@ RectTransform: m_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 487682269292939090} - m_RootOrder: 5 + m_RootOrder: 9 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 1} m_AnchorMax: {x: 0.5, y: 1} @@ -5088,7 +5092,7 @@ RectTransform: m_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 487682269292939090} - m_RootOrder: 4 + m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 1} m_AnchorMax: {x: 0.5, y: 1} @@ -5377,6 +5381,82 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: -20, y: -20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &952241305611229470 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6468636358308169327} + - component: {fileID: 7742694558714136180} + - component: {fileID: 5190154326539814733} + m_Layer: 5 + m_Name: Content + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &6468636358308169327 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 952241305611229470} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 487682269292939090} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 0} + m_AnchoredPosition: {x: 0, y: 731.03} + m_SizeDelta: {x: 0, y: 1462} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &7742694558714136180 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 952241305611229470} + m_CullTransparentMesh: 1 +--- !u!114 &5190154326539814733 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 952241305611229470} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 --- !u!1 &1838588223650215953 GameObject: m_ObjectHideFlags: 0 @@ -5824,7 +5904,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Content: {fileID: 7673156623141151089} m_Horizontal: 0 - m_Vertical: 1 + m_Vertical: 0 m_MovementType: 1 m_Elasticity: 0.1 m_Inertia: 1 @@ -5840,6 +5920,82 @@ MonoBehaviour: m_OnValueChanged: m_PersistentCalls: m_Calls: [] +--- !u!1 &5766021570369626615 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 104359917031409509} + - component: {fileID: 6899488327487679117} + - component: {fileID: 4334883616251488289} + m_Layer: 5 + m_Name: Centre + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &104359917031409509 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5766021570369626615} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 487682269292939090} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 276.29318} + m_SizeDelta: {x: 1170, y: 160.4937} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &6899488327487679117 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5766021570369626615} + m_CullTransparentMesh: 1 +--- !u!114 &4334883616251488289 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5766021570369626615} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 --- !u!1 &5878061086786629434 GameObject: m_ObjectHideFlags: 0 @@ -5970,7 +6126,7 @@ MonoBehaviour: m_Padding: m_Left: 6 m_Right: 0 - m_Top: 46 + m_Top: 8 m_Bottom: 0 m_ChildAlignment: 0 m_Spacing: 20 @@ -6071,6 +6227,82 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 +--- !u!1 &6965192540792339467 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1135878039837604115} + - component: {fileID: 720888571010361850} + - component: {fileID: 7600218306498358549} + m_Layer: 5 + m_Name: Top + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1135878039837604115 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6965192540792339467} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 487682269292939090} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 1} + m_AnchorMax: {x: 0.5, y: 1} + m_AnchoredPosition: {x: -0.000061035, y: -129.98328} + m_SizeDelta: {x: 1170, y: 259.9369} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &720888571010361850 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6965192540792339467} + m_CullTransparentMesh: 1 +--- !u!114 &7600218306498358549 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6965192540792339467} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 --- !u!1 &7110876206946422734 GameObject: m_ObjectHideFlags: 0 @@ -6268,12 +6500,88 @@ MonoBehaviour: m_TargetGraphic: {fileID: 5634376397394801736} m_HandleRect: {fileID: 2957831359622053796} m_Direction: 0 - m_Value: -0.0000035732885 - m_Size: 0.9175634 + m_Value: -0.000004019946 + m_Size: 0.9175633 m_NumberOfSteps: 0 m_OnValueChanged: m_PersistentCalls: m_Calls: [] +--- !u!1 &7860648879183263320 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 332875199416893673} + - component: {fileID: 3968424576616654124} + - component: {fileID: 514915312588939258} + m_Layer: 5 + m_Name: Title + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &332875199416893673 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7860648879183263320} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 487682269292939090} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 1} + m_AnchorMax: {x: 0.5, y: 1} + m_AnchoredPosition: {x: -0.000061035, y: -454.74} + m_SizeDelta: {x: 1170, y: 909.44995} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &3968424576616654124 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7860648879183263320} + m_CullTransparentMesh: 1 +--- !u!114 &514915312588939258 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7860648879183263320} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 --- !u!1 &8436422915245297310 GameObject: m_ObjectHideFlags: 0 diff --git a/wb_unity_pro/Assets/ART/base/lobby/lobby/lobbyGame.prefab b/wb_unity_pro/Assets/ART/base/lobby/lobby/lobbyGame.prefab index b9c38d5..eed1ed2 100644 --- a/wb_unity_pro/Assets/ART/base/lobby/lobby/lobbyGame.prefab +++ b/wb_unity_pro/Assets/ART/base/lobby/lobby/lobbyGame.prefab @@ -1387,7 +1387,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0.00007033919} + m_AnchoredPosition: {x: 0, y: 0.0009331073} m_SizeDelta: {x: 0, y: 300} m_Pivot: {x: 0, y: 1} --- !u!114 &7679919176778669560 @@ -2153,7 +2153,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Content: {fileID: 7679919176778669559} - m_Horizontal: 1 + m_Horizontal: 0 m_Vertical: 1 m_MovementType: 1 m_Elasticity: 0.1 diff --git a/wb_unity_pro/Assets/ART/base/lobby/lobby/lobbyMatch.prefab b/wb_unity_pro/Assets/ART/base/lobby/lobby/lobbyMatch.prefab index 78ba9e6..5b11c0b 100644 --- a/wb_unity_pro/Assets/ART/base/lobby/lobby/lobbyMatch.prefab +++ b/wb_unity_pro/Assets/ART/base/lobby/lobby/lobbyMatch.prefab @@ -613,7 +613,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: -0.00015199017} + m_AnchoredPosition: {x: 0, y: 0.00031163188} m_SizeDelta: {x: 0, y: 300} m_Pivot: {x: 0, y: 1} --- !u!114 &7893552782943049389 @@ -824,7 +824,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Content: {fileID: 7893552782943049390} - m_Horizontal: 1 + m_Horizontal: 0 m_Vertical: 1 m_MovementType: 1 m_Elasticity: 0.1 diff --git a/wb_unity_pro/Assets/ART/base/prefab/ViewFilter.prefab b/wb_unity_pro/Assets/ART/base/prefab/ViewFilter.prefab index 58c3ebc..4209811 100644 --- a/wb_unity_pro/Assets/ART/base/prefab/ViewFilter.prefab +++ b/wb_unity_pro/Assets/ART/base/prefab/ViewFilter.prefab @@ -1,5 +1,405 @@ %YAML 1.1 %TAG !u! tag:unity3d.com,2011: +--- !u!1 &349143151295069187 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3923313689928382035} + - component: {fileID: 7582622511004796991} + - component: {fileID: 8596554783791710355} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &3923313689928382035 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 349143151295069187} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6603634118661495601} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &7582622511004796991 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 349143151295069187} + m_CullTransparentMesh: 1 +--- !u!114 &8596554783791710355 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 349143151295069187} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 50 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 4 + m_MaxSize: 50 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\u91CD\u7F6E" +--- !u!1 &2958711722180659423 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6603634118661495601} + - component: {fileID: 2274067506779534663} + - component: {fileID: 3247702538212851840} + - component: {fileID: 4126830822792890534} + m_Layer: 5 + m_Name: btnReset + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &6603634118661495601 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2958711722180659423} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3923313689928382035} + m_Father: {fileID: 8453521026308253184} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 224.29999, y: 96.80005} + m_SizeDelta: {x: 379, y: 132} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &2274067506779534663 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2958711722180659423} + m_CullTransparentMesh: 1 +--- !u!114 &3247702538212851840 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2958711722180659423} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 0007404bf4e514542b87dfdb588ca6d8, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &4126830822792890534 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2958711722180659423} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 3247702538212851840} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!1 &4311655460234232130 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2698991910601655452} + - component: {fileID: 5247721889939986312} + - component: {fileID: 6478595621897622433} + m_Layer: 5 + m_Name: btnBG + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2698991910601655452 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4311655460234232130} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8453521026308253184} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &5247721889939986312 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4311655460234232130} + m_CullTransparentMesh: 1 +--- !u!114 &6478595621897622433 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4311655460234232130} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0.3137255} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &4963433083723868393 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2162986892486261689} + - component: {fileID: 3283271677454134346} + - component: {fileID: 5670163485366954041} + - component: {fileID: 4807762411146792209} + m_Layer: 5 + m_Name: btnFilter + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2162986892486261689 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4963433083723868393} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1826039324109191913} + m_Father: {fileID: 8453521026308253184} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 622.8, y: 96.8} + m_SizeDelta: {x: 379, y: 132} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &3283271677454134346 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4963433083723868393} + m_CullTransparentMesh: 1 +--- !u!114 &5670163485366954041 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4963433083723868393} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: dacc5ee58693bf5469860b3c79c65675, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &4807762411146792209 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4963433083723868393} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 5670163485366954041} + m_OnClick: + m_PersistentCalls: + m_Calls: [] --- !u!1 &5792844890084315740 GameObject: m_ObjectHideFlags: 0 @@ -76,6 +476,86 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 +--- !u!1 &8440037034151253898 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1826039324109191913} + - component: {fileID: 6230705635797672640} + - component: {fileID: 4315314024709541338} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1826039324109191913 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8440037034151253898} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2162986892486261689} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &6230705635797672640 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8440037034151253898} + m_CullTransparentMesh: 1 +--- !u!114 &4315314024709541338 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8440037034151253898} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 50 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 4 + m_MaxSize: 50 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\u5F00\u59CB\u7B5B\u9009" --- !u!1 &8453521025474105040 GameObject: m_ObjectHideFlags: 0 @@ -110,11 +590,11 @@ RectTransform: - {fileID: 8453521025970769319} - {fileID: 1802137942673714341} m_Father: {fileID: 8453521026308253184} - m_RootOrder: 1 + m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 1, y: 1} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: -395.99994, y: -94} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 774.00006, y: -94} m_SizeDelta: {x: 30, y: 54} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &8453521025474105036 @@ -230,7 +710,7 @@ RectTransform: m_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 8453521026308253184} - m_RootOrder: 0 + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 0, y: 1} @@ -548,7 +1028,7 @@ RectTransform: - {fileID: 8453521027516396210} - {fileID: 8453521026286212024} m_Father: {fileID: 8453521026308253184} - m_RootOrder: 2 + m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 0, y: 1} @@ -871,10 +1351,12 @@ RectTransform: m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 m_Children: + - {fileID: 2698991910601655452} - {fileID: 8453521025512941247} - {fileID: 8453521025474105041} - {fileID: 8453521026135380665} - - {fileID: 8453521026502165382} + - {fileID: 6603634118661495601} + - {fileID: 2162986892486261689} m_Father: {fileID: 0} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -904,14 +1386,14 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 1, g: 1, b: 1, a: 0.003921569} m_RaycastTarget: 1 m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 1076efdf396875048a4cb1c5d5ab163f, type: 3} + m_Sprite: {fileID: 0} m_Type: 0 m_PreserveAspect: 0 m_FillCenter: 1 @@ -1001,82 +1483,6 @@ MonoBehaviour: m_VerticalOverflow: 0 m_LineSpacing: 1 m_Text: "\u5F3A\u6293" ---- !u!1 &8453521026502165381 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 8453521026502165382} - - component: {fileID: 8453521026502165376} - - component: {fileID: 8453521026502165383} - m_Layer: 5 - m_Name: Image - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 0 ---- !u!224 &8453521026502165382 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8453521026502165381} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 8453521026308253184} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 1170, y: 2532} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &8453521026502165376 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8453521026502165381} - m_CullTransparentMesh: 0 ---- !u!114 &8453521026502165383 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8453521026502165381} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 0.53333336} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 9518a1457d09fd64f8c81d36eaf44860, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 --- !u!1 &8453521026609758924 GameObject: m_ObjectHideFlags: 0 @@ -1328,6 +1734,7 @@ RectTransform: m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 m_Children: + - {fileID: 4937314655352207956} - {fileID: 8453521027564759283} m_Father: {fileID: 8453521027345352587} m_RootOrder: 0 @@ -1910,12 +2317,12 @@ RectTransform: m_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 8453521026852755573} - m_RootOrder: 0 + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 8.5835, y: 9} - m_SizeDelta: {x: 425.2362, y: 76.034} + m_AnchoredPosition: {x: 81.83301, y: -16} + m_SizeDelta: {x: 560.53, y: 76.034} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &8453521027564759277 CanvasRenderer: @@ -1959,3 +2366,79 @@ MonoBehaviour: m_VerticalOverflow: 0 m_LineSpacing: 1 m_Text: "\u5FB7\u5DDE\u6251\u514B" +--- !u!1 &8856514943722328232 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4937314655352207956} + - component: {fileID: 2271332450643878108} + - component: {fileID: 1006748315915284531} + m_Layer: 5 + m_Name: Image (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &4937314655352207956 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8856514943722328232} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8453521026852755573} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 79.1, y: -33.4} + m_SizeDelta: {x: 566, y: 26} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &2271332450643878108 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8856514943722328232} + m_CullTransparentMesh: 1 +--- !u!114 &1006748315915284531 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8856514943722328232} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 8d1738f70bfc916468250e798e3fdf07, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 diff --git a/wb_unity_pro/Assets/ART/ui/texture/animation/btnImageClose.anim b/wb_unity_pro/Assets/ART/ui/texture/animation/btnImageClose.anim index 03b020b..a32a7d5 100644 --- a/wb_unity_pro/Assets/ART/ui/texture/animation/btnImageClose.anim +++ b/wb_unity_pro/Assets/ART/ui/texture/animation/btnImageClose.anim @@ -30,7 +30,7 @@ AnimationClip: inWeight: 0.33333334 outWeight: 0.33333334 - serializedVersion: 3 - time: 1 + time: 0.5 value: 1 inSlope: 0 outSlope: 0 @@ -58,7 +58,7 @@ AnimationClip: inWeight: 0.33333334 outWeight: 0.33333334 - serializedVersion: 3 - time: 1 + time: 0.5 value: 1 inSlope: 0 outSlope: 0 @@ -86,7 +86,7 @@ AnimationClip: inWeight: 0.33333334 outWeight: 0.33333334 - serializedVersion: 3 - time: 1 + time: 0.5 value: 1 inSlope: 0 outSlope: 0 @@ -114,7 +114,7 @@ AnimationClip: inWeight: 0.33333334 outWeight: 0.33333334 - serializedVersion: 3 - time: 1 + time: 0.5 value: 0 inSlope: 0 outSlope: 0 @@ -171,7 +171,7 @@ AnimationClip: m_AdditiveReferencePoseClip: {fileID: 0} m_AdditiveReferencePoseTime: 0 m_StartTime: 0 - m_StopTime: 1 + m_StopTime: 0.5 m_OrientationOffsetY: 0 m_Level: 0 m_CycleOffset: 0 @@ -200,7 +200,7 @@ AnimationClip: inWeight: 0.33333334 outWeight: 0.33333334 - serializedVersion: 3 - time: 1 + time: 0.5 value: 1 inSlope: 0 outSlope: 0 @@ -228,7 +228,7 @@ AnimationClip: inWeight: 0.33333334 outWeight: 0.33333334 - serializedVersion: 3 - time: 1 + time: 0.5 value: 1 inSlope: 0 outSlope: 0 @@ -256,7 +256,7 @@ AnimationClip: inWeight: 0.33333334 outWeight: 0.33333334 - serializedVersion: 3 - time: 1 + time: 0.5 value: 1 inSlope: 0 outSlope: 0 @@ -284,7 +284,7 @@ AnimationClip: inWeight: 0.33333334 outWeight: 0.33333334 - serializedVersion: 3 - time: 1 + time: 0.5 value: 0 inSlope: 0 outSlope: 0 diff --git a/wb_unity_pro/Assets/ART/ui/texture/animation/btnImageOpen.anim b/wb_unity_pro/Assets/ART/ui/texture/animation/btnImageOpen.anim index a0241ff..e0613e6 100644 --- a/wb_unity_pro/Assets/ART/ui/texture/animation/btnImageOpen.anim +++ b/wb_unity_pro/Assets/ART/ui/texture/animation/btnImageOpen.anim @@ -30,7 +30,7 @@ AnimationClip: inWeight: 0.33333334 outWeight: 0.33333334 - serializedVersion: 3 - time: 1 + time: 0.5 value: 1 inSlope: 0 outSlope: 0 @@ -58,7 +58,7 @@ AnimationClip: inWeight: 0.33333334 outWeight: 0.33333334 - serializedVersion: 3 - time: 1 + time: 0.5 value: 1 inSlope: 0 outSlope: 0 @@ -86,7 +86,7 @@ AnimationClip: inWeight: 0.33333334 outWeight: 0.33333334 - serializedVersion: 3 - time: 1 + time: 0.5 value: 1 inSlope: 0 outSlope: 0 @@ -114,7 +114,7 @@ AnimationClip: inWeight: 0.33333334 outWeight: 0.33333334 - serializedVersion: 3 - time: 1 + time: 0.5 value: 1 inSlope: 0 outSlope: 0 @@ -171,7 +171,7 @@ AnimationClip: m_AdditiveReferencePoseClip: {fileID: 0} m_AdditiveReferencePoseTime: 0 m_StartTime: 0 - m_StopTime: 1 + m_StopTime: 0.5 m_OrientationOffsetY: 0 m_Level: 0 m_CycleOffset: 0 @@ -200,7 +200,7 @@ AnimationClip: inWeight: 0.33333334 outWeight: 0.33333334 - serializedVersion: 3 - time: 1 + time: 0.5 value: 1 inSlope: 0 outSlope: 0 @@ -228,7 +228,7 @@ AnimationClip: inWeight: 0.33333334 outWeight: 0.33333334 - serializedVersion: 3 - time: 1 + time: 0.5 value: 1 inSlope: 0 outSlope: 0 @@ -256,7 +256,7 @@ AnimationClip: inWeight: 0.33333334 outWeight: 0.33333334 - serializedVersion: 3 - time: 1 + time: 0.5 value: 1 inSlope: 0 outSlope: 0 @@ -284,7 +284,7 @@ AnimationClip: inWeight: 0.33333334 outWeight: 0.33333334 - serializedVersion: 3 - time: 1 + time: 0.5 value: 1 inSlope: 0 outSlope: 0 diff --git a/wb_unity_pro/Assets/ART/ui/texture/main/Filter001.png b/wb_unity_pro/Assets/ART/ui/texture/main/Filter001.png new file mode 100644 index 0000000..6305bf6 Binary files /dev/null and b/wb_unity_pro/Assets/ART/ui/texture/main/Filter001.png differ diff --git a/wb_unity_pro/Assets/ART/ui/texture/main/saixuan10.png.meta b/wb_unity_pro/Assets/ART/ui/texture/main/Filter001.png.meta similarity index 97% rename from wb_unity_pro/Assets/ART/ui/texture/main/saixuan10.png.meta rename to wb_unity_pro/Assets/ART/ui/texture/main/Filter001.png.meta index e610102..6ea9a37 100644 --- a/wb_unity_pro/Assets/ART/ui/texture/main/saixuan10.png.meta +++ b/wb_unity_pro/Assets/ART/ui/texture/main/Filter001.png.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 7f887fa943fae554697d6a220354e0de +guid: dacc5ee58693bf5469860b3c79c65675 TextureImporter: internalIDToNameTable: [] externalObjects: {} @@ -63,7 +63,7 @@ TextureImporter: textureFormatSet: 0 ignorePngGamma: 0 applyGammaDecoding: 0 - cookieLightType: 1 + cookieLightType: 0 platformSettings: - serializedVersion: 3 buildTarget: DefaultTexturePlatform @@ -131,5 +131,5 @@ TextureImporter: pSDRemoveMatte: 0 pSDShowRemoveMatteOption: 0 userData: - assetBundleName: ui/texture/main + assetBundleName: assetBundleVariant: diff --git a/wb_unity_pro/Assets/ART/ui/texture/main/filter002.png b/wb_unity_pro/Assets/ART/ui/texture/main/filter002.png new file mode 100644 index 0000000..3e05881 Binary files /dev/null and b/wb_unity_pro/Assets/ART/ui/texture/main/filter002.png differ diff --git a/wb_unity_pro/Assets/ART/ui/texture/main/saixuan2.png.meta b/wb_unity_pro/Assets/ART/ui/texture/main/filter002.png.meta similarity index 97% rename from wb_unity_pro/Assets/ART/ui/texture/main/saixuan2.png.meta rename to wb_unity_pro/Assets/ART/ui/texture/main/filter002.png.meta index 6b698aa..bc66f5e 100644 --- a/wb_unity_pro/Assets/ART/ui/texture/main/saixuan2.png.meta +++ b/wb_unity_pro/Assets/ART/ui/texture/main/filter002.png.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: f308565b554eff04ab4824a783c70622 +guid: 0007404bf4e514542b87dfdb588ca6d8 TextureImporter: internalIDToNameTable: [] externalObjects: {} @@ -63,7 +63,7 @@ TextureImporter: textureFormatSet: 0 ignorePngGamma: 0 applyGammaDecoding: 0 - cookieLightType: 1 + cookieLightType: 0 platformSettings: - serializedVersion: 3 buildTarget: DefaultTexturePlatform @@ -131,5 +131,5 @@ TextureImporter: pSDRemoveMatte: 0 pSDShowRemoveMatteOption: 0 userData: - assetBundleName: ui/texture/main + assetBundleName: assetBundleVariant: diff --git a/wb_unity_pro/Assets/ART/ui/texture/main/filter003.png b/wb_unity_pro/Assets/ART/ui/texture/main/filter003.png new file mode 100644 index 0000000..e3bee8e Binary files /dev/null and b/wb_unity_pro/Assets/ART/ui/texture/main/filter003.png differ diff --git a/wb_unity_pro/Assets/ART/ui/texture/main/saixuan3.png.meta b/wb_unity_pro/Assets/ART/ui/texture/main/filter003.png.meta similarity index 97% rename from wb_unity_pro/Assets/ART/ui/texture/main/saixuan3.png.meta rename to wb_unity_pro/Assets/ART/ui/texture/main/filter003.png.meta index 9508608..222cd60 100644 --- a/wb_unity_pro/Assets/ART/ui/texture/main/saixuan3.png.meta +++ b/wb_unity_pro/Assets/ART/ui/texture/main/filter003.png.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 9fb2e362c69ca6d45a84191b1bc63c32 +guid: 8d1738f70bfc916468250e798e3fdf07 TextureImporter: internalIDToNameTable: [] externalObjects: {} @@ -63,7 +63,7 @@ TextureImporter: textureFormatSet: 0 ignorePngGamma: 0 applyGammaDecoding: 0 - cookieLightType: 1 + cookieLightType: 0 platformSettings: - serializedVersion: 3 buildTarget: DefaultTexturePlatform @@ -131,5 +131,5 @@ TextureImporter: pSDRemoveMatte: 0 pSDShowRemoveMatteOption: 0 userData: - assetBundleName: ui/texture/main + assetBundleName: assetBundleVariant: diff --git a/wb_unity_pro/Assets/ART/ui/texture/main/saixuan10.png b/wb_unity_pro/Assets/ART/ui/texture/main/saixuan10.png deleted file mode 100644 index ec8a626..0000000 Binary files a/wb_unity_pro/Assets/ART/ui/texture/main/saixuan10.png and /dev/null differ diff --git a/wb_unity_pro/Assets/ART/ui/texture/main/saixuan2.png b/wb_unity_pro/Assets/ART/ui/texture/main/saixuan2.png deleted file mode 100644 index 250ec6f..0000000 Binary files a/wb_unity_pro/Assets/ART/ui/texture/main/saixuan2.png and /dev/null differ diff --git a/wb_unity_pro/Assets/ART/ui/texture/main/saixuan3.png b/wb_unity_pro/Assets/ART/ui/texture/main/saixuan3.png deleted file mode 100644 index 5d96ee2..0000000 Binary files a/wb_unity_pro/Assets/ART/ui/texture/main/saixuan3.png and /dev/null differ diff --git a/wb_unity_pro/Assets/ART/ui/texture/main/saixuan4.png b/wb_unity_pro/Assets/ART/ui/texture/main/saixuan4.png deleted file mode 100644 index 418c546..0000000 Binary files a/wb_unity_pro/Assets/ART/ui/texture/main/saixuan4.png and /dev/null differ diff --git a/wb_unity_pro/Assets/ART/ui/texture/main/saixuan4.png.meta b/wb_unity_pro/Assets/ART/ui/texture/main/saixuan4.png.meta deleted file mode 100644 index bebfab3..0000000 --- a/wb_unity_pro/Assets/ART/ui/texture/main/saixuan4.png.meta +++ /dev/null @@ -1,135 +0,0 @@ -fileFormatVersion: 2 -guid: db2ef64c6ca055840b12d191b7b391cc -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: 0 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 8 - 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: 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: iPhone - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - 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: 5e97eb03825dee720800000000000000 - internalID: 0 - vertices: [] - indices: - edges: [] - weights: [] - secondaryTextures: [] - nameFileIdTable: {} - spritePackingTag: - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: ui/texture/main - assetBundleVariant: diff --git a/wb_unity_pro/Assets/ART/ui/texture/main/saixuan6.png b/wb_unity_pro/Assets/ART/ui/texture/main/saixuan6.png deleted file mode 100644 index 934eb6a..0000000 Binary files a/wb_unity_pro/Assets/ART/ui/texture/main/saixuan6.png and /dev/null differ diff --git a/wb_unity_pro/Assets/ART/ui/texture/main/saixuan6.png.meta b/wb_unity_pro/Assets/ART/ui/texture/main/saixuan6.png.meta deleted file mode 100644 index 17ca113..0000000 --- a/wb_unity_pro/Assets/ART/ui/texture/main/saixuan6.png.meta +++ /dev/null @@ -1,135 +0,0 @@ -fileFormatVersion: 2 -guid: c773cea637eaced43876d01b7669cb9e -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: 0 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 8 - 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: 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: iPhone - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - 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: 5e97eb03825dee720800000000000000 - internalID: 0 - vertices: [] - indices: - edges: [] - weights: [] - secondaryTextures: [] - nameFileIdTable: {} - spritePackingTag: - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: ui/texture/main - assetBundleVariant: diff --git a/wb_unity_pro/Assets/ART/ui/texture/main/saixuan7.png b/wb_unity_pro/Assets/ART/ui/texture/main/saixuan7.png deleted file mode 100644 index 8290588..0000000 Binary files a/wb_unity_pro/Assets/ART/ui/texture/main/saixuan7.png and /dev/null differ diff --git a/wb_unity_pro/Assets/ART/ui/texture/main/saixuan7.png.meta b/wb_unity_pro/Assets/ART/ui/texture/main/saixuan7.png.meta deleted file mode 100644 index 73d8906..0000000 --- a/wb_unity_pro/Assets/ART/ui/texture/main/saixuan7.png.meta +++ /dev/null @@ -1,135 +0,0 @@ -fileFormatVersion: 2 -guid: 899bdc8d09b18f442afb6878811f3885 -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: 0 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 8 - 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: 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: iPhone - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - 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: 5e97eb03825dee720800000000000000 - internalID: 0 - vertices: [] - indices: - edges: [] - weights: [] - secondaryTextures: [] - nameFileIdTable: {} - spritePackingTag: - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: ui/texture/main - assetBundleVariant: diff --git a/wb_unity_pro/Assets/ART/ui/texture/main/saixuan9.png b/wb_unity_pro/Assets/ART/ui/texture/main/saixuan9.png deleted file mode 100644 index 5c5d18c..0000000 Binary files a/wb_unity_pro/Assets/ART/ui/texture/main/saixuan9.png and /dev/null differ diff --git a/wb_unity_pro/Assets/ART/ui/texture/main/saixuan9.png.meta b/wb_unity_pro/Assets/ART/ui/texture/main/saixuan9.png.meta deleted file mode 100644 index b2e4167..0000000 --- a/wb_unity_pro/Assets/ART/ui/texture/main/saixuan9.png.meta +++ /dev/null @@ -1,135 +0,0 @@ -fileFormatVersion: 2 -guid: f433efacce7219541a63730961433964 -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: 0 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 8 - 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: 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: iPhone - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - 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: 5e97eb03825dee720800000000000000 - internalID: 0 - vertices: [] - indices: - edges: [] - weights: [] - secondaryTextures: [] - nameFileIdTable: {} - spritePackingTag: - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: ui/texture/main - assetBundleVariant: diff --git a/wb_unity_pro/Assets/Scripts/Core/PageSliderManager.cs b/wb_unity_pro/Assets/Scripts/Core/PageSliderManager.cs index 6d3685d..0bc985e 100644 --- a/wb_unity_pro/Assets/Scripts/Core/PageSliderManager.cs +++ b/wb_unity_pro/Assets/Scripts/Core/PageSliderManager.cs @@ -968,7 +968,6 @@ public class PageSliderManager : MonoBehaviour, IBeginDragHandler, IDragHandler, // ´¦ÀíÒ³ÃæÇл»¶¯»­ HandleDirectJumpAnimation(previousPageIndex, targetIndex); - Debug.Log($"Ö±½ÓÌø×ªµ½Ò³Ãæ {targetIndex}£¬ÆðʼλÖÃ: {jumpStartX}£¬Ä¿±êλÖÃ: {jumpTargetX}"); } // Ìí¼ÓÍ£Ö¹ËùÓж¯»­µÄ·½·¨ diff --git a/wb_unity_pro/Logs/AssetImportWorker0-prev.log b/wb_unity_pro/Logs/AssetImportWorker0-prev.log index 7754a5c..f80e6df 100644 --- a/wb_unity_pro/Logs/AssetImportWorker0-prev.log +++ b/wb_unity_pro/Logs/AssetImportWorker0-prev.log @@ -11,13 +11,13 @@ D:\Program Files\Editor\2021.3.45f2c1\Editor\Unity.exe -name AssetImportWorker0 -projectPath -D:/UnityProject/dezhouNew/dezhou_client/wb_unity_pro +D:/UnityProject/dezhou/dezhou_client/wb_unity_pro -logFile Logs/AssetImportWorker0.log -srvPort -52133 -Successfully changed project path to: D:/UnityProject/dezhouNew/dezhou_client/wb_unity_pro -D:/UnityProject/dezhouNew/dezhou_client/wb_unity_pro +64742 +Successfully changed project path to: D:/UnityProject/dezhou/dezhou_client/wb_unity_pro +D:/UnityProject/dezhou/dezhou_client/wb_unity_pro [UnityMemory] Configuration Parameters - Can be set up in boot.config "memorysetup-bucket-allocator-granularity=16" "memorysetup-bucket-allocator-bucket-count=8" @@ -47,17 +47,17 @@ D:/UnityProject/dezhouNew/dezhou_client/wb_unity_pro "memorysetup-temp-allocator-size-cloud-worker=32768" "memorysetup-temp-allocator-size-gi-baking-worker=262144" "memorysetup-temp-allocator-size-gfx=262144" -Player connection [1320] Host "[IP] 192.168.0.6 [Port] 0 [Flags] 2 [Guid] 2623418301 [EditorId] 2623418301 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-7R8JEQQ) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... +Player connection [12812] Host "[IP] 192.168.0.6 [Port] 0 [Flags] 2 [Guid] 4204833285 [EditorId] 4204833285 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-7R8JEQQ) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... -Player connection [1320] Host "[IP] 192.168.0.6 [Port] 0 [Flags] 2 [Guid] 2623418301 [EditorId] 2623418301 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-7R8JEQQ) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... +Player connection [12812] Host "[IP] 192.168.0.6 [Port] 0 [Flags] 2 [Guid] 4204833285 [EditorId] 4204833285 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-7R8JEQQ) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... AS: AutoStreaming module initializing. [Physics::Module] Initialized MultithreadedJobDispatcher with {0} workers. -Refreshing native plugins compatible for Editor in 68.20 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 60.53 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2021.3.45f2c1 (8058fe21db2f) [Subsystems] Discovering subsystems at path D:/Program Files/Editor/2021.3.45f2c1/Editor/Data/Resources/UnitySubsystems -[Subsystems] Discovering subsystems at path D:/UnityProject/dezhouNew/dezhou_client/wb_unity_pro/Assets +[Subsystems] Discovering subsystems at path D:/UnityProject/dezhou/dezhou_client/wb_unity_pro/Assets GfxDevice: creating device client; threaded=0; jobified=0 Direct3D: Version: Direct3D 11.0 [level 11.1] @@ -69,87 +69,87 @@ Initialize mono Mono path[0] = 'D:/Program Files/Editor/2021.3.45f2c1/Editor/Data/Managed' Mono path[1] = 'D:/Program Files/Editor/2021.3.45f2c1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' Mono config path = 'D:/Program Files/Editor/2021.3.45f2c1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56252 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56060 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... Register platform support module: D:/Program Files/Editor/2021.3.45f2c1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll Register platform support module: D:/Program Files/Editor/2021.3.45f2c1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll Register platform support module: D:/Program Files/Editor/2021.3.45f2c1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.003035 seconds. +Registered in 0.002733 seconds. Native extension for WindowsStandalone target not found [usbmuxd] Start listen thread [usbmuxd] Listen thread started Native extension for iOS target not found Native extension for Android target not found -Android Extension - Scanning For ADB Devices 229 ms -Refreshing native plugins compatible for Editor in 53.46 ms, found 3 plugins. +Android Extension - Scanning For ADB Devices 228 ms +Refreshing native plugins compatible for Editor in 47.42 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.923 seconds +- Completed reload, in 0.859 seconds Domain Reload Profiling: - ReloadAssembly (923ms) - BeginReloadAssembly (101ms) + ReloadAssembly (859ms) + BeginReloadAssembly (90ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (1ms) - EndReloadAssembly (725ms) - LoadAssemblies (100ms) + EndReloadAssembly (681ms) + LoadAssemblies (90ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (127ms) + SetupTypeCache (113ms) ReleaseScriptCaches (0ms) - RebuildScriptCaches (33ms) - SetupLoadedEditorAssemblies (520ms) + RebuildScriptCaches (29ms) + SetupLoadedEditorAssemblies (499ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (308ms) + InitializePlatformSupportModulesInManaged (304ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (54ms) - BeforeProcessingInitializeOnLoad (2ms) - ProcessInitializeOnLoadAttributes (107ms) - ProcessInitializeOnLoadMethodAttributes (49ms) + RefreshPlugins (47ms) + BeforeProcessingInitializeOnLoad (1ms) + ProcessInitializeOnLoadAttributes (101ms) + ProcessInitializeOnLoadMethodAttributes (46ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (0ms) Platform modules already initialized, skipping Registering precompiled user dll's ... -Registered in 0.006131 seconds. +Registered in 0.005465 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory is not a mono symbol file Native extension for WindowsStandalone target not found Native extension for iOS target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Package Manager log level set to [2] [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] Cannot connect to Unity Package Manager local server Mono: successfully reloaded assembly -- Completed reload, in 1.726 seconds +- Completed reload, in 1.531 seconds Domain Reload Profiling: - ReloadAssembly (1727ms) - BeginReloadAssembly (168ms) + ReloadAssembly (1532ms) + BeginReloadAssembly (125ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (1450ms) - LoadAssemblies (117ms) + CreateAndSetChildDomain (20ms) + EndReloadAssembly (1321ms) + LoadAssemblies (94ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (246ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (57ms) - SetupLoadedEditorAssemblies (1017ms) + SetupTypeCache (208ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (53ms) + SetupLoadedEditorAssemblies (947ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (25ms) + InitializePlatformSupportModulesInManaged (22ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (763ms) - ProcessInitializeOnLoadMethodAttributes (157ms) - AfterProcessingInitializeOnLoad (3ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (718ms) + ProcessInitializeOnLoadMethodAttributes (143ms) + AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (7ms) @@ -157,12 +157,384 @@ Platform modules already initialized, skipping ======================================================================== Worker process is ready to serve import requests Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds -Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2636 Unused Serialized files (Serialized files now loaded: 0) Unloading 107 unused Assets / (49.5 KB). Loaded Objects now: 3027. -Memory consumption went from 100.6 MB to 100.6 MB. -Total: 7.641200 ms (FindLiveObjects: 0.233700 ms CreateObjectMapping: 0.178500 ms MarkObjects: 7.085900 ms DeleteObjects: 0.142000 ms) +Memory consumption went from 100.5 MB to 100.5 MB. +Total: 7.058200 ms (FindLiveObjects: 0.224200 ms CreateObjectMapping: 0.192200 ms MarkObjects: 6.548500 ms DeleteObjects: 0.091800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005111 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.05 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.500 seconds +Domain Reload Profiling: + ReloadAssembly (1501ms) + BeginReloadAssembly (141ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1273ms) + LoadAssemblies (94ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (198ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (923ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (709ms) + ProcessInitializeOnLoadMethodAttributes (133ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3030. +Memory consumption went from 99.9 MB to 99.8 MB. +Total: 6.494700 ms (FindLiveObjects: 0.292600 ms CreateObjectMapping: 0.173100 ms MarkObjects: 5.984600 ms DeleteObjects: 0.043000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005737 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.547 seconds +Domain Reload Profiling: + ReloadAssembly (1548ms) + BeginReloadAssembly (145ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1313ms) + LoadAssemblies (100ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (214ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (930ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (712ms) + ProcessInitializeOnLoadMethodAttributes (131ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3033. +Memory consumption went from 99.9 MB to 99.9 MB. +Total: 7.148700 ms (FindLiveObjects: 0.209700 ms CreateObjectMapping: 0.126100 ms MarkObjects: 6.765900 ms DeleteObjects: 0.046100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005012 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.525 seconds +Domain Reload Profiling: + ReloadAssembly (1526ms) + BeginReloadAssembly (146ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1288ms) + LoadAssemblies (98ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (215ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (909ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (695ms) + ProcessInitializeOnLoadMethodAttributes (128ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3036. +Memory consumption went from 99.9 MB to 99.9 MB. +Total: 6.969300 ms (FindLiveObjects: 0.210200 ms CreateObjectMapping: 0.129800 ms MarkObjects: 6.582900 ms DeleteObjects: 0.044900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005054 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.20 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.593 seconds +Domain Reload Profiling: + ReloadAssembly (1594ms) + BeginReloadAssembly (166ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + EndReloadAssembly (1334ms) + LoadAssemblies (110ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (219ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (941ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (719ms) + ProcessInitializeOnLoadMethodAttributes (136ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3039. +Memory consumption went from 99.9 MB to 99.9 MB. +Total: 6.162700 ms (FindLiveObjects: 0.205400 ms CreateObjectMapping: 0.133200 ms MarkObjects: 5.785500 ms DeleteObjects: 0.037600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005184 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.06 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.472 seconds +Domain Reload Profiling: + ReloadAssembly (1472ms) + BeginReloadAssembly (136ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + EndReloadAssembly (1250ms) + LoadAssemblies (94ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (202ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (892ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (692ms) + ProcessInitializeOnLoadMethodAttributes (122ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.05 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3042. +Memory consumption went from 99.9 MB to 99.9 MB. +Total: 7.589900 ms (FindLiveObjects: 0.201300 ms CreateObjectMapping: 0.112900 ms MarkObjects: 7.237800 ms DeleteObjects: 0.037200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005104 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.452 seconds +Domain Reload Profiling: + ReloadAssembly (1452ms) + BeginReloadAssembly (138ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + EndReloadAssembly (1229ms) + LoadAssemblies (95ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (200ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (876ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (677ms) + ProcessInitializeOnLoadMethodAttributes (120ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.05 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3045. +Memory consumption went from 100.0 MB to 100.0 MB. +Total: 6.313400 ms (FindLiveObjects: 0.201100 ms CreateObjectMapping: 0.108700 ms MarkObjects: 5.968700 ms DeleteObjects: 0.034000 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -179,60 +551,76 @@ AssetImportParameters requested are different than current active one (requested custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - Time since last request: 64051.297337 seconds. - path: Assets/ART/base/prefab/ViewFilter.prefab - artifactKey: Guid(395c889d500a77847af945ea7e9607f2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) + Time since last request: 74055.328843 seconds. + path: Assets/Scripts/Core + artifactKey: Guid(951f8ae4a35e6124daa36e10acb6954f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Number of updated assets reloaded before import = 0 -Start importing Assets/ART/base/prefab/ViewFilter.prefab using Guid(395c889d500a77847af945ea7e9607f2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2710840b0f75d795eb7a6bb0838b8e3f') in 0.088265 seconds -Number of asset objects unloaded after import = 103 +Start importing Assets/Scripts/Core using Guid(951f8ae4a35e6124daa36e10acb6954f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ef88a7aff232d5c9278c2b69fe17a3ea') in 0.020727 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 1.025634 seconds. + path: Assets/Scripts/Core/LuaUIHelper.cs + artifactKey: Guid(9c51290b0e141d544b5b2da1ef2845c3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Scripts/Core/LuaUIHelper.cs using Guid(9c51290b0e141d544b5b2da1ef2845c3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f37b67522cd08883573585857931b29c') in 0.047497 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 104.027789 seconds. + path: Assets/Scripts/Core/LuaUIHelper.cs + artifactKey: Guid(9c51290b0e141d544b5b2da1ef2845c3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Scripts/Core/LuaUIHelper.cs using Guid(9c51290b0e141d544b5b2da1ef2845c3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '27473e30d02878e7b4a29568317490e4') in 0.002068 seconds +Number of asset objects unloaded after import = 0 ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.005016 seconds. +Registered in 0.005182 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory is not a mono symbol file Native extension for WindowsStandalone target not found Native extension for iOS target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.06 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] Cannot connect to Unity Package Manager local server Mono: successfully reloaded assembly -- Completed reload, in 1.480 seconds +- Completed reload, in 1.476 seconds Domain Reload Profiling: - ReloadAssembly (1481ms) - BeginReloadAssembly (138ms) + ReloadAssembly (1477ms) + BeginReloadAssembly (141ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - EndReloadAssembly (1254ms) - LoadAssemblies (94ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1249ms) + LoadAssemblies (95ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (206ms) + SetupTypeCache (204ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (887ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (894ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) + InitializePlatformSupportModulesInManaged (21ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (54ms) - ProcessInitializeOnLoadAttributes (677ms) - ProcessInitializeOnLoadMethodAttributes (129ms) - AfterProcessingInitializeOnLoad (2ms) + BeforeProcessingInitializeOnLoad (51ms) + ProcessInitializeOnLoadAttributes (695ms) + ProcessInitializeOnLoadMethodAttributes (122ms) + AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) + AwakeInstancesAfterBackupRestoration (7ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.19 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 101 unused Assets / (27.3 KB). Loaded Objects now: 3033. -Memory consumption went from 100.1 MB to 100.0 MB. -Total: 6.430700 ms (FindLiveObjects: 0.194700 ms CreateObjectMapping: 0.122000 ms MarkObjects: 6.066600 ms DeleteObjects: 0.046700 ms) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3048. +Memory consumption went from 100.0 MB to 100.0 MB. +Total: 6.516000 ms (FindLiveObjects: 0.203000 ms CreateObjectMapping: 0.116500 ms MarkObjects: 6.158800 ms DeleteObjects: 0.037100 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -250,40 +638,164 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.005248 seconds. +Registered in 0.005006 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory is not a mono symbol file Native extension for WindowsStandalone target not found Native extension for iOS target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.27 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] Cannot connect to Unity Package Manager local server Mono: successfully reloaded assembly -- Completed reload, in 1.548 seconds +- Completed reload, in 1.522 seconds Domain Reload Profiling: - ReloadAssembly (1549ms) - BeginReloadAssembly (147ms) + ReloadAssembly (1523ms) + BeginReloadAssembly (138ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) + DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - EndReloadAssembly (1310ms) - LoadAssemblies (100ms) + CreateAndSetChildDomain (35ms) + EndReloadAssembly (1296ms) + LoadAssemblies (95ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (223ms) + SetupTypeCache (208ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (920ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (936ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) + InitializePlatformSupportModulesInManaged (21ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (56ms) - ProcessInitializeOnLoadAttributes (706ms) - ProcessInitializeOnLoadMethodAttributes (130ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (733ms) + ProcessInitializeOnLoadMethodAttributes (125ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.19 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3051. +Memory consumption went from 100.0 MB to 100.0 MB. +Total: 6.879000 ms (FindLiveObjects: 0.215300 ms CreateObjectMapping: 0.137500 ms MarkObjects: 6.473600 ms DeleteObjects: 0.051200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005202 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.471 seconds +Domain Reload Profiling: + ReloadAssembly (1472ms) + BeginReloadAssembly (138ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + EndReloadAssembly (1245ms) + LoadAssemblies (95ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (200ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (890ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (52ms) + ProcessInitializeOnLoadAttributes (690ms) + ProcessInitializeOnLoadMethodAttributes (123ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.05 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3054. +Memory consumption went from 100.0 MB to 100.0 MB. +Total: 6.421500 ms (FindLiveObjects: 0.197200 ms CreateObjectMapping: 0.113800 ms MarkObjects: 6.073100 ms DeleteObjects: 0.036700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005019 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.521 seconds +Domain Reload Profiling: + ReloadAssembly (1521ms) + BeginReloadAssembly (141ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + EndReloadAssembly (1288ms) + LoadAssemblies (99ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (213ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (909ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (54ms) + ProcessInitializeOnLoadAttributes (701ms) + ProcessInitializeOnLoadMethodAttributes (128ms) AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) @@ -292,9 +804,9 @@ Platform modules already initialized, skipping Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3036. +Unloading 98 unused Assets / (25.2 KB). Loaded Objects now: 3057. Memory consumption went from 100.1 MB to 100.0 MB. -Total: 6.447300 ms (FindLiveObjects: 0.214300 ms CreateObjectMapping: 0.133300 ms MarkObjects: 6.050300 ms DeleteObjects: 0.048500 ms) +Total: 6.242300 ms (FindLiveObjects: 0.215100 ms CreateObjectMapping: 0.136000 ms MarkObjects: 5.849400 ms DeleteObjects: 0.040500 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -312,40 +824,164 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.005276 seconds. +Registered in 0.005139 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory is not a mono symbol file Native extension for WindowsStandalone target not found Native extension for iOS target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.14 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] Cannot connect to Unity Package Manager local server Mono: successfully reloaded assembly -- Completed reload, in 1.521 seconds +- Completed reload, in 1.523 seconds Domain Reload Profiling: - ReloadAssembly (1522ms) - BeginReloadAssembly (143ms) + ReloadAssembly (1524ms) + BeginReloadAssembly (145ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) + CreateAndSetChildDomain (35ms) EndReloadAssembly (1287ms) - LoadAssemblies (98ms) + LoadAssemblies (100ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (217ms) + SetupTypeCache (210ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (905ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (915ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (701ms) + ProcessInitializeOnLoadMethodAttributes (127ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3060. +Memory consumption went from 100.1 MB to 100.0 MB. +Total: 6.657500 ms (FindLiveObjects: 0.220000 ms CreateObjectMapping: 0.149700 ms MarkObjects: 6.242100 ms DeleteObjects: 0.044400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005208 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.481 seconds +Domain Reload Profiling: + ReloadAssembly (1482ms) + BeginReloadAssembly (138ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + EndReloadAssembly (1256ms) + LoadAssemblies (96ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (200ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (901ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (698ms) + ProcessInitializeOnLoadMethodAttributes (125ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.05 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3063. +Memory consumption went from 100.1 MB to 100.0 MB. +Total: 6.492500 ms (FindLiveObjects: 0.207200 ms CreateObjectMapping: 0.143200 ms MarkObjects: 6.102800 ms DeleteObjects: 0.038300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005228 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.554 seconds +Domain Reload Profiling: + ReloadAssembly (1555ms) + BeginReloadAssembly (144ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + EndReloadAssembly (1318ms) + LoadAssemblies (101ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (225ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (925ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (1ms) + SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (55ms) - ProcessInitializeOnLoadAttributes (693ms) - ProcessInitializeOnLoadMethodAttributes (129ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (708ms) + ProcessInitializeOnLoadMethodAttributes (130ms) AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) @@ -354,9 +990,9 @@ Platform modules already initialized, skipping Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3039. -Memory consumption went from 100.1 MB to 100.0 MB. -Total: 7.581000 ms (FindLiveObjects: 0.207800 ms CreateObjectMapping: 0.130300 ms MarkObjects: 7.201000 ms DeleteObjects: 0.040800 ms) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3066. +Memory consumption went from 100.1 MB to 100.1 MB. +Total: 6.658800 ms (FindLiveObjects: 0.212500 ms CreateObjectMapping: 0.123800 ms MarkObjects: 6.270200 ms DeleteObjects: 0.051200 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -374,7 +1010,2029 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.005393 seconds. +Registered in 0.005045 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.471 seconds +Domain Reload Profiling: + ReloadAssembly (1471ms) + BeginReloadAssembly (136ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + EndReloadAssembly (1247ms) + LoadAssemblies (93ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (199ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (892ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (52ms) + ProcessInitializeOnLoadAttributes (691ms) + ProcessInitializeOnLoadMethodAttributes (122ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.06 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3069. +Memory consumption went from 100.1 MB to 100.1 MB. +Total: 6.519700 ms (FindLiveObjects: 0.202400 ms CreateObjectMapping: 0.111400 ms MarkObjects: 6.167300 ms DeleteObjects: 0.037800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 1345.842815 seconds. + path: Assets/ART/base/lobby/lobby + artifactKey: Guid(dbdc7b99fd32e024a8f078b75f6735fb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/base/lobby/lobby using Guid(dbdc7b99fd32e024a8f078b75f6735fb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b7c77f37366fb640edd542fcc7b33393') in 0.017754 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 1.219530 seconds. + path: Assets/ART/base/lobby/lobby/lobbyHome.prefab + artifactKey: Guid(5a943469abb94f94fa1f6fac4a63c8f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/base/lobby/lobby/lobbyHome.prefab using Guid(5a943469abb94f94fa1f6fac4a63c8f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '87470e1ef1835d5f95c3fbdf9f13d44c') in 0.051595 seconds +Number of asset objects unloaded after import = 157 +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005497 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.26 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.476 seconds +Domain Reload Profiling: + ReloadAssembly (1477ms) + BeginReloadAssembly (144ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1244ms) + LoadAssemblies (98ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (206ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (879ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (670ms) + ProcessInitializeOnLoadMethodAttributes (127ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.06 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 101 unused Assets / (27.4 KB). Loaded Objects now: 3075. +Memory consumption went from 100.2 MB to 100.2 MB. +Total: 6.451100 ms (FindLiveObjects: 0.209900 ms CreateObjectMapping: 0.123100 ms MarkObjects: 6.066500 ms DeleteObjects: 0.050500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005321 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.554 seconds +Domain Reload Profiling: + ReloadAssembly (1555ms) + BeginReloadAssembly (149ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1309ms) + LoadAssemblies (103ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (229ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (908ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (686ms) + ProcessInitializeOnLoadMethodAttributes (134ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3078. +Memory consumption went from 100.2 MB to 100.2 MB. +Total: 6.931500 ms (FindLiveObjects: 0.215700 ms CreateObjectMapping: 0.135200 ms MarkObjects: 6.528900 ms DeleteObjects: 0.050100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005339 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.518 seconds +Domain Reload Profiling: + ReloadAssembly (1519ms) + BeginReloadAssembly (147ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1269ms) + LoadAssemblies (103ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (228ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (876ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (669ms) + ProcessInitializeOnLoadMethodAttributes (126ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3081. +Memory consumption went from 100.2 MB to 100.2 MB. +Total: 6.405600 ms (FindLiveObjects: 0.208600 ms CreateObjectMapping: 0.123200 ms MarkObjects: 6.035300 ms DeleteObjects: 0.037800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 1724.454346 seconds. + path: Assets/ART/ui/texture/animation + artifactKey: Guid(9d2076bd2222bc74b9de8d6139479b2c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/animation using Guid(9d2076bd2222bc74b9de8d6139479b2c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b12f7288fdc6abe2c60f436fc813cfcd') in 0.020886 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 2.371214 seconds. + path: Assets/ART/ui/texture/animation/cardinformation.txt + artifactKey: Guid(9641dccae295aa744a2b44281a8208e8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/animation/cardinformation.txt using Guid(9641dccae295aa744a2b44281a8208e8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7563fe27e9aa8dddd35aa259a6e27a2b') in 0.057818 seconds +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 87.520924 seconds. + path: Assets/ART/ui/texture/animation/btnShow.anim + artifactKey: Guid(e5b174e4b97b7de49a2dca456c97c959) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/animation/btnShow.anim using Guid(e5b174e4b97b7de49a2dca456c97c959) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5dc21462f213e61a119e7e1b9f863d26') in 0.012899 seconds +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 10.122127 seconds. + path: Assets/ART/ui/texture/animation/btnImage.anim + artifactKey: Guid(e5b174e4b97b7de49a2dca456c97c959) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/animation/btnImage.anim using Guid(e5b174e4b97b7de49a2dca456c97c959) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a3e8ce1861177090d0932b6a1ae6f4a8') in 0.009789 seconds +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 28.176298 seconds. + path: Assets/ART/ui/texture/animation/btnImageOpen.anim + artifactKey: Guid(e5b174e4b97b7de49a2dca456c97c959) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/animation/btnImageOpen.anim using Guid(e5b174e4b97b7de49a2dca456c97c959) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8f9530feb7fa3cf9fda52d2b09bd9b78') in 0.009920 seconds +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 19.831096 seconds. + path: Assets/ART/ui/texture/animation/btnImageOpen 1.anim + artifactKey: Guid(0e69b995bd50e0f4aa9d3a610c8224ca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/animation/btnImageOpen 1.anim using Guid(0e69b995bd50e0f4aa9d3a610c8224ca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9da14195e7248c5e6be7ee647b9d9f01') in 0.009998 seconds +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 5.483606 seconds. + path: Assets/ART/ui/texture/animation/btnImageClose.anim + artifactKey: Guid(0e69b995bd50e0f4aa9d3a610c8224ca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/animation/btnImageClose.anim using Guid(0e69b995bd50e0f4aa9d3a610c8224ca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '94c1ed490c7d8474723447104225e69f') in 0.010723 seconds +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 11.622440 seconds. + path: Assets/ART/ui/texture/animation/btnImageOpen.anim + artifactKey: Guid(e5b174e4b97b7de49a2dca456c97c959) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/animation/btnImageOpen.anim using Guid(e5b174e4b97b7de49a2dca456c97c959) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '24e4107629ef5ae8a253c49724a36f96') in 0.003254 seconds +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 1.005403 seconds. + path: Assets/ART/ui/texture/animation/btnImageOpen 1.anim + artifactKey: Guid(a17d243b435f85449aa8fa1ae1154eca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/animation/btnImageOpen 1.anim using Guid(a17d243b435f85449aa8fa1ae1154eca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd46c5e2f03594265f934ac71dcf1b5eb') in 0.002425 seconds +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 4.783652 seconds. + path: Assets/ART/ui/texture/animation/btnImageStop.anim + artifactKey: Guid(a17d243b435f85449aa8fa1ae1154eca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/animation/btnImageStop.anim using Guid(a17d243b435f85449aa8fa1ae1154eca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '98944893cd1e1202e6c012c3478b4702') in 0.009635 seconds +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 7.375401 seconds. + path: Assets/ART/ui/texture/animation/btnImageStop.anim + artifactKey: Guid(a17d243b435f85449aa8fa1ae1154eca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/animation/btnImageStop.anim using Guid(a17d243b435f85449aa8fa1ae1154eca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bec89c9547fb1c0f78c7b09cbdc59682') in 0.002969 seconds +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 2.813095 seconds. + path: Assets/ART/ui/texture/animation/btnImageClose.anim + artifactKey: Guid(0e69b995bd50e0f4aa9d3a610c8224ca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/animation/btnImageClose.anim using Guid(0e69b995bd50e0f4aa9d3a610c8224ca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fd8bd25013dc39a60b4151e22fd458c3') in 0.003041 seconds +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 17.296425 seconds. + path: Assets/ART/ui/texture/animation/btnImage.controller + artifactKey: Guid(981a69e23d26fde428f70211d6babd0e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/animation/btnImage.controller using Guid(981a69e23d26fde428f70211d6babd0e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '56164089457d1e2d44c0dfcbe294abd8') in 0.005475 seconds +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 56.033901 seconds. + path: Assets/ART/ui/texture/animation/btnImage.controller + artifactKey: Guid(981a69e23d26fde428f70211d6babd0e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/animation/btnImage.controller using Guid(981a69e23d26fde428f70211d6babd0e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c63c7fb655f088f477747ba89536f50e') in 0.003820 seconds +Number of asset objects unloaded after import = 8 +======================================================================== +Received Import Request. + Time since last request: 231.713743 seconds. + path: Assets/ART/base/prefab/ViewFilter.prefab + artifactKey: Guid(395c889d500a77847af945ea7e9607f2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/base/prefab/ViewFilter.prefab using Guid(395c889d500a77847af945ea7e9607f2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c5d0b44f7ebd58d93bcecaee54e1c8fc') in 0.099902 seconds +Number of asset objects unloaded after import = 103 +======================================================================== +Received Import Request. + Time since last request: 234.031446 seconds. + path: Assets/ART/ui/texture/animation/login_btnopen.anim + artifactKey: Guid(cfec0b88445a86644a7863e0cb501157) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/animation/login_btnopen.anim using Guid(cfec0b88445a86644a7863e0cb501157) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f752de6d327f73d38a2eb74d2e2b9f87') in 0.021565 seconds +Number of asset objects unloaded after import = 1 +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005376 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.97 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.662 seconds +Domain Reload Profiling: + ReloadAssembly (1663ms) + BeginReloadAssembly (172ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + EndReloadAssembly (1395ms) + LoadAssemblies (109ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (256ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (956ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (37ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (716ms) + ProcessInitializeOnLoadMethodAttributes (138ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 101 unused Assets / (27.4 KB). Loaded Objects now: 3084. +Memory consumption went from 100.2 MB to 100.2 MB. +Total: 7.099100 ms (FindLiveObjects: 0.226700 ms CreateObjectMapping: 0.160800 ms MarkObjects: 6.646000 ms DeleteObjects: 0.064100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005252 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.15 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.532 seconds +Domain Reload Profiling: + ReloadAssembly (1533ms) + BeginReloadAssembly (151ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + EndReloadAssembly (1287ms) + LoadAssemblies (110ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (215ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (902ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (683ms) + ProcessInitializeOnLoadMethodAttributes (131ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3087. +Memory consumption went from 100.2 MB to 100.2 MB. +Total: 6.815600 ms (FindLiveObjects: 0.215200 ms CreateObjectMapping: 0.127400 ms MarkObjects: 6.427600 ms DeleteObjects: 0.044200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 1259.939387 seconds. + path: Assets/ART/base/prefab/ViewFilter.prefab + artifactKey: Guid(395c889d500a77847af945ea7e9607f2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/base/prefab/ViewFilter.prefab using Guid(395c889d500a77847af945ea7e9607f2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1e35994aa917cbd12c8441ba12d3371d') in 0.044210 seconds +Number of asset objects unloaded after import = 104 +======================================================================== +Received Import Request. + Time since last request: 13.712586 seconds. + path: Assets/ART/base/lobby/lobby/lobbyHome.prefab + artifactKey: Guid(5a943469abb94f94fa1f6fac4a63c8f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/base/lobby/lobby/lobbyHome.prefab using Guid(5a943469abb94f94fa1f6fac4a63c8f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9be151e328f160643edeec2660511bc0') in 0.010457 seconds +Number of asset objects unloaded after import = 158 +======================================================================== +Received Import Request. + Time since last request: 11.498443 seconds. + path: Assets/ART/ui/texture/animation/imageShow.controller + artifactKey: Guid(a77c42034a9b1c34d914815329be7871) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/animation/imageShow.controller using Guid(a77c42034a9b1c34d914815329be7871) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '08dae6da2c4fb40348866db288295bb9') in 0.011616 seconds +Number of asset objects unloaded after import = 4 +======================================================================== +Received Import Request. + Time since last request: 1.874704 seconds. + path: Assets/ART/ui/texture/animation/createcard_tagstop.anim + artifactKey: Guid(028a79e09dfd663469ed49c3763fe279) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/animation/createcard_tagstop.anim using Guid(028a79e09dfd663469ed49c3763fe279) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6fe0e68dfca19837a32f5a96098ace47') in 0.019840 seconds +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 74.035601 seconds. + path: Assets/ART/ui/texture/animation/main_btncircle.controller + artifactKey: Guid(3d06c6180fdee4b4f934170a2ae76e29) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/animation/main_btncircle.controller using Guid(3d06c6180fdee4b4f934170a2ae76e29) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4dbdee98ec17620abbdbba2fe64aca10') in 0.028248 seconds +Number of asset objects unloaded after import = 6 +======================================================================== +Received Import Request. + Time since last request: 0.394686 seconds. + path: Assets/ART/ui/texture/animation/createcard_tagclose.anim + artifactKey: Guid(ddb798d7e13eb74419cf7133f2a34739) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/animation/createcard_tagclose.anim using Guid(ddb798d7e13eb74419cf7133f2a34739) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '60588583041acbafbb88ac77aa30dc81') in 0.018911 seconds +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 157.207901 seconds. + path: Assets/ART/base/login/ViewLogin.prefab + artifactKey: Guid(67398339c5f969f41b81d36a55b0d29b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/base/login/ViewLogin.prefab using Guid(67398339c5f969f41b81d36a55b0d29b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c34f423776b0b71c389461f58ff2b243') in 0.196885 seconds +Number of asset objects unloaded after import = 449 +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005578 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.27 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.531 seconds +Domain Reload Profiling: + ReloadAssembly (1532ms) + BeginReloadAssembly (151ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1287ms) + LoadAssemblies (103ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (219ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (900ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (681ms) + ProcessInitializeOnLoadMethodAttributes (135ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 101 unused Assets / (27.4 KB). Loaded Objects now: 3090. +Memory consumption went from 100.3 MB to 100.3 MB. +Total: 6.556800 ms (FindLiveObjects: 0.233800 ms CreateObjectMapping: 0.132100 ms MarkObjects: 6.117000 ms DeleteObjects: 0.072500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005175 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.629 seconds +Domain Reload Profiling: + ReloadAssembly (1630ms) + BeginReloadAssembly (148ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1388ms) + LoadAssemblies (101ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (220ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (982ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (99ms) + ProcessInitializeOnLoadAttributes (719ms) + ProcessInitializeOnLoadMethodAttributes (134ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3093. +Memory consumption went from 100.3 MB to 100.3 MB. +Total: 7.500600 ms (FindLiveObjects: 0.221700 ms CreateObjectMapping: 0.136200 ms MarkObjects: 7.095800 ms DeleteObjects: 0.045600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005768 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.535 seconds +Domain Reload Profiling: + ReloadAssembly (1536ms) + BeginReloadAssembly (145ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1298ms) + LoadAssemblies (101ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (216ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (907ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (689ms) + ProcessInitializeOnLoadMethodAttributes (134ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3096. +Memory consumption went from 100.3 MB to 100.3 MB. +Total: 6.604600 ms (FindLiveObjects: 0.217200 ms CreateObjectMapping: 0.143200 ms MarkObjects: 6.202400 ms DeleteObjects: 0.040800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006168 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.543 seconds +Domain Reload Profiling: + ReloadAssembly (1544ms) + BeginReloadAssembly (147ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1303ms) + LoadAssemblies (103ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (238ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (899ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (683ms) + ProcessInitializeOnLoadMethodAttributes (132ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3099. +Memory consumption went from 100.3 MB to 100.3 MB. +Total: 8.992800 ms (FindLiveObjects: 0.216200 ms CreateObjectMapping: 0.127300 ms MarkObjects: 8.597300 ms DeleteObjects: 0.050700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005655 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.19 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.565 seconds +Domain Reload Profiling: + ReloadAssembly (1565ms) + BeginReloadAssembly (158ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1314ms) + LoadAssemblies (112ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (229ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (917ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (697ms) + ProcessInitializeOnLoadMethodAttributes (135ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3102. +Memory consumption went from 100.3 MB to 100.3 MB. +Total: 7.016500 ms (FindLiveObjects: 0.221800 ms CreateObjectMapping: 0.149200 ms MarkObjects: 6.598700 ms DeleteObjects: 0.045100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 1087.127903 seconds. + path: Assets/Scripts/Editor + artifactKey: Guid(366b9ae7fb2fd3f42a61204c03c8d57d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Scripts/Editor using Guid(366b9ae7fb2fd3f42a61204c03c8d57d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9f30e8df159e3d1eabf5013d4b7f24c9') in 0.019140 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 1.818689 seconds. + path: Assets/Scripts/Editor/CustomSettings.cs + artifactKey: Guid(d68e81cfa02de7e44a2ff558bdc3ac89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Scripts/Editor/CustomSettings.cs using Guid(d68e81cfa02de7e44a2ff558bdc3ac89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '54208a16bd6a7bf24d19af95162752dd') in 0.009984 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 35.000700 seconds. + path: Assets/Scripts/Editor/CustomSettings.cs + artifactKey: Guid(d68e81cfa02de7e44a2ff558bdc3ac89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Scripts/Editor/CustomSettings.cs using Guid(d68e81cfa02de7e44a2ff558bdc3ac89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6793df3f0b4c756bf627efa3f71e02d3') in 0.002379 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005366 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.534 seconds +Domain Reload Profiling: + ReloadAssembly (1535ms) + BeginReloadAssembly (147ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1297ms) + LoadAssemblies (100ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (215ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (923ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (698ms) + ProcessInitializeOnLoadMethodAttributes (145ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3105. +Memory consumption went from 100.3 MB to 100.3 MB. +Total: 6.411900 ms (FindLiveObjects: 0.219700 ms CreateObjectMapping: 0.154000 ms MarkObjects: 5.995700 ms DeleteObjects: 0.041700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.037276 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.522 seconds +Domain Reload Profiling: + ReloadAssembly (1522ms) + BeginReloadAssembly (146ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1285ms) + LoadAssemblies (98ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (207ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (918ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (709ms) + ProcessInitializeOnLoadMethodAttributes (130ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3110. +Memory consumption went from 100.4 MB to 100.4 MB. +Total: 7.327800 ms (FindLiveObjects: 0.218500 ms CreateObjectMapping: 0.124500 ms MarkObjects: 6.935700 ms DeleteObjects: 0.047900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005098 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.527 seconds +Domain Reload Profiling: + ReloadAssembly (1527ms) + BeginReloadAssembly (148ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1284ms) + LoadAssemblies (102ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (218ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (897ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (681ms) + ProcessInitializeOnLoadMethodAttributes (133ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3113. +Memory consumption went from 100.4 MB to 100.4 MB. +Total: 6.642300 ms (FindLiveObjects: 0.223000 ms CreateObjectMapping: 0.146300 ms MarkObjects: 6.225100 ms DeleteObjects: 0.046600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005716 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.26 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.537 seconds +Domain Reload Profiling: + ReloadAssembly (1538ms) + BeginReloadAssembly (145ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1298ms) + LoadAssemblies (101ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (222ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (907ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (685ms) + ProcessInitializeOnLoadMethodAttributes (134ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3116. +Memory consumption went from 100.4 MB to 100.4 MB. +Total: 7.851200 ms (FindLiveObjects: 0.223100 ms CreateObjectMapping: 0.134400 ms MarkObjects: 7.437400 ms DeleteObjects: 0.054600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005352 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.478 seconds +Domain Reload Profiling: + ReloadAssembly (1479ms) + BeginReloadAssembly (144ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + EndReloadAssembly (1244ms) + LoadAssemblies (98ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (202ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (883ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (675ms) + ProcessInitializeOnLoadMethodAttributes (126ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3119. +Memory consumption went from 100.4 MB to 100.4 MB. +Total: 6.489200 ms (FindLiveObjects: 0.217000 ms CreateObjectMapping: 0.130100 ms MarkObjects: 6.101600 ms DeleteObjects: 0.039500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005188 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.493 seconds +Domain Reload Profiling: + ReloadAssembly (1494ms) + BeginReloadAssembly (141ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + EndReloadAssembly (1263ms) + LoadAssemblies (98ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (206ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (898ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (691ms) + ProcessInitializeOnLoadMethodAttributes (126ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3122. +Memory consumption went from 100.4 MB to 100.4 MB. +Total: 6.595100 ms (FindLiveObjects: 0.232300 ms CreateObjectMapping: 0.150300 ms MarkObjects: 6.168600 ms DeleteObjects: 0.042900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006138 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.54 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.565 seconds +Domain Reload Profiling: + ReloadAssembly (1565ms) + BeginReloadAssembly (151ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1295ms) + LoadAssemblies (105ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (218ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (907ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (686ms) + ProcessInitializeOnLoadMethodAttributes (132ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3125. +Memory consumption went from 100.4 MB to 100.4 MB. +Total: 8.019300 ms (FindLiveObjects: 0.308400 ms CreateObjectMapping: 0.156200 ms MarkObjects: 7.505600 ms DeleteObjects: 0.047800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006048 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.20 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.554 seconds +Domain Reload Profiling: + ReloadAssembly (1555ms) + BeginReloadAssembly (149ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1310ms) + LoadAssemblies (102ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (223ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (912ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (688ms) + ProcessInitializeOnLoadMethodAttributes (134ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3128. +Memory consumption went from 100.4 MB to 100.4 MB. +Total: 7.166900 ms (FindLiveObjects: 0.228300 ms CreateObjectMapping: 0.138800 ms MarkObjects: 6.752100 ms DeleteObjects: 0.045900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.007216 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.575 seconds +Domain Reload Profiling: + ReloadAssembly (1576ms) + BeginReloadAssembly (148ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1329ms) + LoadAssemblies (107ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (223ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (924ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (705ms) + ProcessInitializeOnLoadMethodAttributes (133ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3131. +Memory consumption went from 100.4 MB to 100.4 MB. +Total: 6.924800 ms (FindLiveObjects: 0.347100 ms CreateObjectMapping: 0.138700 ms MarkObjects: 6.384200 ms DeleteObjects: 0.053300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005354 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.15 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.636 seconds +Domain Reload Profiling: + ReloadAssembly (1637ms) + BeginReloadAssembly (177ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + EndReloadAssembly (1354ms) + LoadAssemblies (123ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (268ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (906ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (688ms) + ProcessInitializeOnLoadMethodAttributes (131ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.19 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3134. +Memory consumption went from 100.5 MB to 100.4 MB. +Total: 7.138200 ms (FindLiveObjects: 0.238000 ms CreateObjectMapping: 0.151800 ms MarkObjects: 6.698700 ms DeleteObjects: 0.048000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005555 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.537 seconds +Domain Reload Profiling: + ReloadAssembly (1538ms) + BeginReloadAssembly (146ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1297ms) + LoadAssemblies (103ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (219ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (904ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (682ms) + ProcessInitializeOnLoadMethodAttributes (134ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.18 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3137. +Memory consumption went from 100.5 MB to 100.4 MB. +Total: 6.593400 ms (FindLiveObjects: 0.228900 ms CreateObjectMapping: 0.133400 ms MarkObjects: 6.099600 ms DeleteObjects: 0.130300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010099 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.16 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.553 seconds +Domain Reload Profiling: + ReloadAssembly (1554ms) + BeginReloadAssembly (145ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1312ms) + LoadAssemblies (101ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (223ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (919ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (697ms) + ProcessInitializeOnLoadMethodAttributes (135ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3140. +Memory consumption went from 100.5 MB to 100.5 MB. +Total: 6.849400 ms (FindLiveObjects: 0.228500 ms CreateObjectMapping: 0.150900 ms MarkObjects: 6.421400 ms DeleteObjects: 0.047300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005601 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.563 seconds +Domain Reload Profiling: + ReloadAssembly (1564ms) + BeginReloadAssembly (150ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1316ms) + LoadAssemblies (103ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (216ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (920ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (28ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (692ms) + ProcessInitializeOnLoadMethodAttributes (138ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3143. +Memory consumption went from 100.5 MB to 100.5 MB. +Total: 6.557700 ms (FindLiveObjects: 0.229900 ms CreateObjectMapping: 0.134600 ms MarkObjects: 6.138100 ms DeleteObjects: 0.054000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005203 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.556 seconds +Domain Reload Profiling: + ReloadAssembly (1557ms) + BeginReloadAssembly (147ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1311ms) + LoadAssemblies (103ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (220ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (913ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (689ms) + ProcessInitializeOnLoadMethodAttributes (135ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3146. +Memory consumption went from 100.5 MB to 100.5 MB. +Total: 6.848400 ms (FindLiveObjects: 0.240100 ms CreateObjectMapping: 0.194500 ms MarkObjects: 6.368400 ms DeleteObjects: 0.043900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005611 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.30 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.585 seconds +Domain Reload Profiling: + ReloadAssembly (1586ms) + BeginReloadAssembly (149ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1338ms) + LoadAssemblies (104ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (222ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (56ms) + SetupLoadedEditorAssemblies (923ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (685ms) + ProcessInitializeOnLoadMethodAttributes (143ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.91 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3149. +Memory consumption went from 100.5 MB to 100.5 MB. +Total: 6.894900 ms (FindLiveObjects: 0.239400 ms CreateObjectMapping: 0.153000 ms MarkObjects: 6.449300 ms DeleteObjects: 0.052200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005140 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.477 seconds +Domain Reload Profiling: + ReloadAssembly (1478ms) + BeginReloadAssembly (142ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1246ms) + LoadAssemblies (98ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (207ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (878ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (670ms) + ProcessInitializeOnLoadMethodAttributes (127ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.06 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3152. +Memory consumption went from 100.5 MB to 100.5 MB. +Total: 7.534500 ms (FindLiveObjects: 0.221500 ms CreateObjectMapping: 0.131100 ms MarkObjects: 7.139000 ms DeleteObjects: 0.042200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005395 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.27 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.567 seconds +Domain Reload Profiling: + ReloadAssembly (1567ms) + BeginReloadAssembly (152ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1319ms) + LoadAssemblies (106ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (227ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (921ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (29ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (696ms) + ProcessInitializeOnLoadMethodAttributes (135ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3155. +Memory consumption went from 100.5 MB to 100.5 MB. +Total: 7.454100 ms (FindLiveObjects: 0.223800 ms CreateObjectMapping: 0.122900 ms MarkObjects: 7.060400 ms DeleteObjects: 0.045800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005975 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.39 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.542 seconds +Domain Reload Profiling: + ReloadAssembly (1543ms) + BeginReloadAssembly (149ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1298ms) + LoadAssemblies (102ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (232ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (899ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (680ms) + ProcessInitializeOnLoadMethodAttributes (134ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3158. +Memory consumption went from 100.5 MB to 100.5 MB. +Total: 6.558100 ms (FindLiveObjects: 0.230100 ms CreateObjectMapping: 0.168300 ms MarkObjects: 6.093800 ms DeleteObjects: 0.064600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005330 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory is not a mono symbol file Native extension for WindowsStandalone target not found @@ -388,37 +3046,37 @@ Mono: successfully reloaded assembly - Completed reload, in 1.488 seconds Domain Reload Profiling: ReloadAssembly (1489ms) - BeginReloadAssembly (140ms) + BeginReloadAssembly (143ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) + DisableScriptedObjects (7ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (36ms) - EndReloadAssembly (1263ms) - LoadAssemblies (94ms) + EndReloadAssembly (1253ms) + LoadAssemblies (100ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (208ms) + SetupTypeCache (203ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (46ms) - SetupLoadedEditorAssemblies (891ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (888ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) + InitializePlatformSupportModulesInManaged (22ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (57ms) - ProcessInitializeOnLoadAttributes (685ms) - ProcessInitializeOnLoadMethodAttributes (123ms) - AfterProcessingInitializeOnLoad (2ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (674ms) + ProcessInitializeOnLoadMethodAttributes (130ms) + AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (7ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.05 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3042. -Memory consumption went from 100.1 MB to 100.1 MB. -Total: 6.500200 ms (FindLiveObjects: 0.198100 ms CreateObjectMapping: 0.117900 ms MarkObjects: 6.142800 ms DeleteObjects: 0.040300 ms) +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3161. +Memory consumption went from 100.5 MB to 100.5 MB. +Total: 7.560200 ms (FindLiveObjects: 0.223200 ms CreateObjectMapping: 0.127100 ms MarkObjects: 7.160700 ms DeleteObjects: 0.048200 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -436,40 +3094,164 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.005093 seconds. +Registered in 0.005563 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory is not a mono symbol file Native extension for WindowsStandalone target not found Native extension for iOS target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] Cannot connect to Unity Package Manager local server Mono: successfully reloaded assembly -- Completed reload, in 1.509 seconds +- Completed reload, in 1.542 seconds Domain Reload Profiling: - ReloadAssembly (1510ms) - BeginReloadAssembly (142ms) + ReloadAssembly (1542ms) + BeginReloadAssembly (149ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1301ms) + LoadAssemblies (104ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (223ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (907ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (686ms) + ProcessInitializeOnLoadMethodAttributes (134ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3164. +Memory consumption went from 100.6 MB to 100.5 MB. +Total: 6.597900 ms (FindLiveObjects: 0.236100 ms CreateObjectMapping: 0.140900 ms MarkObjects: 6.169700 ms DeleteObjects: 0.050300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005958 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.22 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.563 seconds +Domain Reload Profiling: + ReloadAssembly (1564ms) + BeginReloadAssembly (147ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (37ms) - EndReloadAssembly (1280ms) - LoadAssemblies (98ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1315ms) + LoadAssemblies (103ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (208ms) + SetupTypeCache (218ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (906ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (926ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) + InitializePlatformSupportModulesInManaged (26ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (55ms) - ProcessInitializeOnLoadAttributes (694ms) - ProcessInitializeOnLoadMethodAttributes (130ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (703ms) + ProcessInitializeOnLoadMethodAttributes (134ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.15 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3167. +Memory consumption went from 100.6 MB to 100.5 MB. +Total: 7.145600 ms (FindLiveObjects: 0.253600 ms CreateObjectMapping: 0.140600 ms MarkObjects: 6.708800 ms DeleteObjects: 0.041300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005171 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.20 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.556 seconds +Domain Reload Profiling: + ReloadAssembly (1557ms) + BeginReloadAssembly (151ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1312ms) + LoadAssemblies (102ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (220ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (922ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (686ms) + ProcessInitializeOnLoadMethodAttributes (145ms) AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) @@ -477,10 +3259,10 @@ Domain Reload Profiling: Platform modules already initialized, skipping Refreshing native plugins compatible for Editor in 1.28 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3045. -Memory consumption went from 100.1 MB to 100.1 MB. -Total: 6.499300 ms (FindLiveObjects: 0.221800 ms CreateObjectMapping: 0.141000 ms MarkObjects: 6.090200 ms DeleteObjects: 0.045200 ms) +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3170. +Memory consumption went from 100.6 MB to 100.5 MB. +Total: 7.716000 ms (FindLiveObjects: 0.244100 ms CreateObjectMapping: 0.140500 ms MarkObjects: 7.277000 ms DeleteObjects: 0.053000 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -498,7 +3280,7 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.005205 seconds. +Registered in 0.005509 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory is not a mono symbol file Native extension for WindowsStandalone target not found @@ -509,226 +3291,40 @@ Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] Cannot connect to Unity Package Manager local server Mono: successfully reloaded assembly -- Completed reload, in 1.521 seconds +- Completed reload, in 1.472 seconds Domain Reload Profiling: - ReloadAssembly (1521ms) - BeginReloadAssembly (142ms) + ReloadAssembly (1473ms) + BeginReloadAssembly (140ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (35ms) - EndReloadAssembly (1290ms) - LoadAssemblies (99ms) + EndReloadAssembly (1244ms) + LoadAssemblies (97ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (213ms) + SetupTypeCache (204ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (914ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (880ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) + InitializePlatformSupportModulesInManaged (21ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) BeforeProcessingInitializeOnLoad (55ms) - ProcessInitializeOnLoadAttributes (703ms) - ProcessInitializeOnLoadMethodAttributes (128ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.21 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3048. -Memory consumption went from 100.1 MB to 100.1 MB. -Total: 6.558900 ms (FindLiveObjects: 0.207100 ms CreateObjectMapping: 0.142600 ms MarkObjects: 6.164100 ms DeleteObjects: 0.043600 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005593 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.517 seconds -Domain Reload Profiling: - ReloadAssembly (1518ms) - BeginReloadAssembly (144ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (35ms) - EndReloadAssembly (1282ms) - LoadAssemblies (100ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (212ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (904ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (55ms) - ProcessInitializeOnLoadAttributes (693ms) - ProcessInitializeOnLoadMethodAttributes (128ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3051. -Memory consumption went from 100.1 MB to 100.1 MB. -Total: 6.373900 ms (FindLiveObjects: 0.211200 ms CreateObjectMapping: 0.136900 ms MarkObjects: 5.983900 ms DeleteObjects: 0.040500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005756 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.519 seconds -Domain Reload Profiling: - ReloadAssembly (1520ms) - BeginReloadAssembly (141ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (34ms) - EndReloadAssembly (1289ms) - LoadAssemblies (98ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (208ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (916ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (55ms) - ProcessInitializeOnLoadAttributes (704ms) - ProcessInitializeOnLoadMethodAttributes (130ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.15 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3054. -Memory consumption went from 100.1 MB to 100.1 MB. -Total: 6.434300 ms (FindLiveObjects: 0.211600 ms CreateObjectMapping: 0.134900 ms MarkObjects: 6.039100 ms DeleteObjects: 0.047500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005075 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.14 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.516 seconds -Domain Reload Profiling: - ReloadAssembly (1516ms) - BeginReloadAssembly (139ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (35ms) - EndReloadAssembly (1288ms) - LoadAssemblies (96ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (208ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (916ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (25ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (55ms) - ProcessInitializeOnLoadAttributes (700ms) + ProcessInitializeOnLoadAttributes (668ms) ProcessInitializeOnLoadMethodAttributes (131ms) AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (7ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.16 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3057. -Memory consumption went from 100.1 MB to 100.1 MB. -Total: 6.465300 ms (FindLiveObjects: 0.212100 ms CreateObjectMapping: 0.132400 ms MarkObjects: 6.079100 ms DeleteObjects: 0.040500 ms) +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3173. +Memory consumption went from 100.6 MB to 100.6 MB. +Total: 6.667900 ms (FindLiveObjects: 0.251700 ms CreateObjectMapping: 0.138500 ms MarkObjects: 6.237800 ms DeleteObjects: 0.039200 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -746,40 +3342,40 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.005374 seconds. +Registered in 0.006879 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory is not a mono symbol file Native extension for WindowsStandalone target not found Native extension for iOS target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] Cannot connect to Unity Package Manager local server Mono: successfully reloaded assembly -- Completed reload, in 1.574 seconds +- Completed reload, in 1.531 seconds Domain Reload Profiling: - ReloadAssembly (1575ms) - BeginReloadAssembly (141ms) + ReloadAssembly (1532ms) + BeginReloadAssembly (148ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) + DisableScriptedObjects (7ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (34ms) - EndReloadAssembly (1309ms) - LoadAssemblies (108ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1288ms) + LoadAssemblies (99ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (218ms) + SetupTypeCache (216ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (918ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (906ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (24ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (54ms) - ProcessInitializeOnLoadAttributes (707ms) - ProcessInitializeOnLoadMethodAttributes (129ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (687ms) + ProcessInitializeOnLoadMethodAttributes (131ms) AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) @@ -787,10 +3383,10 @@ Domain Reload Profiling: Platform modules already initialized, skipping Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3060. -Memory consumption went from 100.1 MB to 100.1 MB. -Total: 7.281700 ms (FindLiveObjects: 0.213700 ms CreateObjectMapping: 0.132200 ms MarkObjects: 6.888800 ms DeleteObjects: 0.045300 ms) +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3176. +Memory consumption went from 100.6 MB to 100.6 MB. +Total: 7.066600 ms (FindLiveObjects: 0.232600 ms CreateObjectMapping: 0.148900 ms MarkObjects: 6.629400 ms DeleteObjects: 0.054300 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -808,113 +3404,51 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.005779 seconds. +Registered in 0.005477 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory is not a mono symbol file Native extension for WindowsStandalone target not found Native extension for iOS target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.35 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] Cannot connect to Unity Package Manager local server Mono: successfully reloaded assembly -- Completed reload, in 1.517 seconds +- Completed reload, in 1.556 seconds Domain Reload Profiling: - ReloadAssembly (1518ms) + ReloadAssembly (1556ms) BeginReloadAssembly (146ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (37ms) - EndReloadAssembly (1280ms) - LoadAssemblies (101ms) + EndReloadAssembly (1316ms) + LoadAssemblies (102ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (210ms) + SetupTypeCache (218ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (911ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (927ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (0ms) + SetLoadedEditorAssemblies (1ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (58ms) - ProcessInitializeOnLoadAttributes (694ms) - ProcessInitializeOnLoadMethodAttributes (131ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3063. -Memory consumption went from 100.1 MB to 100.1 MB. -Total: 6.427000 ms (FindLiveObjects: 0.231200 ms CreateObjectMapping: 0.148200 ms MarkObjects: 6.002500 ms DeleteObjects: 0.044000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005190 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.567 seconds -Domain Reload Profiling: - ReloadAssembly (1568ms) - BeginReloadAssembly (147ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (35ms) - EndReloadAssembly (1323ms) - LoadAssemblies (106ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (211ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (949ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (62ms) - ProcessInitializeOnLoadAttributes (732ms) - ProcessInitializeOnLoadMethodAttributes (128ms) - AfterProcessingInitializeOnLoad (3ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (703ms) + ProcessInitializeOnLoadMethodAttributes (134ms) + AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (7ms) Platform modules already initialized, skipping Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3066. -Memory consumption went from 100.1 MB to 100.1 MB. -Total: 6.824300 ms (FindLiveObjects: 0.213700 ms CreateObjectMapping: 0.139700 ms MarkObjects: 6.424100 ms DeleteObjects: 0.045600 ms) +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3179. +Memory consumption went from 100.6 MB to 100.6 MB. +Total: 6.711400 ms (FindLiveObjects: 0.229400 ms CreateObjectMapping: 0.141300 ms MarkObjects: 6.285400 ms DeleteObjects: 0.054000 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -932,7 +3466,7 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.005312 seconds. +Registered in 0.005129 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory is not a mono symbol file Native extension for WindowsStandalone target not found @@ -943,40 +3477,40 @@ Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] Cannot connect to Unity Package Manager local server Mono: successfully reloaded assembly -- Completed reload, in 1.552 seconds +- Completed reload, in 1.473 seconds Domain Reload Profiling: - ReloadAssembly (1552ms) - BeginReloadAssembly (144ms) + ReloadAssembly (1474ms) + BeginReloadAssembly (140ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) + DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (35ms) - EndReloadAssembly (1317ms) - LoadAssemblies (100ms) + EndReloadAssembly (1245ms) + LoadAssemblies (95ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (219ms) + SetupTypeCache (204ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (45ms) - SetupLoadedEditorAssemblies (935ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (882ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (25ms) + InitializePlatformSupportModulesInManaged (22ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (60ms) - ProcessInitializeOnLoadAttributes (717ms) - ProcessInitializeOnLoadMethodAttributes (129ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (674ms) + ProcessInitializeOnLoadMethodAttributes (127ms) AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (7ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3069. -Memory consumption went from 100.1 MB to 100.1 MB. -Total: 6.733400 ms (FindLiveObjects: 0.216800 ms CreateObjectMapping: 0.131900 ms MarkObjects: 6.329900 ms DeleteObjects: 0.053400 ms) +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3182. +Memory consumption went from 100.6 MB to 100.6 MB. +Total: 6.543600 ms (FindLiveObjects: 0.222300 ms CreateObjectMapping: 0.125500 ms MarkObjects: 6.150000 ms DeleteObjects: 0.044600 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -994,51 +3528,51 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.005893 seconds. +Registered in 0.005313 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory is not a mono symbol file Native extension for WindowsStandalone target not found Native extension for iOS target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.60 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] Cannot connect to Unity Package Manager local server Mono: successfully reloaded assembly -- Completed reload, in 1.529 seconds +- Completed reload, in 1.548 seconds Domain Reload Profiling: - ReloadAssembly (1530ms) - BeginReloadAssembly (143ms) + ReloadAssembly (1549ms) + BeginReloadAssembly (146ms) ExecutionOrderSort (0ms) DisableScriptedObjects (7ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (35ms) - EndReloadAssembly (1297ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1307ms) LoadAssemblies (100ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (216ms) + SetupTypeCache (218ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (921ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (918ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) + InitializePlatformSupportModulesInManaged (24ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (2ms) - BeforeProcessingInitializeOnLoad (54ms) - ProcessInitializeOnLoadAttributes (705ms) - ProcessInitializeOnLoadMethodAttributes (135ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (690ms) + ProcessInitializeOnLoadMethodAttributes (137ms) AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) + AwakeInstancesAfterBackupRestoration (8ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.06 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3072. -Memory consumption went from 100.2 MB to 100.1 MB. -Total: 6.648700 ms (FindLiveObjects: 0.215200 ms CreateObjectMapping: 0.147200 ms MarkObjects: 6.236500 ms DeleteObjects: 0.048400 ms) +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3185. +Memory consumption went from 100.6 MB to 100.6 MB. +Total: 6.561100 ms (FindLiveObjects: 0.234700 ms CreateObjectMapping: 0.139400 ms MarkObjects: 6.135600 ms DeleteObjects: 0.050500 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -1056,113 +3590,51 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.005380 seconds. +Registered in 0.010629 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory is not a mono symbol file Native extension for WindowsStandalone target not found Native extension for iOS target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.59 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] Cannot connect to Unity Package Manager local server Mono: successfully reloaded assembly -- Completed reload, in 1.506 seconds +- Completed reload, in 1.562 seconds Domain Reload Profiling: - ReloadAssembly (1507ms) - BeginReloadAssembly (139ms) + ReloadAssembly (1563ms) + BeginReloadAssembly (146ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (33ms) - EndReloadAssembly (1279ms) - LoadAssemblies (98ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1321ms) + LoadAssemblies (102ms) RebuildTransferFunctionScriptingTraits (0ms) SetupTypeCache (213ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (905ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (2ms) - BeforeProcessingInitializeOnLoad (55ms) - ProcessInitializeOnLoadAttributes (696ms) - ProcessInitializeOnLoadMethodAttributes (127ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3075. -Memory consumption went from 100.2 MB to 100.1 MB. -Total: 7.238500 ms (FindLiveObjects: 0.213800 ms CreateObjectMapping: 0.129400 ms MarkObjects: 6.848500 ms DeleteObjects: 0.045400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005317 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.520 seconds -Domain Reload Profiling: - ReloadAssembly (1521ms) - BeginReloadAssembly (142ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (34ms) - EndReloadAssembly (1291ms) - LoadAssemblies (100ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (211ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (920ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (936ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (23ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (56ms) - ProcessInitializeOnLoadAttributes (707ms) - ProcessInitializeOnLoadMethodAttributes (130ms) - AfterProcessingInitializeOnLoad (2ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (702ms) + ProcessInitializeOnLoadMethodAttributes (144ms) + AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (7ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.14 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3078. -Memory consumption went from 100.2 MB to 100.1 MB. -Total: 7.122800 ms (FindLiveObjects: 0.232200 ms CreateObjectMapping: 0.164400 ms MarkObjects: 6.682400 ms DeleteObjects: 0.042900 ms) +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3188. +Memory consumption went from 100.6 MB to 100.6 MB. +Total: 7.198000 ms (FindLiveObjects: 0.229000 ms CreateObjectMapping: 0.129800 ms MarkObjects: 6.783200 ms DeleteObjects: 0.054600 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -1180,39 +3652,225 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.005183 seconds. +Registered in 0.005303 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory is not a mono symbol file Native extension for WindowsStandalone target not found Native extension for iOS target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] Cannot connect to Unity Package Manager local server Mono: successfully reloaded assembly -- Completed reload, in 1.543 seconds +- Completed reload, in 1.541 seconds Domain Reload Profiling: - ReloadAssembly (1543ms) - BeginReloadAssembly (147ms) + ReloadAssembly (1542ms) + BeginReloadAssembly (154ms) ExecutionOrderSort (0ms) DisableScriptedObjects (7ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (37ms) - EndReloadAssembly (1308ms) - LoadAssemblies (101ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (1294ms) + LoadAssemblies (103ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (211ms) + SetupTypeCache (220ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (47ms) - SetupLoadedEditorAssemblies (924ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (906ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) + InitializePlatformSupportModulesInManaged (23ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (56ms) - ProcessInitializeOnLoadAttributes (711ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (686ms) + ProcessInitializeOnLoadMethodAttributes (133ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3191. +Memory consumption went from 100.6 MB to 100.6 MB. +Total: 7.845700 ms (FindLiveObjects: 0.239200 ms CreateObjectMapping: 0.164200 ms MarkObjects: 7.388000 ms DeleteObjects: 0.053000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005362 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.29 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.536 seconds +Domain Reload Profiling: + ReloadAssembly (1537ms) + BeginReloadAssembly (150ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1293ms) + LoadAssemblies (106ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (220ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (905ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (683ms) + ProcessInitializeOnLoadMethodAttributes (133ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3194. +Memory consumption went from 100.6 MB to 100.6 MB. +Total: 6.417900 ms (FindLiveObjects: 0.234700 ms CreateObjectMapping: 0.161000 ms MarkObjects: 5.965400 ms DeleteObjects: 0.055200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005852 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.528 seconds +Domain Reload Profiling: + ReloadAssembly (1529ms) + BeginReloadAssembly (148ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1285ms) + LoadAssemblies (103ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (217ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (899ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (681ms) + ProcessInitializeOnLoadMethodAttributes (131ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3197. +Memory consumption went from 100.7 MB to 100.6 MB. +Total: 6.503300 ms (FindLiveObjects: 0.240400 ms CreateObjectMapping: 0.146800 ms MarkObjects: 6.068200 ms DeleteObjects: 0.046500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005505 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.26 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.541 seconds +Domain Reload Profiling: + ReloadAssembly (1542ms) + BeginReloadAssembly (151ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1294ms) + LoadAssemblies (101ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (219ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (906ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (686ms) ProcessInitializeOnLoadMethodAttributes (131ms) AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) @@ -1221,10 +3879,1312 @@ Domain Reload Profiling: Platform modules already initialized, skipping Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3081. -Memory consumption went from 100.2 MB to 100.2 MB. -Total: 6.432900 ms (FindLiveObjects: 0.219500 ms CreateObjectMapping: 0.136500 ms MarkObjects: 6.039400 ms DeleteObjects: 0.036600 ms) +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3200. +Memory consumption went from 100.7 MB to 100.6 MB. +Total: 6.724400 ms (FindLiveObjects: 0.232200 ms CreateObjectMapping: 0.155300 ms MarkObjects: 6.285200 ms DeleteObjects: 0.050500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005860 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.19 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.560 seconds +Domain Reload Profiling: + ReloadAssembly (1561ms) + BeginReloadAssembly (146ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1319ms) + LoadAssemblies (100ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (234ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (914ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (688ms) + ProcessInitializeOnLoadMethodAttributes (134ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3203. +Memory consumption went from 100.7 MB to 100.7 MB. +Total: 6.852200 ms (FindLiveObjects: 0.232300 ms CreateObjectMapping: 0.135100 ms MarkObjects: 6.443400 ms DeleteObjects: 0.040700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005166 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.559 seconds +Domain Reload Profiling: + ReloadAssembly (1560ms) + BeginReloadAssembly (145ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1320ms) + LoadAssemblies (102ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (222ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (928ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (705ms) + ProcessInitializeOnLoadMethodAttributes (133ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.15 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3206. +Memory consumption went from 100.7 MB to 100.7 MB. +Total: 7.448100 ms (FindLiveObjects: 0.232400 ms CreateObjectMapping: 0.152500 ms MarkObjects: 7.014700 ms DeleteObjects: 0.047200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005193 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.537 seconds +Domain Reload Profiling: + ReloadAssembly (1538ms) + BeginReloadAssembly (145ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1298ms) + LoadAssemblies (102ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (215ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (911ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (687ms) + ProcessInitializeOnLoadMethodAttributes (134ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3209. +Memory consumption went from 100.7 MB to 100.7 MB. +Total: 6.686700 ms (FindLiveObjects: 0.231900 ms CreateObjectMapping: 0.132400 ms MarkObjects: 6.267800 ms DeleteObjects: 0.053400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006953 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.20 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.596 seconds +Domain Reload Profiling: + ReloadAssembly (1597ms) + BeginReloadAssembly (148ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1354ms) + LoadAssemblies (102ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (220ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (75ms) + SetupLoadedEditorAssemblies (926ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (692ms) + ProcessInitializeOnLoadMethodAttributes (138ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3212. +Memory consumption went from 100.7 MB to 100.7 MB. +Total: 7.596300 ms (FindLiveObjects: 0.235700 ms CreateObjectMapping: 0.139000 ms MarkObjects: 7.167700 ms DeleteObjects: 0.052700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.007810 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.582 seconds +Domain Reload Profiling: + ReloadAssembly (1582ms) + BeginReloadAssembly (187ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1300ms) + LoadAssemblies (141ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (214ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (52ms) + SetupLoadedEditorAssemblies (908ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (688ms) + ProcessInitializeOnLoadMethodAttributes (133ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3215. +Memory consumption went from 100.7 MB to 100.7 MB. +Total: 6.837000 ms (FindLiveObjects: 0.257000 ms CreateObjectMapping: 0.156800 ms MarkObjects: 6.371600 ms DeleteObjects: 0.050300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006614 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.638 seconds +Domain Reload Profiling: + ReloadAssembly (1639ms) + BeginReloadAssembly (146ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1396ms) + LoadAssemblies (102ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (240ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (107ms) + SetupLoadedEditorAssemblies (908ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (690ms) + ProcessInitializeOnLoadMethodAttributes (132ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3218. +Memory consumption went from 100.7 MB to 100.7 MB. +Total: 6.300300 ms (FindLiveObjects: 0.231900 ms CreateObjectMapping: 0.135500 ms MarkObjects: 5.888500 ms DeleteObjects: 0.043500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005349 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.540 seconds +Domain Reload Profiling: + ReloadAssembly (1541ms) + BeginReloadAssembly (149ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1298ms) + LoadAssemblies (104ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (216ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (907ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (686ms) + ProcessInitializeOnLoadMethodAttributes (131ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3221. +Memory consumption went from 100.7 MB to 100.7 MB. +Total: 7.224900 ms (FindLiveObjects: 0.234600 ms CreateObjectMapping: 0.140900 ms MarkObjects: 6.794700 ms DeleteObjects: 0.053600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006431 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.16 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.537 seconds +Domain Reload Profiling: + ReloadAssembly (1538ms) + BeginReloadAssembly (144ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + EndReloadAssembly (1298ms) + LoadAssemblies (101ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (216ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (914ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (692ms) + ProcessInitializeOnLoadMethodAttributes (134ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3224. +Memory consumption went from 100.7 MB to 100.7 MB. +Total: 7.043700 ms (FindLiveObjects: 0.236000 ms CreateObjectMapping: 0.145700 ms MarkObjects: 6.606600 ms DeleteObjects: 0.053800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005149 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.14 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.528 seconds +Domain Reload Profiling: + ReloadAssembly (1529ms) + BeginReloadAssembly (143ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1290ms) + LoadAssemblies (99ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (217ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (906ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (685ms) + ProcessInitializeOnLoadMethodAttributes (133ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3227. +Memory consumption went from 100.7 MB to 100.7 MB. +Total: 6.716500 ms (FindLiveObjects: 0.242500 ms CreateObjectMapping: 0.148500 ms MarkObjects: 6.253000 ms DeleteObjects: 0.071500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005000 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.486 seconds +Domain Reload Profiling: + ReloadAssembly (1487ms) + BeginReloadAssembly (143ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1255ms) + LoadAssemblies (99ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (206ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (887ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (54ms) + ProcessInitializeOnLoadAttributes (680ms) + ProcessInitializeOnLoadMethodAttributes (127ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3230. +Memory consumption went from 100.8 MB to 100.7 MB. +Total: 6.399700 ms (FindLiveObjects: 0.231400 ms CreateObjectMapping: 0.132700 ms MarkObjects: 5.993900 ms DeleteObjects: 0.040700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005340 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.540 seconds +Domain Reload Profiling: + ReloadAssembly (1541ms) + BeginReloadAssembly (146ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1302ms) + LoadAssemblies (102ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (218ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (916ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (698ms) + ProcessInitializeOnLoadMethodAttributes (134ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3233. +Memory consumption went from 100.8 MB to 100.7 MB. +Total: 7.497700 ms (FindLiveObjects: 0.237400 ms CreateObjectMapping: 0.136400 ms MarkObjects: 7.076100 ms DeleteObjects: 0.046800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005282 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.19 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.476 seconds +Domain Reload Profiling: + ReloadAssembly (1477ms) + BeginReloadAssembly (142ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1246ms) + LoadAssemblies (97ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (202ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (886ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (674ms) + ProcessInitializeOnLoadMethodAttributes (128ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3236. +Memory consumption went from 100.8 MB to 100.7 MB. +Total: 7.917000 ms (FindLiveObjects: 0.238600 ms CreateObjectMapping: 0.145000 ms MarkObjects: 7.485000 ms DeleteObjects: 0.047300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005685 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.546 seconds +Domain Reload Profiling: + ReloadAssembly (1547ms) + BeginReloadAssembly (154ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (1296ms) + LoadAssemblies (105ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (218ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (907ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (689ms) + ProcessInitializeOnLoadMethodAttributes (132ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3239. +Memory consumption went from 100.8 MB to 100.8 MB. +Total: 6.665000 ms (FindLiveObjects: 0.254700 ms CreateObjectMapping: 0.159800 ms MarkObjects: 6.199100 ms DeleteObjects: 0.049800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005602 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.21 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.563 seconds +Domain Reload Profiling: + ReloadAssembly (1564ms) + BeginReloadAssembly (149ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1314ms) + LoadAssemblies (103ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (217ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (928ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (42ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (687ms) + ProcessInitializeOnLoadMethodAttributes (133ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3242. +Memory consumption went from 100.8 MB to 100.8 MB. +Total: 6.956700 ms (FindLiveObjects: 0.246200 ms CreateObjectMapping: 0.169700 ms MarkObjects: 6.484200 ms DeleteObjects: 0.055200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005385 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.23 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.535 seconds +Domain Reload Profiling: + ReloadAssembly (1536ms) + BeginReloadAssembly (148ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + EndReloadAssembly (1288ms) + LoadAssemblies (104ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (217ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (902ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (682ms) + ProcessInitializeOnLoadMethodAttributes (133ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.14 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3245. +Memory consumption went from 100.8 MB to 100.8 MB. +Total: 6.579800 ms (FindLiveObjects: 0.231500 ms CreateObjectMapping: 0.124700 ms MarkObjects: 6.172000 ms DeleteObjects: 0.050500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005359 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.479 seconds +Domain Reload Profiling: + ReloadAssembly (1480ms) + BeginReloadAssembly (138ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + EndReloadAssembly (1252ms) + LoadAssemblies (95ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (207ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (884ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (671ms) + ProcessInitializeOnLoadMethodAttributes (131ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.19 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.2 KB). Loaded Objects now: 3248. +Memory consumption went from 100.8 MB to 100.8 MB. +Total: 6.517000 ms (FindLiveObjects: 0.229400 ms CreateObjectMapping: 0.134400 ms MarkObjects: 6.107200 ms DeleteObjects: 0.045200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005296 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.555 seconds +Domain Reload Profiling: + ReloadAssembly (1557ms) + BeginReloadAssembly (146ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1316ms) + LoadAssemblies (101ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (220ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (926ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (706ms) + ProcessInitializeOnLoadMethodAttributes (134ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.2 KB). Loaded Objects now: 3251. +Memory consumption went from 100.8 MB to 100.8 MB. +Total: 7.153900 ms (FindLiveObjects: 0.270000 ms CreateObjectMapping: 0.149500 ms MarkObjects: 6.680000 ms DeleteObjects: 0.052900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005673 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.560 seconds +Domain Reload Profiling: + ReloadAssembly (1561ms) + BeginReloadAssembly (150ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1311ms) + LoadAssemblies (104ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (218ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (906ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (686ms) + ProcessInitializeOnLoadMethodAttributes (132ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3254. +Memory consumption went from 100.8 MB to 100.8 MB. +Total: 7.556500 ms (FindLiveObjects: 0.237100 ms CreateObjectMapping: 0.135000 ms MarkObjects: 7.137900 ms DeleteObjects: 0.045300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005234 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.495 seconds +Domain Reload Profiling: + ReloadAssembly (1496ms) + BeginReloadAssembly (140ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + EndReloadAssembly (1266ms) + LoadAssemblies (97ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (206ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (898ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (689ms) + ProcessInitializeOnLoadMethodAttributes (128ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3257. +Memory consumption went from 100.8 MB to 100.8 MB. +Total: 6.959000 ms (FindLiveObjects: 0.236700 ms CreateObjectMapping: 0.134000 ms MarkObjects: 6.535500 ms DeleteObjects: 0.051700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005254 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.531 seconds +Domain Reload Profiling: + ReloadAssembly (1532ms) + BeginReloadAssembly (146ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1292ms) + LoadAssemblies (100ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (217ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (907ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (686ms) + ProcessInitializeOnLoadMethodAttributes (135ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.2 KB). Loaded Objects now: 3260. +Memory consumption went from 100.8 MB to 100.8 MB. +Total: 6.667100 ms (FindLiveObjects: 0.239300 ms CreateObjectMapping: 0.148100 ms MarkObjects: 6.226800 ms DeleteObjects: 0.052300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005233 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 2.24 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.561 seconds +Domain Reload Profiling: + ReloadAssembly (1562ms) + BeginReloadAssembly (145ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1322ms) + LoadAssemblies (99ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (223ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (926ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (40ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (684ms) + ProcessInitializeOnLoadMethodAttributes (134ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.14 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3263. +Memory consumption went from 100.9 MB to 100.8 MB. +Total: 7.051600 ms (FindLiveObjects: 0.254100 ms CreateObjectMapping: 0.153500 ms MarkObjects: 6.586500 ms DeleteObjects: 0.055700 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> diff --git a/wb_unity_pro/Logs/AssetImportWorker0.log b/wb_unity_pro/Logs/AssetImportWorker0.log index 0d5c029..5ef7bec 100644 --- a/wb_unity_pro/Logs/AssetImportWorker0.log +++ b/wb_unity_pro/Logs/AssetImportWorker0.log @@ -15,7 +15,7 @@ D:/UnityProject/dezhou/dezhou_client/wb_unity_pro -logFile Logs/AssetImportWorker0.log -srvPort -64742 +63401 Successfully changed project path to: D:/UnityProject/dezhou/dezhou_client/wb_unity_pro D:/UnityProject/dezhou/dezhou_client/wb_unity_pro [UnityMemory] Configuration Parameters - Can be set up in boot.config @@ -47,13 +47,13 @@ D:/UnityProject/dezhou/dezhou_client/wb_unity_pro "memorysetup-temp-allocator-size-cloud-worker=32768" "memorysetup-temp-allocator-size-gi-baking-worker=262144" "memorysetup-temp-allocator-size-gfx=262144" -Player connection [12812] Host "[IP] 192.168.0.6 [Port] 0 [Flags] 2 [Guid] 4204833285 [EditorId] 4204833285 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-7R8JEQQ) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... +Player connection [38440] Host "[IP] 192.168.0.6 [Port] 0 [Flags] 2 [Guid] 3500526399 [EditorId] 3500526399 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-7R8JEQQ) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... -Player connection [12812] Host "[IP] 192.168.0.6 [Port] 0 [Flags] 2 [Guid] 4204833285 [EditorId] 4204833285 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-7R8JEQQ) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... +Player connection [38440] Host "[IP] 192.168.0.6 [Port] 0 [Flags] 2 [Guid] 3500526399 [EditorId] 3500526399 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-7R8JEQQ) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... AS: AutoStreaming module initializing. [Physics::Module] Initialized MultithreadedJobDispatcher with {0} workers. -Refreshing native plugins compatible for Editor in 60.53 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 67.98 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2021.3.45f2c1 (8058fe21db2f) [Subsystems] Discovering subsystems at path D:/Program Files/Editor/2021.3.45f2c1/Editor/Data/Resources/UnitySubsystems @@ -69,304 +69,52 @@ Initialize mono Mono path[0] = 'D:/Program Files/Editor/2021.3.45f2c1/Editor/Data/Managed' Mono path[1] = 'D:/Program Files/Editor/2021.3.45f2c1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' Mono config path = 'D:/Program Files/Editor/2021.3.45f2c1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56060 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56388 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... Register platform support module: D:/Program Files/Editor/2021.3.45f2c1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll Register platform support module: D:/Program Files/Editor/2021.3.45f2c1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll Register platform support module: D:/Program Files/Editor/2021.3.45f2c1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.002733 seconds. +Registered in 0.002893 seconds. Native extension for WindowsStandalone target not found [usbmuxd] Start listen thread [usbmuxd] Listen thread started Native extension for iOS target not found Native extension for Android target not found -Android Extension - Scanning For ADB Devices 228 ms -Refreshing native plugins compatible for Editor in 47.42 ms, found 3 plugins. +Android Extension - Scanning For ADB Devices 428 ms +Refreshing native plugins compatible for Editor in 50.36 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.859 seconds +- Completed reload, in 1.573 seconds Domain Reload Profiling: - ReloadAssembly (859ms) - BeginReloadAssembly (90ms) + ReloadAssembly (1574ms) + BeginReloadAssembly (100ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (1ms) - EndReloadAssembly (681ms) - LoadAssemblies (90ms) + EndReloadAssembly (1200ms) + LoadAssemblies (99ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (113ms) + SetupTypeCache (347ms) ReleaseScriptCaches (0ms) - RebuildScriptCaches (29ms) - SetupLoadedEditorAssemblies (499ms) + RebuildScriptCaches (32ms) + SetupLoadedEditorAssemblies (779ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (304ms) + InitializePlatformSupportModulesInManaged (562ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (47ms) - BeforeProcessingInitializeOnLoad (1ms) - ProcessInitializeOnLoadAttributes (101ms) - ProcessInitializeOnLoadMethodAttributes (46ms) + RefreshPlugins (50ms) + BeforeProcessingInitializeOnLoad (2ms) + ProcessInitializeOnLoadAttributes (108ms) + ProcessInitializeOnLoadMethodAttributes (56ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (0ms) Platform modules already initialized, skipping Registering precompiled user dll's ... -Registered in 0.005465 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Package Manager log level set to [2] -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.531 seconds -Domain Reload Profiling: - ReloadAssembly (1532ms) - BeginReloadAssembly (125ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (20ms) - EndReloadAssembly (1321ms) - LoadAssemblies (94ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (208ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (53ms) - SetupLoadedEditorAssemblies (947ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (61ms) - ProcessInitializeOnLoadAttributes (718ms) - ProcessInitializeOnLoadMethodAttributes (143ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -======================================================================== -Worker process is ready to serve import requests -Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds -Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2636 Unused Serialized files (Serialized files now loaded: 0) -Unloading 107 unused Assets / (49.5 KB). Loaded Objects now: 3027. -Memory consumption went from 100.5 MB to 100.5 MB. -Total: 7.058200 ms (FindLiveObjects: 0.224200 ms CreateObjectMapping: 0.192200 ms MarkObjects: 6.548500 ms DeleteObjects: 0.091800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005111 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.05 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.500 seconds -Domain Reload Profiling: - ReloadAssembly (1501ms) - BeginReloadAssembly (141ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - EndReloadAssembly (1273ms) - LoadAssemblies (94ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (198ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (923ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (55ms) - ProcessInitializeOnLoadAttributes (709ms) - ProcessInitializeOnLoadMethodAttributes (133ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3030. -Memory consumption went from 99.9 MB to 99.8 MB. -Total: 6.494700 ms (FindLiveObjects: 0.292600 ms CreateObjectMapping: 0.173100 ms MarkObjects: 5.984600 ms DeleteObjects: 0.043000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005737 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.547 seconds -Domain Reload Profiling: - ReloadAssembly (1548ms) - BeginReloadAssembly (145ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (37ms) - EndReloadAssembly (1313ms) - LoadAssemblies (100ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (214ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (930ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (59ms) - ProcessInitializeOnLoadAttributes (712ms) - ProcessInitializeOnLoadMethodAttributes (131ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3033. -Memory consumption went from 99.9 MB to 99.9 MB. -Total: 7.148700 ms (FindLiveObjects: 0.209700 ms CreateObjectMapping: 0.126100 ms MarkObjects: 6.765900 ms DeleteObjects: 0.046100 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005012 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.525 seconds -Domain Reload Profiling: - ReloadAssembly (1526ms) - BeginReloadAssembly (146ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - EndReloadAssembly (1288ms) - LoadAssemblies (98ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (215ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (45ms) - SetupLoadedEditorAssemblies (909ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (59ms) - ProcessInitializeOnLoadAttributes (695ms) - ProcessInitializeOnLoadMethodAttributes (128ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3036. -Memory consumption went from 99.9 MB to 99.9 MB. -Total: 6.969300 ms (FindLiveObjects: 0.210200 ms CreateObjectMapping: 0.129800 ms MarkObjects: 6.582900 ms DeleteObjects: 0.044900 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005054 seconds. +Registered in 0.005529 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory is not a mono symbol file Native extension for WindowsStandalone target not found @@ -374,43 +122,47 @@ Native extension for iOS target not found Native extension for Android target not found Refreshing native plugins compatible for Editor in 1.20 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. +Package Manager log level set to [2] [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] Cannot connect to Unity Package Manager local server Mono: successfully reloaded assembly -- Completed reload, in 1.593 seconds +- Completed reload, in 1.711 seconds Domain Reload Profiling: - ReloadAssembly (1594ms) - BeginReloadAssembly (166ms) + ReloadAssembly (1712ms) + BeginReloadAssembly (126ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) + DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (44ms) - EndReloadAssembly (1334ms) - LoadAssemblies (110ms) + CreateAndSetChildDomain (20ms) + EndReloadAssembly (1498ms) + LoadAssemblies (95ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (219ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (47ms) - SetupLoadedEditorAssemblies (941ms) + SetupTypeCache (208ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (54ms) + SetupLoadedEditorAssemblies (1119ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) + InitializePlatformSupportModulesInManaged (23ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (58ms) - ProcessInitializeOnLoadAttributes (719ms) - ProcessInitializeOnLoadMethodAttributes (136ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (882ms) + ProcessInitializeOnLoadMethodAttributes (143ms) AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (7ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins. +======================================================================== +Worker process is ready to serve import requests +Launched and connected shader compiler UnityShaderCompiler.exe after 0.13 seconds +Refreshing native plugins compatible for Editor in 1.02 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3039. -Memory consumption went from 99.9 MB to 99.9 MB. -Total: 6.162700 ms (FindLiveObjects: 0.205400 ms CreateObjectMapping: 0.133200 ms MarkObjects: 5.785500 ms DeleteObjects: 0.037600 ms) +Unloading 2638 Unused Serialized files (Serialized files now loaded: 0) +Unloading 107 unused Assets / (49.5 KB). Loaded Objects now: 3029. +Memory consumption went from 100.6 MB to 100.6 MB. +Total: 6.908400 ms (FindLiveObjects: 0.222000 ms CreateObjectMapping: 0.134000 ms MarkObjects: 6.444800 ms DeleteObjects: 0.106700 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -428,223 +180,13 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.005184 seconds. +Registered in 0.005481 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory is not a mono symbol file Native extension for WindowsStandalone target not found Native extension for iOS target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.06 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.472 seconds -Domain Reload Profiling: - ReloadAssembly (1472ms) - BeginReloadAssembly (136ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (35ms) - EndReloadAssembly (1250ms) - LoadAssemblies (94ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (202ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (892ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (53ms) - ProcessInitializeOnLoadAttributes (692ms) - ProcessInitializeOnLoadMethodAttributes (122ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.05 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3042. -Memory consumption went from 99.9 MB to 99.9 MB. -Total: 7.589900 ms (FindLiveObjects: 0.201300 ms CreateObjectMapping: 0.112900 ms MarkObjects: 7.237800 ms DeleteObjects: 0.037200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005104 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.452 seconds -Domain Reload Profiling: - ReloadAssembly (1452ms) - BeginReloadAssembly (138ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (34ms) - EndReloadAssembly (1229ms) - LoadAssemblies (95ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (200ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (876ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (53ms) - ProcessInitializeOnLoadAttributes (677ms) - ProcessInitializeOnLoadMethodAttributes (120ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.05 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3045. -Memory consumption went from 100.0 MB to 100.0 MB. -Total: 6.313400 ms (FindLiveObjects: 0.201100 ms CreateObjectMapping: 0.108700 ms MarkObjects: 5.968700 ms DeleteObjects: 0.034000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 74055.328843 seconds. - path: Assets/Scripts/Core - artifactKey: Guid(951f8ae4a35e6124daa36e10acb6954f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/Scripts/Core using Guid(951f8ae4a35e6124daa36e10acb6954f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ef88a7aff232d5c9278c2b69fe17a3ea') in 0.020727 seconds -Number of asset objects unloaded after import = 0 -======================================================================== -Received Import Request. - Time since last request: 1.025634 seconds. - path: Assets/Scripts/Core/LuaUIHelper.cs - artifactKey: Guid(9c51290b0e141d544b5b2da1ef2845c3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/Scripts/Core/LuaUIHelper.cs using Guid(9c51290b0e141d544b5b2da1ef2845c3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f37b67522cd08883573585857931b29c') in 0.047497 seconds -Number of asset objects unloaded after import = 0 -======================================================================== -Received Import Request. - Time since last request: 104.027789 seconds. - path: Assets/Scripts/Core/LuaUIHelper.cs - artifactKey: Guid(9c51290b0e141d544b5b2da1ef2845c3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/Scripts/Core/LuaUIHelper.cs using Guid(9c51290b0e141d544b5b2da1ef2845c3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '27473e30d02878e7b4a29568317490e4') in 0.002068 seconds -Number of asset objects unloaded after import = 0 -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005182 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.06 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.476 seconds -Domain Reload Profiling: - ReloadAssembly (1477ms) - BeginReloadAssembly (141ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (37ms) - EndReloadAssembly (1249ms) - LoadAssemblies (95ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (204ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (894ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (51ms) - ProcessInitializeOnLoadAttributes (695ms) - ProcessInitializeOnLoadMethodAttributes (122ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.19 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3048. -Memory consumption went from 100.0 MB to 100.0 MB. -Total: 6.516000 ms (FindLiveObjects: 0.203000 ms CreateObjectMapping: 0.116500 ms MarkObjects: 6.158800 ms DeleteObjects: 0.037100 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005006 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.27 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] Cannot connect to Unity Package Manager local server @@ -652,37 +194,37 @@ Mono: successfully reloaded assembly - Completed reload, in 1.522 seconds Domain Reload Profiling: ReloadAssembly (1523ms) - BeginReloadAssembly (138ms) + BeginReloadAssembly (141ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (35ms) - EndReloadAssembly (1296ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1291ms) LoadAssemblies (95ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (208ms) + SetupTypeCache (221ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (936ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (908ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) + InitializePlatformSupportModulesInManaged (23ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (53ms) - ProcessInitializeOnLoadAttributes (733ms) - ProcessInitializeOnLoadMethodAttributes (125ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (691ms) + ProcessInitializeOnLoadMethodAttributes (133ms) AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (7ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.19 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3051. -Memory consumption went from 100.0 MB to 100.0 MB. -Total: 6.879000 ms (FindLiveObjects: 0.215300 ms CreateObjectMapping: 0.137500 ms MarkObjects: 6.473600 ms DeleteObjects: 0.051200 ms) +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3032. +Memory consumption went from 99.9 MB to 99.9 MB. +Total: 6.874800 ms (FindLiveObjects: 0.200400 ms CreateObjectMapping: 0.102500 ms MarkObjects: 6.531400 ms DeleteObjects: 0.039500 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -700,40 +242,102 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.005202 seconds. +Registered in 0.005910 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory is not a mono symbol file Native extension for WindowsStandalone target not found Native extension for iOS target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.15 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] Cannot connect to Unity Package Manager local server Mono: successfully reloaded assembly -- Completed reload, in 1.471 seconds +- Completed reload, in 1.586 seconds Domain Reload Profiling: - ReloadAssembly (1472ms) - BeginReloadAssembly (138ms) + ReloadAssembly (1587ms) + BeginReloadAssembly (151ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1341ms) + LoadAssemblies (105ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (241ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (931ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (706ms) + ProcessInitializeOnLoadMethodAttributes (140ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.18 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3035. +Memory consumption went from 100.0 MB to 99.9 MB. +Total: 7.455500 ms (FindLiveObjects: 0.211400 ms CreateObjectMapping: 0.141900 ms MarkObjects: 7.048100 ms DeleteObjects: 0.052700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005269 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.19 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.530 seconds +Domain Reload Profiling: + ReloadAssembly (1531ms) + BeginReloadAssembly (142ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (34ms) - EndReloadAssembly (1245ms) - LoadAssemblies (95ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1298ms) + LoadAssemblies (99ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (200ms) + SetupTypeCache (222ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (890ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (905ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) + InitializePlatformSupportModulesInManaged (25ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (52ms) - ProcessInitializeOnLoadAttributes (690ms) - ProcessInitializeOnLoadMethodAttributes (123ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (692ms) + ProcessInitializeOnLoadMethodAttributes (128ms) AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) @@ -741,10 +345,10 @@ Domain Reload Profiling: Platform modules already initialized, skipping Refreshing native plugins compatible for Editor in 1.05 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3054. -Memory consumption went from 100.0 MB to 100.0 MB. -Total: 6.421500 ms (FindLiveObjects: 0.197200 ms CreateObjectMapping: 0.113800 ms MarkObjects: 6.073100 ms DeleteObjects: 0.036700 ms) +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3038. +Memory consumption went from 100.0 MB to 99.9 MB. +Total: 6.690000 ms (FindLiveObjects: 0.206400 ms CreateObjectMapping: 0.122000 ms MarkObjects: 6.310900 ms DeleteObjects: 0.049600 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -760,9 +364,2383 @@ AssetImportParameters requested are different than current active one (requested custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== +Received Import Request. + Time since last request: 162537.905409 seconds. + path: Assets/ART/base/prefab/ViewFilter.prefab + artifactKey: Guid(395c889d500a77847af945ea7e9607f2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/base/prefab/ViewFilter.prefab using Guid(395c889d500a77847af945ea7e9607f2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6f2a7d8d7703f5d0814fa72ca1b0f750') in 0.103802 seconds +Number of asset objects unloaded after import = 104 +======================================================================== +Received Import Request. + Time since last request: 170.340002 seconds. + path: Assets/ART/ui/texture/main/zijincaic12.png + artifactKey: Guid(8cec2108e933320489f59b0fdcf4615a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zijincaic12.png using Guid(8cec2108e933320489f59b0fdcf4615a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '230d9615dfb95f0af63ef16c81bab7f8') in 0.118473 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.228297 seconds. + path: Assets/ART/ui/texture/main/zijincaic10.png + artifactKey: Guid(d3c1b055527e0a54182decd219622210) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zijincaic10.png using Guid(d3c1b055527e0a54182decd219622210) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '69d5e73cbc6800c25958b914146fc26b') in 0.020982 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.354436 seconds. + path: Assets/ART/ui/texture/main/zijincaic11.png + artifactKey: Guid(eeb5e31a676a50248b90c379791cc2ed) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zijincaic11.png using Guid(eeb5e31a676a50248b90c379791cc2ed) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8dee38d705a36ba439184e680f2f8238') in 0.019196 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.804744 seconds. + path: Assets/ART/ui/texture/main/zijincaic09.png + artifactKey: Guid(2ba27ea72adf34649b75e448987f3328) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zijincaic09.png using Guid(2ba27ea72adf34649b75e448987f3328) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '58f1a66c53aa9f339363beb7f69940c1') in 0.025937 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.366546 seconds. + path: Assets/ART/ui/texture/main/zijincaic07.png + artifactKey: Guid(841a8eea9a1f4e3498bf1744a314ba63) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zijincaic07.png using Guid(841a8eea9a1f4e3498bf1744a314ba63) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ae4b5ca391c802ad0d8a4575048eb917') in 0.027967 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.467264 seconds. + path: Assets/ART/ui/texture/main/zijincaic05.png + artifactKey: Guid(1eadb643eb1d9074286478eae56ef335) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zijincaic05.png using Guid(1eadb643eb1d9074286478eae56ef335) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2970e959f93a80695e79164e67949921') in 0.017304 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.325028 seconds. + path: Assets/ART/ui/texture/main/zijincaic04.png + artifactKey: Guid(92aaf7fd73fe3354184aab97b8ec1a87) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zijincaic04.png using Guid(92aaf7fd73fe3354184aab97b8ec1a87) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '839549b2d964307c47e2a0bf1a49ca19') in 0.018087 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.471089 seconds. + path: Assets/ART/ui/texture/main/zijincaic01.png + artifactKey: Guid(837e4db78c37d5c41835d3519cb876ff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zijincaic01.png using Guid(837e4db78c37d5c41835d3519cb876ff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd77e299cd39829c8c624579e2b5f9ddc') in 0.016532 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.404847 seconds. + path: Assets/ART/ui/texture/main/zhuyemm39.png + artifactKey: Guid(44e8336c9ec192b41b65d96ccb2e7fda) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuyemm39.png using Guid(44e8336c9ec192b41b65d96ccb2e7fda) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '42eec498dcdd8bddda6d3745d9253226') in 0.094100 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 3.563509 seconds. + path: Assets/ART/ui/texture/main/zhuyemm01.png + artifactKey: Guid(aba08f29dc0c78948a0c6a3920606a01) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuyemm01.png using Guid(aba08f29dc0c78948a0c6a3920606a01) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c1e63340e9bf613c1ddc8f4fd4de19ff') in 0.028917 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.388543 seconds. + path: Assets/ART/ui/texture/main/zhuyemm02.png + artifactKey: Guid(0f923ac32de0399428ab3b3461f30c0c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuyemm02.png using Guid(0f923ac32de0399428ab3b3461f30c0c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd748e9c7e7b83818e2157295d12315d9') in 0.021991 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.510913 seconds. + path: Assets/ART/ui/texture/main/zhuyemm04.png + artifactKey: Guid(582031c028880c04fabb55648960535e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuyemm04.png using Guid(582031c028880c04fabb55648960535e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '312c4e981abb915987e4585e0a394371') in 0.018075 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.486064 seconds. + path: Assets/ART/ui/texture/main/zhuyemm09.png + artifactKey: Guid(2c83a61821b727d48a827c6088b6ed62) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuyemm09.png using Guid(2c83a61821b727d48a827c6088b6ed62) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '40ba2e451a6c8e611f258306c91353df') in 0.017047 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.915631 seconds. + path: Assets/ART/ui/texture/main/zhuyemm11.png + artifactKey: Guid(1d6bc4ae6816582489bd7954b4a9ce6e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuyemm11.png using Guid(1d6bc4ae6816582489bd7954b4a9ce6e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '024aae0304580c451dbd9584df9298bf') in 0.019789 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 37.861812 seconds. + path: Assets/ART/ui/texture/main/cjjr_2.png + artifactKey: Guid(628a1ecf0364f9341aa1f99534982963) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/cjjr_2.png using Guid(628a1ecf0364f9341aa1f99534982963) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6d2161234573d97380797a1d53bf1593') in 0.028623 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 1.054350 seconds. + path: Assets/ART/ui/texture/main/cjjr_1.png + artifactKey: Guid(f1c0e12238eb1944498f40b06df1c7fe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/cjjr_1.png using Guid(f1c0e12238eb1944498f40b06df1c7fe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c5063ab7dd83726174d944ac4d280a22') in 0.021596 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 2.079913 seconds. + path: Assets/ART/ui/texture/main/card_game_safety5.png + artifactKey: Guid(2aa5fc94a17db7d49869fb4e50c8f903) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/card_game_safety5.png using Guid(2aa5fc94a17db7d49869fb4e50c8f903) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '56569f718748febf57b279988624a563') in 0.017946 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.218822 seconds. + path: Assets/ART/ui/texture/main/card_game_safety4.png + artifactKey: Guid(4ecbd36df75a0bb43a21e6e5020a7cee) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/card_game_safety4.png using Guid(4ecbd36df75a0bb43a21e6e5020a7cee) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '827e2ff6ededb93945f96c07f1d6fa6b') in 0.026562 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.167457 seconds. + path: Assets/ART/ui/texture/main/card_game_safety2.png + artifactKey: Guid(ae205d6a094ee3f42addfbfd2601c814) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/card_game_safety2.png using Guid(ae205d6a094ee3f42addfbfd2601c814) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b9d8ccc6825b61906143b09a0fdfe14f') in 0.015917 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.187907 seconds. + path: Assets/ART/ui/texture/main/card_game_safety1.png + artifactKey: Guid(82db74fe18302f74f956df7bf47ef677) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/card_game_safety1.png using Guid(82db74fe18302f74f956df7bf47ef677) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'df14c4c193b387d7b28682c5f47d4aea') in 0.077826 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.222188 seconds. + path: Assets/ART/ui/texture/main/bsxq_20.png + artifactKey: Guid(f306574aaf4cb0e4e8de1c1863c96a80) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/bsxq_20.png using Guid(f306574aaf4cb0e4e8de1c1863c96a80) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9b194bd83f465e9767ef236ac677461c') in 0.066973 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.000022 seconds. + path: Assets/ART/ui/texture/main/bsxq_19.png + artifactKey: Guid(cc87b632de7a25b4e801dd4ce59b321e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/bsxq_19.png using Guid(cc87b632de7a25b4e801dd4ce59b321e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5d7286a88c8bc4416d9d327abeb5229c') in 0.026805 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.152950 seconds. + path: Assets/ART/ui/texture/main/bsxq_18.png + artifactKey: Guid(351d781824d8bf240999986cc0ea4888) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/bsxq_18.png using Guid(351d781824d8bf240999986cc0ea4888) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '303d17f76a857da151d01997a3bd4237') in 0.098610 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.090484 seconds. + path: Assets/ART/ui/texture/main/bsxq_17.png + artifactKey: Guid(7cee0b57f07641f4e9cde2711a991d48) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/bsxq_17.png using Guid(7cee0b57f07641f4e9cde2711a991d48) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b35b54d1eb8195aa54314332fba7a3b5') in 0.026635 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.146935 seconds. + path: Assets/ART/ui/texture/main/bsxq_16.png + artifactKey: Guid(c4a34f97f98adaf4eb61ba0724f50e29) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/bsxq_16.png using Guid(c4a34f97f98adaf4eb61ba0724f50e29) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '029c3b0a0b90b4b9951f7220c9049300') in 0.037720 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.133841 seconds. + path: Assets/ART/ui/texture/main/20251114163313_99_5.png + artifactKey: Guid(af96ef4f4dad36a4287935ef7a6642f3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/20251114163313_99_5.png using Guid(af96ef4f4dad36a4287935ef7a6642f3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2f6e8c72821741bea13c90c84ab0b5b8') in 0.027097 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.213788 seconds. + path: Assets/ART/ui/texture/main/20251114154900_98_5.png + artifactKey: Guid(a9a0e9474f9178041a668324d4586b14) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/20251114154900_98_5.png using Guid(a9a0e9474f9178041a668324d4586b14) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '51e2f5f023c63d89dec75b6163ef1aac') in 0.043342 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.171866 seconds. + path: Assets/ART/ui/texture/main/20251114140551_3_8.png + artifactKey: Guid(3fe1e8ce4cf8cde4b990ad71fbee63e0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/20251114140551_3_8.png using Guid(3fe1e8ce4cf8cde4b990ad71fbee63e0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'deba932ff8265ad320a237dffd13a890') in 0.057050 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.273848 seconds. + path: Assets/ART/ui/texture/main/20251110170630_54_5.png + artifactKey: Guid(cd46800d24dbd9448af8aabcd40f90a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/20251110170630_54_5.png using Guid(cd46800d24dbd9448af8aabcd40f90a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bf3ce71861ae5e1c998fc2413860b062') in 0.017211 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.088679 seconds. + path: Assets/ART/ui/texture/main/20251110170629_53_5.png + artifactKey: Guid(87754d53c5117aa46aab23fb4450532b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/20251110170629_53_5.png using Guid(87754d53c5117aa46aab23fb4450532b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '655374b2bceea73164a76e127af1cbdc') in 0.017334 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 4.299007 seconds. + path: Assets/ART/ui/texture/main/cjjr_3.png + artifactKey: Guid(711289ffcd09fa345b8598007ecce650) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/cjjr_3.png using Guid(711289ffcd09fa345b8598007ecce650) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ca7b53f3eadba7ddc89d93ab819cdf70') in 0.023950 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.182086 seconds. + path: Assets/ART/ui/texture/main/cjjr_4.png + artifactKey: Guid(3a7365f5b69292544b780d89516a4d3d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/cjjr_4.png using Guid(3a7365f5b69292544b780d89516a4d3d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3b69a722d585e0da87a63502acb90b5e') in 0.028740 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.244642 seconds. + path: Assets/ART/ui/texture/main/cjjr_6.png + artifactKey: Guid(5ce775c0ef5f9614ea57099ca8a4ba3d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/cjjr_6.png using Guid(5ce775c0ef5f9614ea57099ca8a4ba3d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '113486629f13576d87e13d6658dcc418') in 0.055001 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.200931 seconds. + path: Assets/ART/ui/texture/main/cjjr_7.png + artifactKey: Guid(5c382f23237fc954b938303d796f497c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/cjjr_7.png using Guid(5c382f23237fc954b938303d796f497c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '111d37761114d23e3402ec966619e2cc') in 0.018023 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 2.126985 seconds. + path: Assets/ART/ui/texture/main/cjjr_8.png + artifactKey: Guid(e4bfc2fef8c381a49b77dc94b0f6be07) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/cjjr_8.png using Guid(e4bfc2fef8c381a49b77dc94b0f6be07) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f1c7a8d638d059b5e4bbe7fcabf42f40') in 0.021749 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 1.816761 seconds. + path: Assets/ART/ui/texture/main/cjjr_9.png + artifactKey: Guid(99f5927fa0eb7f048a6447252d5acdc3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/cjjr_9.png using Guid(99f5927fa0eb7f048a6447252d5acdc3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '95440161fe6eda3f913844347e968396') in 0.025597 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.065755 seconds. + path: Assets/ART/ui/texture/main/cjjr_10.png + artifactKey: Guid(8f4fc8f7aa5fa404a80957efa82e0613) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/cjjr_10.png using Guid(8f4fc8f7aa5fa404a80957efa82e0613) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bf36eccbaa9e13ee4d454834cf85caf7') in 0.023360 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.171378 seconds. + path: Assets/ART/ui/texture/main/cjjr_11.png + artifactKey: Guid(e66c630257e85744fbd2b6ea1d4341ef) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/cjjr_11.png using Guid(e66c630257e85744fbd2b6ea1d4341ef) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5da8a300b16ae2ababbe6d7a28454484') in 0.017079 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.171714 seconds. + path: Assets/ART/ui/texture/main/cjjr_12.png + artifactKey: Guid(2176d19ff1aff9b45aca1c116392f5a4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/cjjr_12.png using Guid(2176d19ff1aff9b45aca1c116392f5a4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6305cc0493dfcf7175ef21bf99ec972f') in 0.021827 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.126429 seconds. + path: Assets/ART/ui/texture/main/cjjr_13.png + artifactKey: Guid(2c4800cc82eecbd44a639cd9cf511d1d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/cjjr_13.png using Guid(2c4800cc82eecbd44a639cd9cf511d1d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e573139185ab6259843e9d9968e3a0da') in 0.015771 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.191099 seconds. + path: Assets/ART/ui/texture/main/cjjr_14.png + artifactKey: Guid(389fd4c4305921549a780b53e02428cc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/cjjr_14.png using Guid(389fd4c4305921549a780b53e02428cc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '168009abbcead5101d86bf17e0d8659b') in 0.021177 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.129882 seconds. + path: Assets/ART/ui/texture/main/common_head.png + artifactKey: Guid(e046f009ca8867744ad5ef41e5e76a68) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/common_head.png using Guid(e046f009ca8867744ad5ef41e5e76a68) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b820c5d0c97fcbd92e2a179decf64c47') in 0.028117 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.159864 seconds. + path: Assets/ART/ui/texture/main/createcard001.png + artifactKey: Guid(89282099c6444654e881d13e45f3ae8f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/createcard001.png using Guid(89282099c6444654e881d13e45f3ae8f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '42a7d270ea40a4cf29bfed799f310f61') in 0.021569 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.200801 seconds. + path: Assets/ART/ui/texture/main/createcard002.png + artifactKey: Guid(1434479d3fd0a414c9ff2f40630ffd97) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/createcard002.png using Guid(1434479d3fd0a414c9ff2f40630ffd97) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8147cb42f0c34ad29230dd11c209bc4b') in 0.029090 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.077788 seconds. + path: Assets/ART/ui/texture/main/createcard003.png + artifactKey: Guid(061cc8f2f12a793468779c438ffeff57) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/createcard003.png using Guid(061cc8f2f12a793468779c438ffeff57) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e5b55f49e869147f6f98acd6d070037b') in 0.016790 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.205604 seconds. + path: Assets/ART/ui/texture/main/Frame 1410137271.png + artifactKey: Guid(eeb54ae97f0526e4ca4e110da9dd72c7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/Frame 1410137271.png using Guid(eeb54ae97f0526e4ca4e110da9dd72c7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '772d9ab822b5654e8866dde20af2d702') in 0.048521 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.133784 seconds. + path: Assets/ART/ui/texture/main/Frame 1410137282.png + artifactKey: Guid(7e682e20372fd304b962c2e94b9835d8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/Frame 1410137282.png using Guid(7e682e20372fd304b962c2e94b9835d8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '95962e7761be0883992fe7b3e738224c') in 0.035073 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.176361 seconds. + path: Assets/ART/ui/texture/main/Frame 1410137386.png + artifactKey: Guid(5984aecbfa3a90c4f95eccb429e042d6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/Frame 1410137386.png using Guid(5984aecbfa3a90c4f95eccb429e042d6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e75928ca137a297f214460f119708b3e') in 0.073288 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.088967 seconds. + path: Assets/ART/ui/texture/main/Frame 1410137387.png + artifactKey: Guid(7e51901df71c66146836f010a745ef68) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/Frame 1410137387.png using Guid(7e51901df71c66146836f010a745ef68) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '49d28a43bf2581a2218729acc72ab203') in 0.024173 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.185986 seconds. + path: Assets/ART/ui/texture/main/Frame 1410137391.png + artifactKey: Guid(c8d233811cf56204c8661ae05ac274ad) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/Frame 1410137391.png using Guid(c8d233811cf56204c8661ae05ac274ad) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ad43bea3e593df72d1a0aeeb8f36404b') in 0.082357 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 2.174482 seconds. + path: Assets/ART/ui/texture/main/Frame 1410137392.png + artifactKey: Guid(bf85bd7ff993dd04a9bc5b4421d76e5f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/Frame 1410137392.png using Guid(bf85bd7ff993dd04a9bc5b4421d76e5f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7d036aa25f158a706a53de872c0e1ba2') in 0.024342 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.309271 seconds. + path: Assets/ART/ui/texture/main/Group 21.png + artifactKey: Guid(53d78fadfa4fb534f9b6224b0e72ea2c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/Group 21.png using Guid(53d78fadfa4fb534f9b6224b0e72ea2c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8d67b8646e0f6ca96d5279cbd58ccbb8') in 0.020729 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.433495 seconds. + path: Assets/ART/ui/texture/main/Group 302.png + artifactKey: Guid(7879c23c0cf64704396a2370ca45c593) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/Group 302.png using Guid(7879c23c0cf64704396a2370ca45c593) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e1d6f0c719740c0784edc30c07ff0e21') in 0.035577 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.372244 seconds. + path: Assets/ART/ui/texture/main/Group 329.png + artifactKey: Guid(55eb3ccf2ad61b949b97e4fc83e207ae) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/Group 329.png using Guid(55eb3ccf2ad61b949b97e4fc83e207ae) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '376bbcc980b8b8c3d0a4a024eb6a1ddc') in 0.016751 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.359889 seconds. + path: Assets/ART/ui/texture/main/Group 351.png + artifactKey: Guid(8f49ce2e862844c40af9bcf555c26874) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/Group 351.png using Guid(8f49ce2e862844c40af9bcf555c26874) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '10bc220547a185699b91fdc66afadfcf') in 0.016364 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.440852 seconds. + path: Assets/ART/ui/texture/main/haoyx1.png + artifactKey: Guid(dd10b39c4149c314ba26ca104b6d8b0a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/haoyx1.png using Guid(dd10b39c4149c314ba26ca104b6d8b0a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ed7c02c1df352041ef316b44bebb35ae') in 0.021376 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 5.310951 seconds. + path: Assets/ART/ui/texture/main/haoyxx_2.png + artifactKey: Guid(8715559879cb5e245966a8ef38860a62) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/haoyxx_2.png using Guid(8715559879cb5e245966a8ef38860a62) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd9ebf46be495414adbb273f21e9ec006') in 0.024731 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.743027 seconds. + path: Assets/ART/ui/texture/main/haoyxx_3.png + artifactKey: Guid(613943039066f684d80f0e3ab311913c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/haoyxx_3.png using Guid(613943039066f684d80f0e3ab311913c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '78d59921bb1966fcf2e91b3d38b0ba03') in 0.020345 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.545724 seconds. + path: Assets/ART/ui/texture/main/haoyxx_4.png + artifactKey: Guid(c7931c7f42a1c0240ab605181ba3daae) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/haoyxx_4.png using Guid(c7931c7f42a1c0240ab605181ba3daae) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '56e117ff18defacee6e845486f1655ab') in 0.020247 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.536573 seconds. + path: Assets/ART/ui/texture/main/haoyxx_5.png + artifactKey: Guid(03806439169787d41a5c5741025ca20e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/haoyxx_5.png using Guid(03806439169787d41a5c5741025ca20e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a4751407ccde93a3a454d495671a6f72') in 0.016555 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.329198 seconds. + path: Assets/ART/ui/texture/main/haoyxx_6.png + artifactKey: Guid(d00e503c856437b43b5503d6e945f9b4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/haoyxx_6.png using Guid(d00e503c856437b43b5503d6e945f9b4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '651e4af1ed01576cdcdab35b0f096a24') in 0.015991 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.395874 seconds. + path: Assets/ART/ui/texture/main/haoyxx_11.png + artifactKey: Guid(7387beb8e887ac54284db46232a347e8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/haoyxx_11.png using Guid(7387beb8e887ac54284db46232a347e8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '726de768b9657b5b1b14e75e88aa6e00') in 0.038550 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.289963 seconds. + path: Assets/ART/ui/texture/main/haoyxx_12.png + artifactKey: Guid(327e42813d9775843bff22f2d669a2df) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/haoyxx_12.png using Guid(327e42813d9775843bff22f2d669a2df) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '042c32dcfbbd6ff000d6d613d0bdcf58') in 0.026846 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.583429 seconds. + path: Assets/ART/ui/texture/main/haoyxx_13.png + artifactKey: Guid(867bd2d18acbd014ba80f1a6efe14b41) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/haoyxx_13.png using Guid(867bd2d18acbd014ba80f1a6efe14b41) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '40305e51a39df07e177821fda8d74d0e') in 0.023495 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.742179 seconds. + path: Assets/ART/ui/texture/main/haoyxx_14.png + artifactKey: Guid(be8748b1004e710428c937e22fae1663) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/haoyxx_14.png using Guid(be8748b1004e710428c937e22fae1663) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e4dfaf637baee2f3d44c2e4e28e8fbf0') in 0.018719 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.346978 seconds. + path: Assets/ART/ui/texture/main/haoyxx_15.png + artifactKey: Guid(106112018d079c148803649523888957) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/haoyxx_15.png using Guid(106112018d079c148803649523888957) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6b725fe48f114265f2ba0e8176056e22') in 0.033831 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.344606 seconds. + path: Assets/ART/ui/texture/main/haoyxx_16.png + artifactKey: Guid(9345a8275600b834281a875e3c220af9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/haoyxx_16.png using Guid(9345a8275600b834281a875e3c220af9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '09a9a766d7e26ce75759873e92a770bc') in 0.022721 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.562529 seconds. + path: Assets/ART/ui/texture/main/haoyxx_17_1.png + artifactKey: Guid(0ea90139305d385439f3d0951b5b071d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/haoyxx_17_1.png using Guid(0ea90139305d385439f3d0951b5b071d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8ff21f6a77aaf603a09dc6c3a9000df8') in 0.017544 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.344828 seconds. + path: Assets/ART/ui/texture/main/haoyxx_18.png + artifactKey: Guid(42758814bf1847c43b10deb5dce6a3c5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/haoyxx_18.png using Guid(42758814bf1847c43b10deb5dce6a3c5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6367df2e1803f9f1fb8f5bc18f494652') in 0.019720 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.304872 seconds. + path: Assets/ART/ui/texture/main/haoyxx_19.png + artifactKey: Guid(7ca5f3a25b520aa488eb14e9d430618e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/haoyxx_19.png using Guid(7ca5f3a25b520aa488eb14e9d430618e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd9acd547ff03b83f868db39254a72978') in 0.015715 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.222954 seconds. + path: Assets/ART/ui/texture/main/haoyxx_20.png + artifactKey: Guid(d9ea2b51588270a4fa629fb96294852a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/haoyxx_20.png using Guid(d9ea2b51588270a4fa629fb96294852a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bcfcfe4407c9d934f3aab1b59aaf051a') in 0.020608 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.533774 seconds. + path: Assets/ART/ui/texture/main/haoyxx_21.png + artifactKey: Guid(244e088d7b2e7c3459920410ddcf1e94) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/haoyxx_21.png using Guid(244e088d7b2e7c3459920410ddcf1e94) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '80598487ba50656f165f41182f7a359c') in 0.017138 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.281907 seconds. + path: Assets/ART/ui/texture/main/home_005.png + artifactKey: Guid(b6256c6fd5dcaa8428a515c5f684681b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/home_005.png using Guid(b6256c6fd5dcaa8428a515c5f684681b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '702afb1f35df75167a2c5419c826bef2') in 0.039165 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.378119 seconds. + path: Assets/ART/ui/texture/main/image 1.png + artifactKey: Guid(eab0e939ea9760d478026faeebf9834f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/image 1.png using Guid(eab0e939ea9760d478026faeebf9834f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4f55d22d5ee251bc2cf0bc39c68fe904') in 0.028002 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.362527 seconds. + path: Assets/ART/ui/texture/main/main002.png + artifactKey: Guid(3115d44d098cf224eb343251f11563ce) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/main002.png using Guid(3115d44d098cf224eb343251f11563ce) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a2cff4b19d6881d4bd3893715a10da43') in 0.022312 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.377884 seconds. + path: Assets/ART/ui/texture/main/main004.png + artifactKey: Guid(bfed1323a46ab744b8b54591f5d744d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/main004.png using Guid(bfed1323a46ab744b8b54591f5d744d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f5081f1977a696ce00928d2ddca6d8dc') in 0.020337 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.301522 seconds. + path: Assets/ART/ui/texture/main/main006.png + artifactKey: Guid(0b51f011b0c59884eb0c7229ca5c2046) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/main006.png using Guid(0b51f011b0c59884eb0c7229ca5c2046) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6630a54715d52abf43c6b82983b364d0') in 0.020985 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.224888 seconds. + path: Assets/ART/ui/texture/main/main008.png + artifactKey: Guid(7d9b92d60e1f3ec4c88f9f97f4c99d16) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/main008.png using Guid(7d9b92d60e1f3ec4c88f9f97f4c99d16) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1fe71d25b077d1ed6fb7fc2fdca28fe8') in 0.019847 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.389143 seconds. + path: Assets/ART/ui/texture/main/main10.png + artifactKey: Guid(deb553295c332b44aacb2914872f97d9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/main10.png using Guid(deb553295c332b44aacb2914872f97d9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '338b1894ef49b719d902955ed671ef34') in 0.021154 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 1.414490 seconds. + path: Assets/ART/ui/texture/main/main_000.png + artifactKey: Guid(8f3935e36f1bf1e43a5371bb502d9a59) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/main_000.png using Guid(8f3935e36f1bf1e43a5371bb502d9a59) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '25f6852acd008a756ce5e214e38344a2') in 0.053869 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.357153 seconds. + path: Assets/ART/ui/texture/main/main_003.png + artifactKey: Guid(e1f59bbc45bc3ea47bf018955c021dd1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/main_003.png using Guid(e1f59bbc45bc3ea47bf018955c021dd1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '02a1f567b259f239f0a880765d975714') in 0.043632 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.148940 seconds. + path: Assets/ART/ui/texture/main/main_circle.png + artifactKey: Guid(82e6dc4760616a240963a3ce8b6783b6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/main_circle.png using Guid(82e6dc4760616a240963a3ce8b6783b6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5d63aa7d3889eaf78fb6e286669f3801') in 0.021931 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.152533 seconds. + path: Assets/ART/ui/texture/main/main_friend 1.png + artifactKey: Guid(59ddf24cc1b0a1c45aa6c0e8610c027b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/main_friend 1.png using Guid(59ddf24cc1b0a1c45aa6c0e8610c027b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8c81ef456e766017a6cd9bed42501ec3') in 0.030316 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.172929 seconds. + path: Assets/ART/ui/texture/main/main_game.png + artifactKey: Guid(877309939cd68fe4e9dca91419a8e074) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/main_game.png using Guid(877309939cd68fe4e9dca91419a8e074) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '67b9faa155acbee442823b6c0e3c4b0d') in 0.022650 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.371277 seconds. + path: Assets/ART/ui/texture/main/match.png + artifactKey: Guid(922c8248610255943b5b7f3629d42be3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/match.png using Guid(922c8248610255943b5b7f3629d42be3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '54ed9cdd549959fbf25841a673fd91f6') in 0.024167 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.107322 seconds. + path: Assets/ART/ui/texture/main/me001.png + artifactKey: Guid(dba511de369f0284bad47f181eaab3e3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/me001.png using Guid(dba511de369f0284bad47f181eaab3e3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e4dbf8166819fda2de1d030eef8e6f28') in 0.050806 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.139485 seconds. + path: Assets/ART/ui/texture/main/me002.png + artifactKey: Guid(50f7807cf8c0b7743b03121b719badb3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/me002.png using Guid(50f7807cf8c0b7743b03121b719badb3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '899fef4ccd48b33d236f3f86dacf9882') in 0.027417 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 4.485822 seconds. + path: Assets/ART/ui/texture/main/me003.png + artifactKey: Guid(2c525d4d9646a3240a16873517536dab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/me003.png using Guid(2c525d4d9646a3240a16873517536dab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '482a2fe87d4b416f8c7a3d2246f17ae2') in 0.027115 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.162587 seconds. + path: Assets/ART/ui/texture/main/me004.png + artifactKey: Guid(79a8d53a80c4db842b0b5d94e02a0f70) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/me004.png using Guid(79a8d53a80c4db842b0b5d94e02a0f70) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a6b26d354455ea6f3fe1aba393695009') in 0.022626 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.382847 seconds. + path: Assets/ART/ui/texture/main/me005.png + artifactKey: Guid(14739e573e132d84f9242627f6fbb34b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/me005.png using Guid(14739e573e132d84f9242627f6fbb34b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '41803662a2afe8464b8af67621bbc411') in 0.023058 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.348346 seconds. + path: Assets/ART/ui/texture/main/me006.png + artifactKey: Guid(c147ccb4230a591459bf7c95080824ae) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/me006.png using Guid(c147ccb4230a591459bf7c95080824ae) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3a5cf11bd7b7a423f11e7759e277dd11') in 0.027237 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.217926 seconds. + path: Assets/ART/ui/texture/main/me007.png + artifactKey: Guid(f8a7301576c662b498148cbd2c6650cd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/me007.png using Guid(f8a7301576c662b498148cbd2c6650cd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '089ef6ab379580b8e0c97fd36294982d') in 0.025335 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.200802 seconds. + path: Assets/ART/ui/texture/main/me008.png + artifactKey: Guid(45defd2d1257f9d449d34396ed279b48) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/me008.png using Guid(45defd2d1257f9d449d34396ed279b48) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '92a112ef7b751832a69e990b3f6336cf') in 0.016462 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.179037 seconds. + path: Assets/ART/ui/texture/main/me009.png + artifactKey: Guid(7ba829fbc8cad2844b323192e2327e8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/me009.png using Guid(7ba829fbc8cad2844b323192e2327e8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '10b03df7f9c48e1af534edcceff33cbf') in 0.019583 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.385154 seconds. + path: Assets/ART/ui/texture/main/me010.png + artifactKey: Guid(771c4e55bec6aed48aebcdec5bd0e43f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/me010.png using Guid(771c4e55bec6aed48aebcdec5bd0e43f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ae76bcef996284f271838ed633426c71') in 0.016587 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.320172 seconds. + path: Assets/ART/ui/texture/main/me011.png + artifactKey: Guid(f0368479e9f54e2459760ddee18b1ea7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/me011.png using Guid(f0368479e9f54e2459760ddee18b1ea7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b7c55c31a5da0e2d99f44c62478f0f72') in 0.019602 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.454147 seconds. + path: Assets/ART/ui/texture/main/other001.png + artifactKey: Guid(7c1016a5efe26a648a880de806752843) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/other001.png using Guid(7c1016a5efe26a648a880de806752843) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd37c6207021106ccac9bbfda97278935') in 0.031878 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.155393 seconds. + path: Assets/ART/ui/texture/main/paijujiesuan01.png + artifactKey: Guid(6ad7a3517272866489a888e5df49a435) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/paijujiesuan01.png using Guid(6ad7a3517272866489a888e5df49a435) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7dc498ff071da280355ffe62be4538cf') in 0.024025 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.186839 seconds. + path: Assets/ART/ui/texture/main/paijujiesuan02.png + artifactKey: Guid(c92d8ef65233179459f4248ab3f3d372) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/paijujiesuan02.png using Guid(c92d8ef65233179459f4248ab3f3d372) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cf589260cc6c5d48a99367b04a7c807e') in 0.021287 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 1.457279 seconds. + path: Assets/ART/ui/texture/main/paijujiesuan03.png + artifactKey: Guid(24ee6ca7aebbb3a468172ae2135d5d96) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/paijujiesuan03.png using Guid(24ee6ca7aebbb3a468172ae2135d5d96) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'de3d7174ab16720ee814c07312d1a270') in 0.022545 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.206720 seconds. + path: Assets/ART/ui/texture/main/paijujiesuan04.png + artifactKey: Guid(5a1874588661fe24999c32487c22a556) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/paijujiesuan04.png using Guid(5a1874588661fe24999c32487c22a556) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5e2e50b04c24dabef77c0b4422cf4d77') in 0.040718 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.145023 seconds. + path: Assets/ART/ui/texture/main/paijujiesuan05.png + artifactKey: Guid(044f2ed06ed4bba4899e24b533dee377) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/paijujiesuan05.png using Guid(044f2ed06ed4bba4899e24b533dee377) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8bd03c882322c98a5b62a097af1ddeae') in 0.021287 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 2.592228 seconds. + path: Assets/ART/ui/texture/main/paijujiesuan06.png + artifactKey: Guid(0dd1c17e450f93847b2e24eca381ddb8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/paijujiesuan06.png using Guid(0dd1c17e450f93847b2e24eca381ddb8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '63fba408cbc1d4c064b416bbd93583d0') in 0.049219 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.380289 seconds. + path: Assets/ART/ui/texture/main/paijujiesuan07.png + artifactKey: Guid(710646838e96bb24d8e6d8d557563bdb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/paijujiesuan07.png using Guid(710646838e96bb24d8e6d8d557563bdb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e3379d8671c2b95ba41692d87668e6a8') in 0.021732 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.398238 seconds. + path: Assets/ART/ui/texture/main/paijujiesuan08.png + artifactKey: Guid(637ab02edf1027f4a9649fb7d1d749a7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/paijujiesuan08.png using Guid(637ab02edf1027f4a9649fb7d1d749a7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '02a285c5d8aaf62c6c26a86a4c276472') in 0.042551 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.719288 seconds. + path: Assets/ART/ui/texture/main/paijujiesuan09.png + artifactKey: Guid(98e22be618b6e8e4f96be47b006f9df6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/paijujiesuan09.png using Guid(98e22be618b6e8e4f96be47b006f9df6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '66f484c5e5bcb2df4ee345945600e693') in 0.022362 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.680817 seconds. + path: Assets/ART/ui/texture/main/qianbsd_1.png + artifactKey: Guid(444055660843a0a44ac384a8331c419c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/qianbsd_1.png using Guid(444055660843a0a44ac384a8331c419c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6d6eeaf334d0ed407fab6714d94a8c39') in 0.020129 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.509701 seconds. + path: Assets/ART/ui/texture/main/qianbsd_2.png + artifactKey: Guid(19ba58a111c398d44811cc49c4e88fcb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/qianbsd_2.png using Guid(19ba58a111c398d44811cc49c4e88fcb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '60ccada3996b129bc91d7613e7cab225') in 0.019803 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.178463 seconds. + path: Assets/ART/ui/texture/main/qianbsd_3.png + artifactKey: Guid(fcc0fa92bcce2b947bb65b8ff6b4a8db) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/qianbsd_3.png using Guid(fcc0fa92bcce2b947bb65b8ff6b4a8db) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0dcf548372e9868f21aad61d9e4b3ad5') in 0.019010 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.403000 seconds. + path: Assets/ART/ui/texture/main/qianbsd_4.png + artifactKey: Guid(9499696c47114a141bf0c5855e64db4b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/qianbsd_4.png using Guid(9499696c47114a141bf0c5855e64db4b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a97612f8ffef8c721da0812fff9b70ab') in 0.016595 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.499823 seconds. + path: Assets/ART/ui/texture/main/qianbsd_5.png + artifactKey: Guid(d932a1dc5bfa84746933a94ddbf0a383) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/qianbsd_5.png using Guid(d932a1dc5bfa84746933a94ddbf0a383) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '87731eb0dfe8d39b7e075a24723c7cf4') in 0.023134 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.383691 seconds. + path: Assets/ART/ui/texture/main/qianbsd_7.png + artifactKey: Guid(0bcddc584c9e61447b751de26c1417c9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/qianbsd_7.png using Guid(0bcddc584c9e61447b751de26c1417c9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5ca44052ef54803e7d518c613f19c87f') in 0.050759 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 3.165107 seconds. + path: Assets/ART/ui/texture/main/qianbsd_8.png + artifactKey: Guid(72480815a44f4a144abc37bd8de4fcbf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/qianbsd_8.png using Guid(72480815a44f4a144abc37bd8de4fcbf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f9cb2307376629f66b1e33f49e527dbf') in 0.043433 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.186599 seconds. + path: Assets/ART/ui/texture/main/qianbsd_9.png + artifactKey: Guid(0a01767c9c95d5e48b87d32d1a4fbcec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/qianbsd_9.png using Guid(0a01767c9c95d5e48b87d32d1a4fbcec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f9e09fef5db961e6e881828523b4c923') in 0.042886 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.165366 seconds. + path: Assets/ART/ui/texture/main/qianbsd_12.png + artifactKey: Guid(535ea9db0fdaeea44abee2060275b58b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/qianbsd_12.png using Guid(535ea9db0fdaeea44abee2060275b58b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '99f5743be79fccf9fbae9d704d091242') in 0.025825 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 3.928822 seconds. + path: Assets/ART/ui/texture/main/qianbsd_13.png + artifactKey: Guid(26a1d41858cff864f9421ae4b21d372e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/qianbsd_13.png using Guid(26a1d41858cff864f9421ae4b21d372e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '763647cd02d8e81fe5b51fc4b5940369') in 0.019037 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.357503 seconds. + path: Assets/ART/ui/texture/main/Rectangle 18.png + artifactKey: Guid(1de8928cde7d4434a85c724af6d90f81) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/Rectangle 18.png using Guid(1de8928cde7d4434a85c724af6d90f81) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '902abb9fd42792b89f2578cf8f51f485') in 0.037964 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.431697 seconds. + path: Assets/ART/ui/texture/main/Rectangle 36.png + artifactKey: Guid(4a283e82585e4ab40a1ffbfbf73ca16e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/Rectangle 36.png using Guid(4a283e82585e4ab40a1ffbfbf73ca16e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4e0df84292423dcda7af63fa26bca910') in 0.034440 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.462956 seconds. + path: Assets/ART/ui/texture/main/Rectangle 204_1.png + artifactKey: Guid(d1c6f82b7f63ebf4eb11cb8172ac35db) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/Rectangle 204_1.png using Guid(d1c6f82b7f63ebf4eb11cb8172ac35db) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'eb24829770389217793dae21731a9739') in 0.111577 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.082979 seconds. + path: Assets/ART/ui/texture/main/room001.png + artifactKey: Guid(67584a48baa3e3f4db521bc76a831b4b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/room001.png using Guid(67584a48baa3e3f4db521bc76a831b4b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a151a9a571c41cb814b361baa3dd9ddb') in 0.060240 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.124025 seconds. + path: Assets/ART/ui/texture/main/saixuan 5.png + artifactKey: Guid(db9e0635f6e939a429e62b14462b1ac9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/saixuan 5.png using Guid(db9e0635f6e939a429e62b14462b1ac9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0e572c925383a11310a937c4b6415976') in 0.096476 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.273185 seconds. + path: Assets/ART/ui/texture/main/saixuan2.png + artifactKey: Guid(f308565b554eff04ab4824a783c70622) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/saixuan2.png using Guid(f308565b554eff04ab4824a783c70622) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'eb3ab0bb6c116c4f21025d69aec44ce4') in 0.020439 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.358276 seconds. + path: Assets/ART/ui/texture/main/saixuan3.png + artifactKey: Guid(9fb2e362c69ca6d45a84191b1bc63c32) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/saixuan3.png using Guid(9fb2e362c69ca6d45a84191b1bc63c32) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0fa8d2ac12ce05db9d4984120c22f6d5') in 0.018394 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 6.436318 seconds. + path: Assets/ART/ui/texture/main/saixuan4.png + artifactKey: Guid(db2ef64c6ca055840b12d191b7b391cc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/saixuan4.png using Guid(db2ef64c6ca055840b12d191b7b391cc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '896293ee98ac57320fab366395355754') in 0.019403 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 2.805271 seconds. + path: Assets/ART/ui/texture/main/saixuan6.png + artifactKey: Guid(c773cea637eaced43876d01b7669cb9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/saixuan6.png using Guid(c773cea637eaced43876d01b7669cb9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6db0d587060deb8b70f55219e0b46063') in 0.019190 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.200946 seconds. + path: Assets/ART/ui/texture/main/saixuan7.png + artifactKey: Guid(899bdc8d09b18f442afb6878811f3885) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/saixuan7.png using Guid(899bdc8d09b18f442afb6878811f3885) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8b13c032904df23d7a7059130b29e5a3') in 0.018804 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 9.127254 seconds. + path: Assets/ART/UITemp/筛选-1.png + artifactKey: Guid(9518a1457d09fd64f8c81d36eaf44860) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/UITemp/筛选-1.png using Guid(9518a1457d09fd64f8c81d36eaf44860) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e861e8ffd8b62a6497fc1c03d6ebc9f9') in 0.046061 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 74.664116 seconds. + path: Assets/ART/ui/texture/main/zijincaic16.png + artifactKey: Guid(3c5eddb8748f78b4ab4fa0473a16cb4f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zijincaic16.png using Guid(3c5eddb8748f78b4ab4fa0473a16cb4f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cde4a7058b659dcaf55d5da462966629') in 0.022565 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 1.371889 seconds. + path: Assets/ART/ui/texture/main/zhuyemm06.png + artifactKey: Guid(9dd83bf3e9756ed47b0b15397ce43400) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuyemm06.png using Guid(9dd83bf3e9756ed47b0b15397ce43400) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '49361eed22685ab33dec00cb513e8f18') in 0.017762 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.650876 seconds. + path: Assets/ART/ui/texture/main/zhuyemm05.png + artifactKey: Guid(687d2755c3c25cf4293ea149eda2a352) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuyemm05.png using Guid(687d2755c3c25cf4293ea149eda2a352) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '361ab7582d3d79cd75e7f95ef334df15') in 0.019136 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.410938 seconds. + path: Assets/ART/ui/texture/main/zhuyemm03.png + artifactKey: Guid(6db298c8439c00041b62606bad11b5c8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuyemm03.png using Guid(6db298c8439c00041b62606bad11b5c8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ef2a55518c512e1fb9d31e06f6b858bd') in 0.019572 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 1.701994 seconds. + path: Assets/ART/ui/texture/main/zhuyemm07.png + artifactKey: Guid(f53c254441396a141be578355fb31df6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuyemm07.png using Guid(f53c254441396a141be578355fb31df6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bd786fdd570d9d2b75b4eb4a3a1722fe') in 0.017961 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.565881 seconds. + path: Assets/ART/ui/texture/main/zhuyemm14.png + artifactKey: Guid(dfef724a3655514469d2389b108dc7d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuyemm14.png using Guid(dfef724a3655514469d2389b108dc7d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2748cb186c5379b3849234b1d6fa782e') in 0.160821 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 1.867651 seconds. + path: Assets/ART/ui/texture/main/zhuyemm17.png + artifactKey: Guid(6d242cb3a346f144687b70c4407fa708) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuyemm17.png using Guid(6d242cb3a346f144687b70c4407fa708) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f47bad3ee03d9a8613ccedfa176250be') in 0.021398 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.418973 seconds. + path: Assets/ART/ui/texture/main/zhuyemm16.png + artifactKey: Guid(416eae309ca13ed43a2e1dd4517fe4f9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuyemm16.png using Guid(416eae309ca13ed43a2e1dd4517fe4f9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '25c238529851cf077c68b665829edba0') in 0.018473 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.347498 seconds. + path: Assets/ART/ui/texture/main/zhuyemm15.png + artifactKey: Guid(99048b45c76454a469dbaa9889ae485d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuyemm15.png using Guid(99048b45c76454a469dbaa9889ae485d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '05775f873d635b55ba59d50dd7d9c476') in 0.027958 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 1.833355 seconds. + path: Assets/ART/ui/texture/main/zhuyemm18.png + artifactKey: Guid(cc9468a1aa094ee45bd4ab2b046a75dd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuyemm18.png using Guid(cc9468a1aa094ee45bd4ab2b046a75dd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '87e52d37c220de4b926563dab44069c3') in 0.040614 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.116453 seconds. + path: Assets/ART/ui/texture/main/zhuyemm19.png + artifactKey: Guid(4f54c184b193516439212becafc98871) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuyemm19.png using Guid(4f54c184b193516439212becafc98871) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd86eaa7eb8800362e95003c4330fd6e9') in 0.027023 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.236325 seconds. + path: Assets/ART/ui/texture/main/zhuyemm20.png + artifactKey: Guid(57968a6db5ec2084ca2542f2450f4102) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuyemm20.png using Guid(57968a6db5ec2084ca2542f2450f4102) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '432490c7bda158d09befc40849eacb97') in 0.022875 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.118999 seconds. + path: Assets/ART/ui/texture/main/zhuyemm21.png + artifactKey: Guid(dec8764cdf8ad104ba1feb73fcdb2c9c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuyemm21.png using Guid(dec8764cdf8ad104ba1feb73fcdb2c9c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ed9d94786bf0e43e9f26c9c8ff345024') in 0.023962 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.192323 seconds. + path: Assets/ART/ui/texture/main/zhuyemm22.png + artifactKey: Guid(5493ed131476dd04a88edd116980016f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuyemm22.png using Guid(5493ed131476dd04a88edd116980016f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fdece4bf92bdaf4bc2e1ff8ad9a36442') in 0.018912 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 2.010757 seconds. + path: Assets/ART/ui/texture/main/zhuyemm23.png + artifactKey: Guid(c61a44d8beb92664ea54728079625b31) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuyemm23.png using Guid(c61a44d8beb92664ea54728079625b31) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f60958dc5138e0163cf1cd9829c29144') in 0.018058 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.132842 seconds. + path: Assets/ART/ui/texture/main/zhuyemm24.png + artifactKey: Guid(f889a4045fee07d448dfc08a3037f467) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuyemm24.png using Guid(f889a4045fee07d448dfc08a3037f467) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '312660e682b348e0df93fe7bc3ffbf89') in 0.099304 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.221767 seconds. + path: Assets/ART/ui/texture/main/zhuyemm25.png + artifactKey: Guid(320daf49e6af2f146b35077e8c5d15b2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuyemm25.png using Guid(320daf49e6af2f146b35077e8c5d15b2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c9f43466e7ec30faa95b59bc765089cf') in 0.032470 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.131934 seconds. + path: Assets/ART/ui/texture/main/zhuyemm27.png + artifactKey: Guid(7e0c352d00f088f45aa2995a243004d3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuyemm27.png using Guid(7e0c352d00f088f45aa2995a243004d3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '15e2e3b8080fe00e033d1d5d6152b2db') in 0.107590 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.480573 seconds. + path: Assets/ART/ui/texture/main/zhuyemm28.png + artifactKey: Guid(73ad3b50b998aae4e8aed4ecabd54649) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuyemm28.png using Guid(73ad3b50b998aae4e8aed4ecabd54649) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e17f189a7900c23fe04054ff55012be2') in 0.020664 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.800390 seconds. + path: Assets/ART/ui/texture/main/zhuyemm26.png + artifactKey: Guid(ca78fa1417e0397479c8feed26b868c5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuyemm26.png using Guid(ca78fa1417e0397479c8feed26b868c5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0e13289da21e50996780bb2beb58d894') in 0.023197 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 1.439369 seconds. + path: Assets/ART/ui/texture/main/zhuyemm29.png + artifactKey: Guid(7fc50d590b807514a9be4b61b52bc5d7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuyemm29.png using Guid(7fc50d590b807514a9be4b61b52bc5d7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '441f94c7700334f10b6db299b72203cb') in 0.017255 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.155020 seconds. + path: Assets/ART/ui/texture/main/zhuyemm30.png + artifactKey: Guid(78cf3fdab41a18f49a59f2a5b9314437) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuyemm30.png using Guid(78cf3fdab41a18f49a59f2a5b9314437) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '05746624ae4ca718ff6fe2fcec4e20ed') in 0.017075 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.214328 seconds. + path: Assets/ART/ui/texture/main/zhuyemm31.png + artifactKey: Guid(ee36b3217e22d58409466052fb3a2b9d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuyemm31.png using Guid(ee36b3217e22d58409466052fb3a2b9d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f50c17adbc9340d852f41f4a31823e64') in 0.016724 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.178342 seconds. + path: Assets/ART/ui/texture/main/zhuyemm32.png + artifactKey: Guid(bcf6986525d790a4a9965bb8061e6b34) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuyemm32.png using Guid(bcf6986525d790a4a9965bb8061e6b34) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9de021dbc3d814757ebad91f6c882312') in 0.016640 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.167387 seconds. + path: Assets/ART/ui/texture/main/zhuyemm33.png + artifactKey: Guid(23f714c861a6b65418fc4ce359ca9a2d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuyemm33.png using Guid(23f714c861a6b65418fc4ce359ca9a2d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '884d88e48705ab08584a58526e4263f1') in 0.033648 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.488466 seconds. + path: Assets/ART/ui/texture/main/zhuyemm35.png + artifactKey: Guid(801c547c74a256c49972be17d1f1e79e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuyemm35.png using Guid(801c547c74a256c49972be17d1f1e79e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '10afc0eba3c2f94bef2472aeecd4599d') in 0.019027 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 7.598115 seconds. + path: Assets/ART/ui/texture/main/zijincaic08.png + artifactKey: Guid(b56f416df3808ce42a8e5674c7009356) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zijincaic08.png using Guid(b56f416df3808ce42a8e5674c7009356) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1a25db9000ad7d59f7aba42dbe7f06c9') in 0.040218 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 2.233436 seconds. + path: Assets/ART/ui/texture/main/zijincaic13.png + artifactKey: Guid(98303ab75d61db74cb88d770271a4fb3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zijincaic13.png using Guid(98303ab75d61db74cb88d770271a4fb3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b8fbc1647c09c6b6506a54b0b7938c3d') in 0.020531 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 1.942356 seconds. + path: Assets/ART/ui/texture/main/zijincaic14.png + artifactKey: Guid(73af015bee0c9744ba53cf9f21e48e31) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zijincaic14.png using Guid(73af015bee0c9744ba53cf9f21e48e31) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '94ab30cb6de28348c20473b8c73617ae') in 0.027828 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.160775 seconds. + path: Assets/ART/ui/texture/main/zijincaic15.png + artifactKey: Guid(aae27d6f6f703364992f68f0e26c52bc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zijincaic15.png using Guid(aae27d6f6f703364992f68f0e26c52bc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '471a82b88d202ecfa701ecedb5291b90') in 0.037905 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.648100 seconds. + path: Assets/ART/ui/texture/main/zijincaic17.png + artifactKey: Guid(71c81814f7dafc742813253927fcaba4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zijincaic17.png using Guid(71c81814f7dafc742813253927fcaba4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1362792655488d6f257a3f0de09dec57') in 0.023382 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.392936 seconds. + path: Assets/ART/ui/texture/main/zijincaic18.png + artifactKey: Guid(22ef0dfeba11a82448902b9191d5f3c2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zijincaic18.png using Guid(22ef0dfeba11a82448902b9191d5f3c2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '39557a0937f6ebd31f76e0a0c286dddb') in 0.033345 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 1.482708 seconds. + path: Assets/ART/ui/texture/main/zijincaic19.png + artifactKey: Guid(e67ade047c4e91a438f1d21af50c15ec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zijincaic19.png using Guid(e67ade047c4e91a438f1d21af50c15ec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '39305fa941414b2b15fafa96b26ab95d') in 0.019898 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.219163 seconds. + path: Assets/ART/ui/texture/main/zijincaic20.png + artifactKey: Guid(aa4564cfb629f824eac8fc8544d0918d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zijincaic20.png using Guid(aa4564cfb629f824eac8fc8544d0918d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cb1b9600264eac307511276ad497dd6b') in 0.026596 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.315858 seconds. + path: Assets/ART/ui/texture/main/zijincaic23.png + artifactKey: Guid(ea239d519a024914084a7139ba3eb042) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zijincaic23.png using Guid(ea239d519a024914084a7139ba3eb042) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '849bdebded0911ca8e23dbbeae80fca7') in 0.030748 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.475673 seconds. + path: Assets/ART/ui/texture/main/zijincaic24.png + artifactKey: Guid(c03019f62c1de4b498956da9c376ad6b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zijincaic24.png using Guid(c03019f62c1de4b498956da9c376ad6b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f42b3f7812c4d8900bb38da8c3018126') in 0.019471 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.724926 seconds. + path: Assets/ART/ui/texture/main/zijincaic24_1.png + artifactKey: Guid(3aafb131cc6c5f54e9e225d75281a313) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zijincaic24_1.png using Guid(3aafb131cc6c5f54e9e225d75281a313) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '741d0967b7d4357d9d78672e810c5704') in 0.017879 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.411056 seconds. + path: Assets/ART/ui/texture/main/zijincaic25.png + artifactKey: Guid(d0229f806ae7d0b48af895e92d9577bc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zijincaic25.png using Guid(d0229f806ae7d0b48af895e92d9577bc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd5fbf091755aa8d5745d908a153593c5') in 0.017300 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.366432 seconds. + path: Assets/ART/ui/texture/main/zijincaic25_1.png + artifactKey: Guid(b742d9e982845e444b53b39dadf3d86c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zijincaic25_1.png using Guid(b742d9e982845e444b53b39dadf3d86c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e9bca8f9fc70d365e46d2d543763f1f8') in 0.019065 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.418946 seconds. + path: Assets/ART/ui/texture/main/zijincaic26.png + artifactKey: Guid(0a007b34eedccb243af01ac35ae91c9c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zijincaic26.png using Guid(0a007b34eedccb243af01ac35ae91c9c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1bfffe4a8b480f6989a718aa0402c85b') in 0.020232 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.402571 seconds. + path: Assets/ART/ui/texture/main/zijincaic27.png + artifactKey: Guid(7dc64ece0fd9dcf41b347485d6a2244f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zijincaic27.png using Guid(7dc64ece0fd9dcf41b347485d6a2244f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fcd90d1dea8c20e772f0771a379580dc') in 0.016397 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.401483 seconds. + path: Assets/ART/ui/texture/main/zijincaic28.png + artifactKey: Guid(54a8c4fe83df5714e90795ca4624f866) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zijincaic28.png using Guid(54a8c4fe83df5714e90795ca4624f866) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b285f5562858c419afb463b581ca4155') in 0.033246 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.186306 seconds. + path: Assets/ART/ui/texture/main/zijincaic29.png + artifactKey: Guid(12938789777ca714ab0000f8a700a782) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zijincaic29.png using Guid(12938789777ca714ab0000f8a700a782) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd8c1766114d93c3f0ef57985c138655a') in 0.025953 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.219341 seconds. + path: Assets/ART/ui/texture/main/zijincaic30.png + artifactKey: Guid(284f852bdfeaf2c4ba6f21593fff3044) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zijincaic30.png using Guid(284f852bdfeaf2c4ba6f21593fff3044) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7a063fb1dfe7c64f91735e9277775532') in 0.025014 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 4.467551 seconds. + path: Assets/ART/ui/texture/main/zijincaic06.png + artifactKey: Guid(d23e2c82f40ce83418a48ebc369b50d4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zijincaic06.png using Guid(d23e2c82f40ce83418a48ebc369b50d4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd401803125f22910748d7bf3e5feef8a') in 0.037481 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.938796 seconds. + path: Assets/ART/ui/texture/main/zhuyemm38.png + artifactKey: Guid(36c1e2e64cfa2634ba8f1dc45d19e84f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuyemm38.png using Guid(36c1e2e64cfa2634ba8f1dc45d19e84f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'af93acf04770bd5571eb6de465e3cf82') in 0.025930 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.478994 seconds. + path: Assets/ART/ui/texture/main/zhuyemm37.png + artifactKey: Guid(3d226be3a7340ab41be5b37b2a70c239) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuyemm37.png using Guid(3d226be3a7340ab41be5b37b2a70c239) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c08505ccead44f5d2cf4c5bb614b47e7') in 0.116703 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.069840 seconds. + path: Assets/ART/ui/texture/main/zhuyemm36.png + artifactKey: Guid(2091bc0faa0e5d2429f7ece771305bd8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuyemm36.png using Guid(2091bc0faa0e5d2429f7ece771305bd8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e69a54a2d8d0afd3c12d262bf324f479') in 0.022354 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 4.658307 seconds. + path: Assets/ART/ui/texture/main/zhuyemm13.png + artifactKey: Guid(53676e78d6b029d41ad7457e1a4b5d99) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuyemm13.png using Guid(53676e78d6b029d41ad7457e1a4b5d99) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7c6243a5f390d2e1c4fbf485412310ba') in 0.022338 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.248373 seconds. + path: Assets/ART/ui/texture/main/zhuyemm12.png + artifactKey: Guid(0baef7a3d7dee8f438ca91fa11952a2b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuyemm12.png using Guid(0baef7a3d7dee8f438ca91fa11952a2b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fde308e0ea3a5833fe3798854e2b33fe') in 0.019983 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.418574 seconds. + path: Assets/ART/ui/texture/main/zhuyemm10.png + artifactKey: Guid(81ba664ceb69a4743b18de1f6f8804f3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuyemm10.png using Guid(81ba664ceb69a4743b18de1f6f8804f3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a13946ef243f7f30fa941978043beaa4') in 0.016614 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.383601 seconds. + path: Assets/ART/ui/texture/main/zhuyemm08.png + artifactKey: Guid(8a05a06174c07f9498df6bf45aa9ff15) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuyemm08.png using Guid(8a05a06174c07f9498df6bf45aa9ff15) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd2444860ce730d8b68fed86be88e3350') in 0.017840 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 1.622860 seconds. + path: Assets/ART/ui/texture/main/zhuye_1.png + artifactKey: Guid(3b2095f18bc1a074e9d53d415ed05a49) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye_1.png using Guid(3b2095f18bc1a074e9d53d415ed05a49) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3a2625bad5684418a03c08f526752d0c') in 0.036494 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.226589 seconds. + path: Assets/ART/ui/texture/main/zhuye80.png + artifactKey: Guid(874ef0b26abf204449727478c5295e70) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye80.png using Guid(874ef0b26abf204449727478c5295e70) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3770dda633761c71bdaf2f013ecd5dac') in 0.020908 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.144916 seconds. + path: Assets/ART/ui/texture/main/zhuye79.png + artifactKey: Guid(22fdb5eec022e454e83b0d3d9eb6e0c3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye79.png using Guid(22fdb5eec022e454e83b0d3d9eb6e0c3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f62df4d37c679bd267bfaecbd333727c') in 0.018460 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.321161 seconds. + path: Assets/ART/ui/texture/main/zhuye78.png + artifactKey: Guid(16dfda757f1af3348933c672821a1fa9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye78.png using Guid(16dfda757f1af3348933c672821a1fa9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '542dee4993d4365290fd676bc4d6bd62') in 0.019828 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.202427 seconds. + path: Assets/ART/ui/texture/main/zhuye77.png + artifactKey: Guid(f8e3b3dc7d07bf448ac4b1cdf8901e29) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye77.png using Guid(f8e3b3dc7d07bf448ac4b1cdf8901e29) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a6579a4be6b2d6387fcf2e5bca23b2c0') in 0.016152 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.257471 seconds. + path: Assets/ART/ui/texture/main/zhuye76.png + artifactKey: Guid(a5c950f17fcc5d544b3c3dc9ddaf111b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye76.png using Guid(a5c950f17fcc5d544b3c3dc9ddaf111b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8ed131e9c09fffa278a5dc54f83053fe') in 0.016497 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.165028 seconds. + path: Assets/ART/ui/texture/main/zhuye75.png + artifactKey: Guid(b6fdf72da3389554b868670f4bf5e276) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye75.png using Guid(b6fdf72da3389554b868670f4bf5e276) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a763d903c582e22c06cdeea6d6fa3bee') in 0.020348 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.218125 seconds. + path: Assets/ART/ui/texture/main/zhuye74.png + artifactKey: Guid(3e6f10b0c913d7247afc8308bcc37935) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye74.png using Guid(3e6f10b0c913d7247afc8308bcc37935) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dbbf56fcad1ad219af8df8f92a5d1e34') in 0.017083 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.175483 seconds. + path: Assets/ART/ui/texture/main/zhuye73.png + artifactKey: Guid(a7943f53e3a8eb74b91f68c6b9f37155) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye73.png using Guid(a7943f53e3a8eb74b91f68c6b9f37155) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '170c8079bf0bad11722a5ad145ac284b') in 0.018306 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.222571 seconds. + path: Assets/ART/ui/texture/main/zhuye72.png + artifactKey: Guid(5f6324decbce8c748a191dee8fe3c901) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye72.png using Guid(5f6324decbce8c748a191dee8fe3c901) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '485cad76f41ae36f3b1f3a7d2a86cd15') in 0.019714 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.270253 seconds. + path: Assets/ART/ui/texture/main/zhuye71.png + artifactKey: Guid(7d0856e541ea90a47a517031fc424b40) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye71.png using Guid(7d0856e541ea90a47a517031fc424b40) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '01b719d0bb967e4aeda68e50003d61d6') in 0.017495 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.141301 seconds. + path: Assets/ART/ui/texture/main/zhuye68.png + artifactKey: Guid(1f18c120e4434af42925f378d7a8378c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye68.png using Guid(1f18c120e4434af42925f378d7a8378c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b671f2f4475af8455bfc222f5e64a23e') in 0.015887 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.208567 seconds. + path: Assets/ART/ui/texture/main/zhuye67.png + artifactKey: Guid(490f144b5852b5942ab8a2283662a699) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye67.png using Guid(490f144b5852b5942ab8a2283662a699) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3f6eb32a467ed5614b8bd1da21c54ce0') in 0.027083 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.467817 seconds. + path: Assets/ART/ui/texture/main/zhuye66.png + artifactKey: Guid(faa209e52f127164b9d92039eafc43a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye66.png using Guid(faa209e52f127164b9d92039eafc43a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f85721a5e31c55aa42fade5ea214bd15') in 0.015145 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.246047 seconds. + path: Assets/ART/ui/texture/main/zhuye65.png + artifactKey: Guid(b8d0cc9c68fd0424487bccb83ab206d4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye65.png using Guid(b8d0cc9c68fd0424487bccb83ab206d4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '803ea58c27c33c206c2e8bf7a8824814') in 0.140146 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.223288 seconds. + path: Assets/ART/ui/texture/main/zhuye64.png + artifactKey: Guid(3da34555d7584f14fb09738a90fd23bb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye64.png using Guid(3da34555d7584f14fb09738a90fd23bb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e754018fba4dfc9b32dfe93b1a35180b') in 0.071436 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.010400 seconds. + path: Assets/ART/ui/texture/main/zhuye60.png + artifactKey: Guid(e6af7184d6eec2b4a88985205eaeee1d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye60.png using Guid(e6af7184d6eec2b4a88985205eaeee1d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8ce125e47cb1f7495311baa52b0326d5') in 0.050193 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.192850 seconds. + path: Assets/ART/ui/texture/main/zhuye59.png + artifactKey: Guid(b078b65de5b0de34d8e6824079503369) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye59.png using Guid(b078b65de5b0de34d8e6824079503369) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '95953a1854357bd426887aa7269612fe') in 0.020518 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.204794 seconds. + path: Assets/ART/ui/texture/main/zhuye58.png + artifactKey: Guid(137b163e90777264d902c94c09165936) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye58.png using Guid(137b163e90777264d902c94c09165936) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e22a31ae995d8078a392ee932ee69998') in 0.017960 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.154575 seconds. + path: Assets/ART/ui/texture/main/zhuye57.png + artifactKey: Guid(f3f17e28472833e4b98e05062edce26c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye57.png using Guid(f3f17e28472833e4b98e05062edce26c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f4ae351baf771da3ff2257705a4745ea') in 0.021063 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.226015 seconds. + path: Assets/ART/ui/texture/main/zhuye56.png + artifactKey: Guid(e55370d8e998bca498fbf86ff1017a0f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye56.png using Guid(e55370d8e998bca498fbf86ff1017a0f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '92d7146dd6a43a99541841b7dd51eeb7') in 0.030125 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.240360 seconds. + path: Assets/ART/ui/texture/main/zhuye55.png + artifactKey: Guid(0958e4ad2997f604da4eba789f725952) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye55.png using Guid(0958e4ad2997f604da4eba789f725952) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '478dfec8003dd44a024ad04e8b654b90') in 0.041593 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.153863 seconds. + path: Assets/ART/ui/texture/main/zhuye54.png + artifactKey: Guid(bfc7f6c6b26e2dc43abdbfdd5452956b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye54.png using Guid(bfc7f6c6b26e2dc43abdbfdd5452956b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0a818dbc48c41039c538fc5e34d3c11b') in 0.035760 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.197322 seconds. + path: Assets/ART/ui/texture/main/zhuye53.png + artifactKey: Guid(0e37f0db4926f53489904bed5f1596c7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye53.png using Guid(0e37f0db4926f53489904bed5f1596c7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '188e470a9d6c51ebc7f594dced76d4be') in 0.027300 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.171220 seconds. + path: Assets/ART/ui/texture/main/zhuye52.png + artifactKey: Guid(484eb8cc5e1b34a49846ea5ceedbd7bb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye52.png using Guid(484eb8cc5e1b34a49846ea5ceedbd7bb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a9e3fdc837805913b80e7412b0de6ea4') in 0.026316 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.204061 seconds. + path: Assets/ART/ui/texture/main/zhuye51.png + artifactKey: Guid(2137d252db851e54694856be51634de8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye51.png using Guid(2137d252db851e54694856be51634de8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8ac9d9ddda79d2d24f5c12a086466b0b') in 0.020741 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.211766 seconds. + path: Assets/ART/ui/texture/main/zhuye50.png + artifactKey: Guid(9b47f6a31c1cee24c972f0120c7f6ca6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye50.png using Guid(9b47f6a31c1cee24c972f0120c7f6ca6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7b90bd104868852715598b37f9540b2a') in 0.033483 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.267301 seconds. + path: Assets/ART/ui/texture/main/zhuye49.png + artifactKey: Guid(f866702ddb04221439620abab67f59ef) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye49.png using Guid(f866702ddb04221439620abab67f59ef) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '80d1c482612a28979c28a9a9631da918') in 0.030925 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.035914 seconds. + path: Assets/ART/ui/texture/main/zhuye48.png + artifactKey: Guid(b31c5b8da2089a74e8dc144c8a9a18aa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye48.png using Guid(b31c5b8da2089a74e8dc144c8a9a18aa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f380d6150f315eb6fa282f663a63920d') in 0.016045 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.188932 seconds. + path: Assets/ART/ui/texture/main/zhuye47.png + artifactKey: Guid(eec885d1d8546784a93b5cdb3cf58625) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye47.png using Guid(eec885d1d8546784a93b5cdb3cf58625) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6f98fa246c92f45a055936d09860ede0') in 0.017671 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.218789 seconds. + path: Assets/ART/ui/texture/main/zhuye46.png + artifactKey: Guid(1c3d3cac76e785144b1891a7367e5af7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye46.png using Guid(1c3d3cac76e785144b1891a7367e5af7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '859d5bb5c6ee3c0c1ec8cf62578d8186') in 0.021685 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.186653 seconds. + path: Assets/ART/ui/texture/main/zhuye45.png + artifactKey: Guid(18a8b2fd1d3c14f438075c093a96f920) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye45.png using Guid(18a8b2fd1d3c14f438075c093a96f920) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '50834bb30cfa5e7ab38eedaa22675336') in 0.050266 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.152148 seconds. + path: Assets/ART/ui/texture/main/zhuye44.png + artifactKey: Guid(e73892563f5d3e24eaaebf459ed97314) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye44.png using Guid(e73892563f5d3e24eaaebf459ed97314) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5c280375c383593ab80bef5ec44d1c9a') in 0.018548 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.320320 seconds. + path: Assets/ART/ui/texture/main/zhuye43.png + artifactKey: Guid(86ae6f148bf3e3b4e8327587e9129ab5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye43.png using Guid(86ae6f148bf3e3b4e8327587e9129ab5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9fc1316ec81e2971b826d468cf40eb67') in 0.018426 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.295023 seconds. + path: Assets/ART/ui/texture/main/zhuye42.png + artifactKey: Guid(22474225d5af91e419be9dc3617bef7b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye42.png using Guid(22474225d5af91e419be9dc3617bef7b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '29b38dd4094aab764daf0656ce75c388') in 0.048473 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.201090 seconds. + path: Assets/ART/ui/texture/main/zhuye41.png + artifactKey: Guid(efe26973b680bf441b1d9bfa7342039a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye41.png using Guid(efe26973b680bf441b1d9bfa7342039a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '95dca1055efead1d2f216194f7647de3') in 0.043903 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.151259 seconds. + path: Assets/ART/ui/texture/main/zhuye40.png + artifactKey: Guid(c37c4806c8c32064ebcaf7eb52758b6d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye40.png using Guid(c37c4806c8c32064ebcaf7eb52758b6d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3b40b2857b0d50a8b90e1fdaff93577d') in 0.017781 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 1.154709 seconds. + path: Assets/ART/ui/texture/main/zhuye38.png + artifactKey: Guid(a47db93cd16f641489b56738cf2f09e3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye38.png using Guid(a47db93cd16f641489b56738cf2f09e3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '935bf101e28ccd945e854466c3f234be') in 0.020429 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.133689 seconds. + path: Assets/ART/ui/texture/main/zhuye37.png + artifactKey: Guid(1076efdf396875048a4cb1c5d5ab163f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye37.png using Guid(1076efdf396875048a4cb1c5d5ab163f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '02cc458feb70c5ae592426317c6252c5') in 0.199945 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.206992 seconds. + path: Assets/ART/ui/texture/main/zhuye36.png + artifactKey: Guid(f1daf222fe9771b40b69e188931978a9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye36.png using Guid(f1daf222fe9771b40b69e188931978a9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8cdc266c6e7baf28911861476ca22e2e') in 0.023420 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.124828 seconds. + path: Assets/ART/ui/texture/main/zhuye35.png + artifactKey: Guid(37142b734037d43409e8dbd56a1fab80) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye35.png using Guid(37142b734037d43409e8dbd56a1fab80) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '26aa693c9ab99e1ce2134c43ec277d9a') in 0.019116 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.200810 seconds. + path: Assets/ART/ui/texture/main/zhuye34.png + artifactKey: Guid(94e7156a3b4bc1243b7423bb53ed61ce) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye34.png using Guid(94e7156a3b4bc1243b7423bb53ed61ce) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b3b298d7196b56f141cba1d6158df094') in 0.015528 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.340024 seconds. + path: Assets/ART/ui/texture/main/zhuye32.png + artifactKey: Guid(24cb5e2236d7ef943b45f7304842a861) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye32.png using Guid(24cb5e2236d7ef943b45f7304842a861) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3480898732ffdafec764dd5bf1689afc') in 0.016774 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.151705 seconds. + path: Assets/ART/ui/texture/main/zhuye31.png + artifactKey: Guid(d41d385b36d7cf8499460f2e7db209b8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye31.png using Guid(d41d385b36d7cf8499460f2e7db209b8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0279315f47b3e2c5b2b158b22c74e4b1') in 0.023892 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.201234 seconds. + path: Assets/ART/ui/texture/main/zhuye30.png + artifactKey: Guid(416fbfbb3e7f3e84b881730fa49c9423) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye30.png using Guid(416fbfbb3e7f3e84b881730fa49c9423) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f47b02b792b0bc1873ffc4bd9a170819') in 0.021583 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.450935 seconds. + path: Assets/ART/ui/texture/main/zhuye29.png + artifactKey: Guid(3bc39905bd91b0d469aac5d6c16cad5e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye29.png using Guid(3bc39905bd91b0d469aac5d6c16cad5e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b3c91c0676fc6c1e6243cf22cce2898d') in 0.085672 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.291160 seconds. + path: Assets/ART/ui/texture/main/zhuye28.png + artifactKey: Guid(b64c0e15ba19c0f4d9bcf0bd8329a640) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye28.png using Guid(b64c0e15ba19c0f4d9bcf0bd8329a640) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '348f23334639ee15d90c0d9c5ae0f117') in 0.026540 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.306954 seconds. + path: Assets/ART/ui/texture/main/zhuye27.png + artifactKey: Guid(24275d26f413cf740800e02b40f00081) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye27.png using Guid(24275d26f413cf740800e02b40f00081) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '41697ae97e1b24739850e7418803d41a') in 0.024107 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.326430 seconds. + path: Assets/ART/ui/texture/main/zhuye25.png + artifactKey: Guid(6abd0d062ca3435439ce19622b26466f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye25.png using Guid(6abd0d062ca3435439ce19622b26466f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e58d7b40b05bec638774a578d0c4ce73') in 0.016332 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.341653 seconds. + path: Assets/ART/ui/texture/main/zhuye24.png + artifactKey: Guid(d549fe082d5fa8949a9c19bd98822c1d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye24.png using Guid(d549fe082d5fa8949a9c19bd98822c1d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c56137c5e3250ec2440d03eca3815c3e') in 0.016200 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.407523 seconds. + path: Assets/ART/ui/texture/main/zhuye23.png + artifactKey: Guid(d72c9bbe33215bb409623ef2e28ba91b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye23.png using Guid(d72c9bbe33215bb409623ef2e28ba91b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ac8fd8ac6eddeb710d88094cda8c1d63') in 0.017604 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.342895 seconds. + path: Assets/ART/ui/texture/main/zhuye22.png + artifactKey: Guid(2f8a591a3989cf943ab6474894065f21) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye22.png using Guid(2f8a591a3989cf943ab6474894065f21) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '24c237e7476eb091f5c3d436defe68c7') in 0.015548 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.345337 seconds. + path: Assets/ART/ui/texture/main/zhuye21.png + artifactKey: Guid(5bee1dc8d72e1834eb7955e514c0d1a7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye21.png using Guid(5bee1dc8d72e1834eb7955e514c0d1a7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c2233b507536305c9d352332aea810c8') in 0.017659 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.330501 seconds. + path: Assets/ART/ui/texture/main/zhuye20.png + artifactKey: Guid(9a0bdb79b3ff72c498a2733791f84271) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye20.png using Guid(9a0bdb79b3ff72c498a2733791f84271) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b054477d1a67dda41aa5fad167a60d5d') in 0.018313 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.323461 seconds. + path: Assets/ART/ui/texture/main/zhuye15.png + artifactKey: Guid(77c02ec5fc98a4748aecee5334cf339d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye15.png using Guid(77c02ec5fc98a4748aecee5334cf339d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '29532944c8decf1ec8e0e81630ddbbc6') in 0.021009 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.240420 seconds. + path: Assets/ART/ui/texture/main/zhuye14.png + artifactKey: Guid(9834971a35a983542bb4572a659592d9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye14.png using Guid(9834971a35a983542bb4572a659592d9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2d69adf17059fa9b0c8fe9611d6e3a75') in 0.019337 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.102808 seconds. + path: Assets/ART/ui/texture/main/zhuye13.png + artifactKey: Guid(358be2eb0da8b5c489b492d47b061385) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye13.png using Guid(358be2eb0da8b5c489b492d47b061385) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b9c70cf02c98f18cffa709f20a35c0bc') in 0.018792 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.436063 seconds. + path: Assets/ART/ui/texture/main/zhuye10.png + artifactKey: Guid(6a8967c71c479484cacb196e444240a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye10.png using Guid(6a8967c71c479484cacb196e444240a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0a2327b2f0df38324312c5c82b1d1631') in 0.017799 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.265036 seconds. + path: Assets/ART/ui/texture/main/zhuye9.png + artifactKey: Guid(8f563b0adb4729d4f826e2abc57b7a86) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye9.png using Guid(8f563b0adb4729d4f826e2abc57b7a86) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '171eb8331c347af24bdcce06c8c0ceb7') in 0.017549 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.370375 seconds. + path: Assets/ART/ui/texture/main/zhuye8.png + artifactKey: Guid(4385f3cd383723344b8cbc232fd041e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye8.png using Guid(4385f3cd383723344b8cbc232fd041e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f0344c9a61b0af61859dbaebe6fa005b') in 0.026731 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.148202 seconds. + path: Assets/ART/ui/texture/main/zhuye7.png + artifactKey: Guid(7b1fdaa6e0582084d9bb8e539fcfb977) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye7.png using Guid(7b1fdaa6e0582084d9bb8e539fcfb977) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6ba0e5b372f1a86b7c44373f3b2ebc12') in 0.026652 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.154303 seconds. + path: Assets/ART/ui/texture/main/zhuye6.png + artifactKey: Guid(f7c3ce2a056e8bf40a9dd976bcb7056f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye6.png using Guid(f7c3ce2a056e8bf40a9dd976bcb7056f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4766fd4cdbc8d771020d598424cc8aac') in 0.026833 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.364949 seconds. + path: Assets/ART/ui/texture/main/zhuye5.png + artifactKey: Guid(a107141b9f1d4fc44846c383088a9e88) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye5.png using Guid(a107141b9f1d4fc44846c383088a9e88) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e3c9706d878682414f212bb8d6749054') in 0.026486 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.049138 seconds. + path: Assets/ART/ui/texture/main/zhuye4.png + artifactKey: Guid(532e22df32352ee44844e272607bf900) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye4.png using Guid(532e22df32352ee44844e272607bf900) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4b2a5d5c8a0a2ab6f0e079d7e5cab5d0') in 0.022886 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.120195 seconds. + path: Assets/ART/ui/texture/main/zhuye3.png + artifactKey: Guid(728c36eaa0d22c94097a8dc3df2aaa0b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye3.png using Guid(728c36eaa0d22c94097a8dc3df2aaa0b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9a35ed32fda73fa5a3229ada1016c34b') in 0.030071 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.162691 seconds. + path: Assets/ART/ui/texture/main/zhuye2.png + artifactKey: Guid(f2508f94e248c3f4b9521d53eb542cd3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/zhuye2.png using Guid(f2508f94e248c3f4b9521d53eb542cd3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '191f33be4207fc1f08318a2d0a3810a6') in 0.041001 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.386525 seconds. + path: Assets/ART/ui/texture/main/yijianfankui.png + artifactKey: Guid(9fba5db62c5bf8c4e91cc71cdf4d0fef) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/yijianfankui.png using Guid(9fba5db62c5bf8c4e91cc71cdf4d0fef) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c3bad431fb30647a45e2c6a1d95209f4') in 0.025688 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.597820 seconds. + path: Assets/ART/ui/texture/main/Vector.png + artifactKey: Guid(91da4cca37e1c2c43bce6fc27be4f5b6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/Vector.png using Guid(91da4cca37e1c2c43bce6fc27be4f5b6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c6279640180dd79c6bc82a1f5e2c6cd3') in 0.016814 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.398627 seconds. + path: Assets/ART/ui/texture/main/Vector-2.png + artifactKey: Guid(6c2879a0cdfd4b849a6fa1e8c1824e00) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/Vector-2.png using Guid(6c2879a0cdfd4b849a6fa1e8c1824e00) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bae315c2b95b41e2cb6d6c03aeb073f8') in 0.016339 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.369367 seconds. + path: Assets/ART/ui/texture/main/unit008.png + artifactKey: Guid(aff869540442cbb44b7d3d88cab44628) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/unit008.png using Guid(aff869540442cbb44b7d3d88cab44628) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c8606ac1699d1459b18cdb7d89d3a13a') in 0.066840 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.468822 seconds. + path: Assets/ART/ui/texture/main/unit007.png + artifactKey: Guid(a3fd06324bffc914783da5da83fb4f1a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/unit007.png using Guid(a3fd06324bffc914783da5da83fb4f1a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ab35c2bbb56bee841cb33fcf85cda9cc') in 0.022936 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.359619 seconds. + path: Assets/ART/ui/texture/main/unit006.png + artifactKey: Guid(dac3377ce035c4547bfd0db85e15a7d6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/unit006.png using Guid(dac3377ce035c4547bfd0db85e15a7d6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9290d6243dac6930579d72c95cbf4403') in 0.020046 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.445571 seconds. + path: Assets/ART/ui/texture/main/unit005.png + artifactKey: Guid(de2320f8a5d75db4491642cf8f4b0dbd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/unit005.png using Guid(de2320f8a5d75db4491642cf8f4b0dbd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ae565a0c4c19ad1bc8d6ac222abcc3a2') in 0.019598 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.381202 seconds. + path: Assets/ART/ui/texture/main/unit004.png + artifactKey: Guid(91dcb42d5a73d5b4ca62e8a132d5bd51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/unit004.png using Guid(91dcb42d5a73d5b4ca62e8a132d5bd51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6b03e1ec2df3b539085a12c09664d5eb') in 0.019692 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.366934 seconds. + path: Assets/ART/ui/texture/main/unit003.png + artifactKey: Guid(5eacc812f2b6d5243ac3cefdb09d2a69) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/unit003.png using Guid(5eacc812f2b6d5243ac3cefdb09d2a69) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0aa6c281062a63f4dc0c193dea5def0b') in 0.022617 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.415943 seconds. + path: Assets/ART/ui/texture/main/unit002.png + artifactKey: Guid(c33b1827aec1b91439fbc1a0d2516286) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/unit002.png using Guid(c33b1827aec1b91439fbc1a0d2516286) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ee6a1ea5189f07f3cbc977a27e9aa01c') in 0.021389 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.366850 seconds. + path: Assets/ART/ui/texture/main/unit001.png + artifactKey: Guid(f2f8f8598a08f6d4c8c280ded8ef2ca6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/unit001.png using Guid(f2f8f8598a08f6d4c8c280ded8ef2ca6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9a7c36a00b7ff68691e4518fdb605653') in 0.068541 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.184606 seconds. + path: Assets/ART/ui/texture/main/Subtract.png + artifactKey: Guid(e1d2942520464c442a485f7b37ed72ec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/Subtract.png using Guid(e1d2942520464c442a485f7b37ed72ec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a554934e3e9895c04369ab645e258610') in 0.017792 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.192935 seconds. + path: Assets/ART/ui/texture/main/shujuzj_13.png + artifactKey: Guid(7062eda03f9813445b9e4c22a11ebc0c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/shujuzj_13.png using Guid(7062eda03f9813445b9e4c22a11ebc0c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a3a9e9a31c769607e58840aa142fe3fd') in 0.016597 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.179066 seconds. + path: Assets/ART/ui/texture/main/shujuzj_12.png + artifactKey: Guid(82a57a00dbefb6a4a8c01dfc75c4cc4b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/shujuzj_12.png using Guid(82a57a00dbefb6a4a8c01dfc75c4cc4b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1ba3ac0bee2a47cb48e67224089c67e4') in 0.017271 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.370380 seconds. + path: Assets/ART/ui/texture/main/shujuzj_11.png + artifactKey: Guid(aa9a563caf74f0f438b30847d56e2e22) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/shujuzj_11.png using Guid(aa9a563caf74f0f438b30847d56e2e22) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0c97fddef60a8cb6da5de4e95360a8f9') in 0.014941 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.568654 seconds. + path: Assets/ART/ui/texture/main/shujuzj_10.png + artifactKey: Guid(e3fcafcbbc450d14a81ca921efefa0f6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/shujuzj_10.png using Guid(e3fcafcbbc450d14a81ca921efefa0f6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ea06e95476a1c3f4b698129e458b6ba6') in 0.022495 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.351928 seconds. + path: Assets/ART/ui/texture/main/shujuzj_9.png + artifactKey: Guid(e5b7e7a3fbc54c844869feee1177723c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/shujuzj_9.png using Guid(e5b7e7a3fbc54c844869feee1177723c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '35c79d571f0cd7f0911a8f4c85c97807') in 0.021160 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.383446 seconds. + path: Assets/ART/ui/texture/main/shujuzj_8.png + artifactKey: Guid(9f951c000da06a34ca3ae6c6318fafe6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/shujuzj_8.png using Guid(9f951c000da06a34ca3ae6c6318fafe6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a2e369955f6f7dec4c784812634e85c1') in 0.046604 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.399548 seconds. + path: Assets/ART/ui/texture/main/shujuzj_7.png + artifactKey: Guid(51ccffe6be3d62d49a8500152a594762) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/shujuzj_7.png using Guid(51ccffe6be3d62d49a8500152a594762) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cdc70ff58bed815ab8b7261edde4648e') in 0.017552 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.248755 seconds. + path: Assets/ART/ui/texture/main/shujuzj_6.png + artifactKey: Guid(c4a8e41cad83b9244b3aa9221006aa41) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/shujuzj_6.png using Guid(c4a8e41cad83b9244b3aa9221006aa41) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '74db3f11e6f746c6d2b727d70a632142') in 0.016220 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.431173 seconds. + path: Assets/ART/ui/texture/main/shujuzj_5.png + artifactKey: Guid(726ccdc9a7325f5428902c4a6551da46) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/shujuzj_5.png using Guid(726ccdc9a7325f5428902c4a6551da46) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6cfe684718b39e5b15c666f4fc6c3657') in 0.019084 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.185304 seconds. + path: Assets/ART/ui/texture/main/shujuzj_4.png + artifactKey: Guid(007269f4877297546b62c92ef248c891) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/shujuzj_4.png using Guid(007269f4877297546b62c92ef248c891) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f28ff5cf30fce43105718ac1cce6ed5d') in 0.017426 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.189921 seconds. + path: Assets/ART/ui/texture/main/shujuzj_3.png + artifactKey: Guid(1164021ada1cb1040b431eb0e7e8c13d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/shujuzj_3.png using Guid(1164021ada1cb1040b431eb0e7e8c13d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cbf552826be70d2ebe71ecff2a45fc7b') in 0.025758 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.425509 seconds. + path: Assets/ART/ui/texture/main/shujuzj_2.png + artifactKey: Guid(ed7a231e4dd32024f924b5a48d59e38a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/shujuzj_2.png using Guid(ed7a231e4dd32024f924b5a48d59e38a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4762779c314d5b62e630c78cf21afa94') in 0.076223 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.307499 seconds. + path: Assets/ART/ui/texture/main/shujuzj_1.png + artifactKey: Guid(be7f9a94cac6cde4baf4bb9e16197ad3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/shujuzj_1.png using Guid(be7f9a94cac6cde4baf4bb9e16197ad3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0ea545a3e33881dc2ef4adf8174bac6b') in 0.056475 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.380851 seconds. + path: Assets/ART/ui/texture/main/shezhi_11.png + artifactKey: Guid(83b48455d23879d40bd14301044a75a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/shezhi_11.png using Guid(83b48455d23879d40bd14301044a75a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '24916d86c38e492fd4106146b4183aaa') in 0.018895 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.386870 seconds. + path: Assets/ART/ui/texture/main/shezhi_10.png + artifactKey: Guid(996e827598bfa2c4b8e2284d29aa086e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/shezhi_10.png using Guid(996e827598bfa2c4b8e2284d29aa086e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8527ae34c38575fc087c727723089887') in 0.016309 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.208000 seconds. + path: Assets/ART/ui/texture/main/setting_001.png + artifactKey: Guid(da4f0bbc391f2f348ae6c83b8f1e5034) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/setting_001.png using Guid(da4f0bbc391f2f348ae6c83b8f1e5034) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2fe6b7ac989d09311f35482dd4bbb161') in 0.033113 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.114006 seconds. + path: Assets/ART/ui/texture/main/saixuan_1.png + artifactKey: Guid(2138d6a153f04934282a253f68bc7136) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/saixuan_1.png using Guid(2138d6a153f04934282a253f68bc7136) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '44ac25a10b9eeefbb2f4f3dd9b769d10') in 0.117274 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.119126 seconds. + path: Assets/ART/ui/texture/main/saixuan14.png + artifactKey: Guid(b86c32e52b2942f4e9b404e849717505) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/saixuan14.png using Guid(b86c32e52b2942f4e9b404e849717505) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e7558f169c5238287aa2862f86bc3f98') in 0.039828 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.716768 seconds. + path: Assets/ART/ui/texture/main/saixuan13.png + artifactKey: Guid(31c090527526cb24e99a5d8a2c2e4394) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/saixuan13.png using Guid(31c090527526cb24e99a5d8a2c2e4394) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a2f280cfffed8c98423055282c11c983') in 0.034179 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.197130 seconds. + path: Assets/ART/ui/texture/main/saixuan12.png + artifactKey: Guid(4c35ddea59826f24a8c1f669dbeed56a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/saixuan12.png using Guid(4c35ddea59826f24a8c1f669dbeed56a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '26cef8f3e27c0f7522ff037630310afe') in 0.028140 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.387018 seconds. + path: Assets/ART/ui/texture/main/saixuan11.png + artifactKey: Guid(bb2515b42dc4cea459d01cb82e88c608) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/saixuan11.png using Guid(bb2515b42dc4cea459d01cb82e88c608) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '556f25a4739bf82644f6f9463d5f50b8') in 0.018669 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.425501 seconds. + path: Assets/ART/ui/texture/main/saixuan10.png + artifactKey: Guid(7f887fa943fae554697d6a220354e0de) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/saixuan10.png using Guid(7f887fa943fae554697d6a220354e0de) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f953542a42856c1c77eb8811b2758fde') in 0.137935 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.237377 seconds. + path: Assets/ART/ui/texture/main/saixuan9.png + artifactKey: Guid(f433efacce7219541a63730961433964) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/saixuan9.png using Guid(f433efacce7219541a63730961433964) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9eefd61b377bc44b36ab431e4960c8f0') in 0.016151 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.239947 seconds. + path: Assets/ART/ui/texture/main/saixuan8.png + artifactKey: Guid(042e53f7bd342284e99a5f161d32103b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/saixuan8.png using Guid(042e53f7bd342284e99a5f161d32103b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1d3202ed966c86aec204278ff38c1abf') in 0.019609 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 132.000477 seconds. + path: Assets/ART/base/prefab/ViewFilter.prefab + artifactKey: Guid(395c889d500a77847af945ea7e9607f2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/base/prefab/ViewFilter.prefab using Guid(395c889d500a77847af945ea7e9607f2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c749115cb81fc2d381244172b2b2c398') in 0.007256 seconds +Number of asset objects unloaded after import = 107 +======================================================================== +Received Import Request. + Time since last request: 118.454870 seconds. + path: Assets/ART/ui/texture/main/filter002.png + artifactKey: Guid(0007404bf4e514542b87dfdb588ca6d8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/filter002.png using Guid(0007404bf4e514542b87dfdb588ca6d8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5ab61813c25c3799b5bbb07087c3e3b3') in 0.017141 seconds +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 0.637922 seconds. + path: Assets/ART/ui/texture/main/filter003.png + artifactKey: Guid(8d1738f70bfc916468250e798e3fdf07) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/filter003.png using Guid(8d1738f70bfc916468250e798e3fdf07) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd5379ff96f569268ce7b1d8c8a0d7f1e') in 0.014826 seconds +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 1.260924 seconds. + path: Assets/ART/ui/texture/main/Filter001.png + artifactKey: Guid(dacc5ee58693bf5469860b3c79c65675) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/Filter001.png using Guid(dacc5ee58693bf5469860b3c79c65675) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b4ce91388632f92b6d3414e3eb91e91e') in 0.014870 seconds +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 3.905200 seconds. + path: Assets/ART/ui/texture/main/Filter001.png + artifactKey: Guid(dacc5ee58693bf5469860b3c79c65675) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/Filter001.png using Guid(dacc5ee58693bf5469860b3c79c65675) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'de15d86212e55ba188ac5e537dadb27c') in 0.019985 seconds +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 1.348971 seconds. + path: Assets/ART/ui/texture/main/filter003.png + artifactKey: Guid(8d1738f70bfc916468250e798e3fdf07) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/main/filter003.png using Guid(8d1738f70bfc916468250e798e3fdf07) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '24383c02f519bd27ec3254589a2ca3c8') in 0.018563 seconds +Number of asset objects unloaded after import = 3 +======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.005019 seconds. +Registered in 0.005452 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.83 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.548 seconds +Domain Reload Profiling: + ReloadAssembly (1549ms) + BeginReloadAssembly (144ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1313ms) + LoadAssemblies (98ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (244ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (901ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (682ms) + ProcessInitializeOnLoadMethodAttributes (128ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 101 unused Assets / (27.4 KB). Loaded Objects now: 3481. +Memory consumption went from 105.4 MB to 105.3 MB. +Total: 6.875600 ms (FindLiveObjects: 0.259800 ms CreateObjectMapping: 0.140700 ms MarkObjects: 6.404400 ms DeleteObjects: 0.069300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 1022.216193 seconds. + path: Assets/ART/base/prefab/ViewFilter.prefab + artifactKey: Guid(395c889d500a77847af945ea7e9607f2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/base/prefab/ViewFilter.prefab using Guid(395c889d500a77847af945ea7e9607f2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '512313223a773a07f1ac2beb0e6c83cc') in 0.038599 seconds +Number of asset objects unloaded after import = 127 +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005056 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory is not a mono symbol file Native extension for WindowsStandalone target not found @@ -773,288 +2751,40 @@ Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] Cannot connect to Unity Package Manager local server Mono: successfully reloaded assembly -- Completed reload, in 1.521 seconds +- Completed reload, in 1.628 seconds Domain Reload Profiling: - ReloadAssembly (1521ms) - BeginReloadAssembly (141ms) + ReloadAssembly (1629ms) + BeginReloadAssembly (159ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) + DisableScriptedObjects (8ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (34ms) - EndReloadAssembly (1288ms) - LoadAssemblies (99ms) + CreateAndSetChildDomain (44ms) + EndReloadAssembly (1371ms) + LoadAssemblies (108ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (213ms) + SetupTypeCache (265ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (909ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (923ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (1ms) + InitializePlatformSupportModulesInManaged (33ms) + SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (54ms) - ProcessInitializeOnLoadAttributes (701ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (694ms) ProcessInitializeOnLoadMethodAttributes (128ms) AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (7ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.2 KB). Loaded Objects now: 3057. -Memory consumption went from 100.1 MB to 100.0 MB. -Total: 6.242300 ms (FindLiveObjects: 0.215100 ms CreateObjectMapping: 0.136000 ms MarkObjects: 5.849400 ms DeleteObjects: 0.040500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005139 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.523 seconds -Domain Reload Profiling: - ReloadAssembly (1524ms) - BeginReloadAssembly (145ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (35ms) - EndReloadAssembly (1287ms) - LoadAssemblies (100ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (210ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (45ms) - SetupLoadedEditorAssemblies (915ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (59ms) - ProcessInitializeOnLoadAttributes (701ms) - ProcessInitializeOnLoadMethodAttributes (127ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3060. -Memory consumption went from 100.1 MB to 100.0 MB. -Total: 6.657500 ms (FindLiveObjects: 0.220000 ms CreateObjectMapping: 0.149700 ms MarkObjects: 6.242100 ms DeleteObjects: 0.044400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005208 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.481 seconds -Domain Reload Profiling: - ReloadAssembly (1482ms) - BeginReloadAssembly (138ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (34ms) - EndReloadAssembly (1256ms) - LoadAssemblies (96ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (200ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (901ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (53ms) - ProcessInitializeOnLoadAttributes (698ms) - ProcessInitializeOnLoadMethodAttributes (125ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.05 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3063. -Memory consumption went from 100.1 MB to 100.0 MB. -Total: 6.492500 ms (FindLiveObjects: 0.207200 ms CreateObjectMapping: 0.143200 ms MarkObjects: 6.102800 ms DeleteObjects: 0.038300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005228 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.554 seconds -Domain Reload Profiling: - ReloadAssembly (1555ms) - BeginReloadAssembly (144ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (35ms) - EndReloadAssembly (1318ms) - LoadAssemblies (101ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (225ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (49ms) - SetupLoadedEditorAssemblies (925ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (58ms) - ProcessInitializeOnLoadAttributes (708ms) - ProcessInitializeOnLoadMethodAttributes (130ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3066. -Memory consumption went from 100.1 MB to 100.1 MB. -Total: 6.658800 ms (FindLiveObjects: 0.212500 ms CreateObjectMapping: 0.123800 ms MarkObjects: 6.270200 ms DeleteObjects: 0.051200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005045 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.471 seconds -Domain Reload Profiling: - ReloadAssembly (1471ms) - BeginReloadAssembly (136ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (33ms) - EndReloadAssembly (1247ms) - LoadAssemblies (93ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (199ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (892ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (52ms) - ProcessInitializeOnLoadAttributes (691ms) - ProcessInitializeOnLoadMethodAttributes (122ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.06 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3069. -Memory consumption went from 100.1 MB to 100.1 MB. -Total: 6.519700 ms (FindLiveObjects: 0.202400 ms CreateObjectMapping: 0.111400 ms MarkObjects: 6.167300 ms DeleteObjects: 0.037800 ms) +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 101 unused Assets / (27.4 KB). Loaded Objects now: 3484. +Memory consumption went from 105.4 MB to 105.3 MB. +Total: 6.719400 ms (FindLiveObjects: 0.239600 ms CreateObjectMapping: 0.144300 ms MarkObjects: 6.274900 ms DeleteObjects: 0.059400 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -1071,799 +2801,97 @@ AssetImportParameters requested are different than current active one (requested custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - Time since last request: 1345.842815 seconds. - path: Assets/ART/base/lobby/lobby - artifactKey: Guid(dbdc7b99fd32e024a8f078b75f6735fb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) + Time since last request: 758.255509 seconds. + path: Assets/ART/base/lobby/lobby/Unit + artifactKey: Guid(ea51e2edffd1b764f8e14f9b63a02a53) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Number of updated assets reloaded before import = 0 -Start importing Assets/ART/base/lobby/lobby using Guid(dbdc7b99fd32e024a8f078b75f6735fb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b7c77f37366fb640edd542fcc7b33393') in 0.017754 seconds +Start importing Assets/ART/base/lobby/lobby/Unit using Guid(ea51e2edffd1b764f8e14f9b63a02a53) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '157d3900f40bfb77accf74e0d327af47') in 0.021332 seconds Number of asset objects unloaded after import = 0 ======================================================================== Received Import Request. - Time since last request: 1.219530 seconds. - path: Assets/ART/base/lobby/lobby/lobbyHome.prefab - artifactKey: Guid(5a943469abb94f94fa1f6fac4a63c8f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) + Time since last request: 0.944001 seconds. + path: Assets/ART/base/lobby/lobby/Unit/unitJoinNone.prefab + artifactKey: Guid(25b9fc77e6fff824ca020ad62fd287a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Number of updated assets reloaded before import = 0 -Start importing Assets/ART/base/lobby/lobby/lobbyHome.prefab using Guid(5a943469abb94f94fa1f6fac4a63c8f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '87470e1ef1835d5f95c3fbdf9f13d44c') in 0.051595 seconds -Number of asset objects unloaded after import = 157 -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005497 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.26 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.476 seconds -Domain Reload Profiling: - ReloadAssembly (1477ms) - BeginReloadAssembly (144ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (37ms) - EndReloadAssembly (1244ms) - LoadAssemblies (98ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (206ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (879ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (56ms) - ProcessInitializeOnLoadAttributes (670ms) - ProcessInitializeOnLoadMethodAttributes (127ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.06 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 101 unused Assets / (27.4 KB). Loaded Objects now: 3075. -Memory consumption went from 100.2 MB to 100.2 MB. -Total: 6.451100 ms (FindLiveObjects: 0.209900 ms CreateObjectMapping: 0.123100 ms MarkObjects: 6.066500 ms DeleteObjects: 0.050500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005321 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.554 seconds -Domain Reload Profiling: - ReloadAssembly (1555ms) - BeginReloadAssembly (149ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (37ms) - EndReloadAssembly (1309ms) - LoadAssemblies (103ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (229ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (47ms) - SetupLoadedEditorAssemblies (908ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (25ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (58ms) - ProcessInitializeOnLoadAttributes (686ms) - ProcessInitializeOnLoadMethodAttributes (134ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3078. -Memory consumption went from 100.2 MB to 100.2 MB. -Total: 6.931500 ms (FindLiveObjects: 0.215700 ms CreateObjectMapping: 0.135200 ms MarkObjects: 6.528900 ms DeleteObjects: 0.050100 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005339 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.518 seconds -Domain Reload Profiling: - ReloadAssembly (1519ms) - BeginReloadAssembly (147ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - EndReloadAssembly (1269ms) - LoadAssemblies (103ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (228ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (876ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (53ms) - ProcessInitializeOnLoadAttributes (669ms) - ProcessInitializeOnLoadMethodAttributes (126ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3081. -Memory consumption went from 100.2 MB to 100.2 MB. -Total: 6.405600 ms (FindLiveObjects: 0.208600 ms CreateObjectMapping: 0.123200 ms MarkObjects: 6.035300 ms DeleteObjects: 0.037800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +Start importing Assets/ART/base/lobby/lobby/Unit/unitJoinNone.prefab using Guid(25b9fc77e6fff824ca020ad62fd287a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '98945fe47724b5f346d32108c5f302a8') in 0.045317 seconds +Number of asset objects unloaded after import = 68 ======================================================================== Received Import Request. - Time since last request: 1724.454346 seconds. - path: Assets/ART/ui/texture/animation - artifactKey: Guid(9d2076bd2222bc74b9de8d6139479b2c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) + Time since last request: 0.479968 seconds. + path: Assets/ART/base/lobby/lobby/Unit/unitJoin.prefab + artifactKey: Guid(cad44be611c9a2543bd4c59655b9e5bc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Number of updated assets reloaded before import = 0 -Start importing Assets/ART/ui/texture/animation using Guid(9d2076bd2222bc74b9de8d6139479b2c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b12f7288fdc6abe2c60f436fc813cfcd') in 0.020886 seconds -Number of asset objects unloaded after import = 0 +Start importing Assets/ART/base/lobby/lobby/Unit/unitJoin.prefab using Guid(cad44be611c9a2543bd4c59655b9e5bc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '44ceb7f77eef0be0ee87358c0918364c') in 0.015574 seconds +Number of asset objects unloaded after import = 62 ======================================================================== Received Import Request. - Time since last request: 2.371214 seconds. - path: Assets/ART/ui/texture/animation/cardinformation.txt - artifactKey: Guid(9641dccae295aa744a2b44281a8208e8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) + Time since last request: 0.800179 seconds. + path: Assets/ART/base/lobby/lobby/Unit/unitJoinTable.prefab + artifactKey: Guid(fab4da13989fdfa4ea8f3dce81b95b84) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Number of updated assets reloaded before import = 0 -Start importing Assets/ART/ui/texture/animation/cardinformation.txt using Guid(9641dccae295aa744a2b44281a8208e8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7563fe27e9aa8dddd35aa259a6e27a2b') in 0.057818 seconds -Number of asset objects unloaded after import = 1 +Start importing Assets/ART/base/lobby/lobby/Unit/unitJoinTable.prefab using Guid(fab4da13989fdfa4ea8f3dce81b95b84) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2d4b71b4c6e0234309494100e6d77bd0') in 0.014391 seconds +Number of asset objects unloaded after import = 48 ======================================================================== Received Import Request. - Time since last request: 87.520924 seconds. - path: Assets/ART/ui/texture/animation/btnShow.anim - artifactKey: Guid(e5b174e4b97b7de49a2dca456c97c959) Importer(815301076,1909f56bfc062723c751e8b465ee728b) + Time since last request: 0.391559 seconds. + path: Assets/ART/base/lobby/lobby/Unit/unitList.prefab + artifactKey: Guid(92858ce573c311a42b3f00c1588e4c10) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Number of updated assets reloaded before import = 0 -Start importing Assets/ART/ui/texture/animation/btnShow.anim using Guid(e5b174e4b97b7de49a2dca456c97c959) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5dc21462f213e61a119e7e1b9f863d26') in 0.012899 seconds -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 10.122127 seconds. - path: Assets/ART/ui/texture/animation/btnImage.anim - artifactKey: Guid(e5b174e4b97b7de49a2dca456c97c959) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/ART/ui/texture/animation/btnImage.anim using Guid(e5b174e4b97b7de49a2dca456c97c959) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a3e8ce1861177090d0932b6a1ae6f4a8') in 0.009789 seconds -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 28.176298 seconds. - path: Assets/ART/ui/texture/animation/btnImageOpen.anim - artifactKey: Guid(e5b174e4b97b7de49a2dca456c97c959) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/ART/ui/texture/animation/btnImageOpen.anim using Guid(e5b174e4b97b7de49a2dca456c97c959) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8f9530feb7fa3cf9fda52d2b09bd9b78') in 0.009920 seconds -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 19.831096 seconds. - path: Assets/ART/ui/texture/animation/btnImageOpen 1.anim - artifactKey: Guid(0e69b995bd50e0f4aa9d3a610c8224ca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/ART/ui/texture/animation/btnImageOpen 1.anim using Guid(0e69b995bd50e0f4aa9d3a610c8224ca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9da14195e7248c5e6be7ee647b9d9f01') in 0.009998 seconds -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 5.483606 seconds. - path: Assets/ART/ui/texture/animation/btnImageClose.anim - artifactKey: Guid(0e69b995bd50e0f4aa9d3a610c8224ca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/ART/ui/texture/animation/btnImageClose.anim using Guid(0e69b995bd50e0f4aa9d3a610c8224ca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '94c1ed490c7d8474723447104225e69f') in 0.010723 seconds -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 11.622440 seconds. - path: Assets/ART/ui/texture/animation/btnImageOpen.anim - artifactKey: Guid(e5b174e4b97b7de49a2dca456c97c959) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/ART/ui/texture/animation/btnImageOpen.anim using Guid(e5b174e4b97b7de49a2dca456c97c959) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '24e4107629ef5ae8a253c49724a36f96') in 0.003254 seconds -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 1.005403 seconds. - path: Assets/ART/ui/texture/animation/btnImageOpen 1.anim - artifactKey: Guid(a17d243b435f85449aa8fa1ae1154eca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/ART/ui/texture/animation/btnImageOpen 1.anim using Guid(a17d243b435f85449aa8fa1ae1154eca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd46c5e2f03594265f934ac71dcf1b5eb') in 0.002425 seconds -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 4.783652 seconds. - path: Assets/ART/ui/texture/animation/btnImageStop.anim - artifactKey: Guid(a17d243b435f85449aa8fa1ae1154eca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/ART/ui/texture/animation/btnImageStop.anim using Guid(a17d243b435f85449aa8fa1ae1154eca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '98944893cd1e1202e6c012c3478b4702') in 0.009635 seconds -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 7.375401 seconds. - path: Assets/ART/ui/texture/animation/btnImageStop.anim - artifactKey: Guid(a17d243b435f85449aa8fa1ae1154eca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/ART/ui/texture/animation/btnImageStop.anim using Guid(a17d243b435f85449aa8fa1ae1154eca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bec89c9547fb1c0f78c7b09cbdc59682') in 0.002969 seconds -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 2.813095 seconds. - path: Assets/ART/ui/texture/animation/btnImageClose.anim - artifactKey: Guid(0e69b995bd50e0f4aa9d3a610c8224ca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/ART/ui/texture/animation/btnImageClose.anim using Guid(0e69b995bd50e0f4aa9d3a610c8224ca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fd8bd25013dc39a60b4151e22fd458c3') in 0.003041 seconds -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 17.296425 seconds. - path: Assets/ART/ui/texture/animation/btnImage.controller - artifactKey: Guid(981a69e23d26fde428f70211d6babd0e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/ART/ui/texture/animation/btnImage.controller using Guid(981a69e23d26fde428f70211d6babd0e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '56164089457d1e2d44c0dfcbe294abd8') in 0.005475 seconds -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 56.033901 seconds. - path: Assets/ART/ui/texture/animation/btnImage.controller - artifactKey: Guid(981a69e23d26fde428f70211d6babd0e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/ART/ui/texture/animation/btnImage.controller using Guid(981a69e23d26fde428f70211d6babd0e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c63c7fb655f088f477747ba89536f50e') in 0.003820 seconds -Number of asset objects unloaded after import = 8 -======================================================================== -Received Import Request. - Time since last request: 231.713743 seconds. - path: Assets/ART/base/prefab/ViewFilter.prefab - artifactKey: Guid(395c889d500a77847af945ea7e9607f2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/ART/base/prefab/ViewFilter.prefab using Guid(395c889d500a77847af945ea7e9607f2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c5d0b44f7ebd58d93bcecaee54e1c8fc') in 0.099902 seconds -Number of asset objects unloaded after import = 103 -======================================================================== -Received Import Request. - Time since last request: 234.031446 seconds. - path: Assets/ART/ui/texture/animation/login_btnopen.anim - artifactKey: Guid(cfec0b88445a86644a7863e0cb501157) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/ART/ui/texture/animation/login_btnopen.anim using Guid(cfec0b88445a86644a7863e0cb501157) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f752de6d327f73d38a2eb74d2e2b9f87') in 0.021565 seconds -Number of asset objects unloaded after import = 1 -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005376 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.97 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.662 seconds -Domain Reload Profiling: - ReloadAssembly (1663ms) - BeginReloadAssembly (172ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (45ms) - EndReloadAssembly (1395ms) - LoadAssemblies (109ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (256ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (50ms) - SetupLoadedEditorAssemblies (956ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (37ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (2ms) - BeforeProcessingInitializeOnLoad (60ms) - ProcessInitializeOnLoadAttributes (716ms) - ProcessInitializeOnLoadMethodAttributes (138ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 101 unused Assets / (27.4 KB). Loaded Objects now: 3084. -Memory consumption went from 100.2 MB to 100.2 MB. -Total: 7.099100 ms (FindLiveObjects: 0.226700 ms CreateObjectMapping: 0.160800 ms MarkObjects: 6.646000 ms DeleteObjects: 0.064100 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005252 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.15 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.532 seconds -Domain Reload Profiling: - ReloadAssembly (1533ms) - BeginReloadAssembly (151ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (35ms) - EndReloadAssembly (1287ms) - LoadAssemblies (110ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (215ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (47ms) - SetupLoadedEditorAssemblies (902ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (60ms) - ProcessInitializeOnLoadAttributes (683ms) - ProcessInitializeOnLoadMethodAttributes (131ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3087. -Memory consumption went from 100.2 MB to 100.2 MB. -Total: 6.815600 ms (FindLiveObjects: 0.215200 ms CreateObjectMapping: 0.127400 ms MarkObjects: 6.427600 ms DeleteObjects: 0.044200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 1259.939387 seconds. - path: Assets/ART/base/prefab/ViewFilter.prefab - artifactKey: Guid(395c889d500a77847af945ea7e9607f2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/ART/base/prefab/ViewFilter.prefab using Guid(395c889d500a77847af945ea7e9607f2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1e35994aa917cbd12c8441ba12d3371d') in 0.044210 seconds +Start importing Assets/ART/base/lobby/lobby/Unit/unitList.prefab using Guid(92858ce573c311a42b3f00c1588e4c10) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '025cbe90ac14b521e2347ca26ea28b2d') in 0.018818 seconds Number of asset objects unloaded after import = 104 ======================================================================== Received Import Request. - Time since last request: 13.712586 seconds. - path: Assets/ART/base/lobby/lobby/lobbyHome.prefab - artifactKey: Guid(5a943469abb94f94fa1f6fac4a63c8f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) + Time since last request: 0.391217 seconds. + path: Assets/ART/base/lobby/lobby/Unit/unitMain.prefab + artifactKey: Guid(f5261a9522e790548a134572ddd73381) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Number of updated assets reloaded before import = 0 -Start importing Assets/ART/base/lobby/lobby/lobbyHome.prefab using Guid(5a943469abb94f94fa1f6fac4a63c8f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9be151e328f160643edeec2660511bc0') in 0.010457 seconds -Number of asset objects unloaded after import = 158 +Start importing Assets/ART/base/lobby/lobby/Unit/unitMain.prefab using Guid(f5261a9522e790548a134572ddd73381) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5fbc283adbc062f8d1d7796587093056') in 0.027415 seconds +Number of asset objects unloaded after import = 334 ======================================================================== Received Import Request. - Time since last request: 11.498443 seconds. - path: Assets/ART/ui/texture/animation/imageShow.controller - artifactKey: Guid(a77c42034a9b1c34d914815329be7871) Importer(815301076,1909f56bfc062723c751e8b465ee728b) + Time since last request: 502.022426 seconds. + path: Assets/ART/base/lobby/lobby/lobbyGame.prefab + artifactKey: Guid(626f7724484475a4a8a5a7ca7b5282de) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Number of updated assets reloaded before import = 0 -Start importing Assets/ART/ui/texture/animation/imageShow.controller using Guid(a77c42034a9b1c34d914815329be7871) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '08dae6da2c4fb40348866db288295bb9') in 0.011616 seconds -Number of asset objects unloaded after import = 4 -======================================================================== -Received Import Request. - Time since last request: 1.874704 seconds. - path: Assets/ART/ui/texture/animation/createcard_tagstop.anim - artifactKey: Guid(028a79e09dfd663469ed49c3763fe279) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/ART/ui/texture/animation/createcard_tagstop.anim using Guid(028a79e09dfd663469ed49c3763fe279) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6fe0e68dfca19837a32f5a96098ace47') in 0.019840 seconds -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 74.035601 seconds. - path: Assets/ART/ui/texture/animation/main_btncircle.controller - artifactKey: Guid(3d06c6180fdee4b4f934170a2ae76e29) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/ART/ui/texture/animation/main_btncircle.controller using Guid(3d06c6180fdee4b4f934170a2ae76e29) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4dbdee98ec17620abbdbba2fe64aca10') in 0.028248 seconds -Number of asset objects unloaded after import = 6 -======================================================================== -Received Import Request. - Time since last request: 0.394686 seconds. - path: Assets/ART/ui/texture/animation/createcard_tagclose.anim - artifactKey: Guid(ddb798d7e13eb74419cf7133f2a34739) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/ART/ui/texture/animation/createcard_tagclose.anim using Guid(ddb798d7e13eb74419cf7133f2a34739) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '60588583041acbafbb88ac77aa30dc81') in 0.018911 seconds -Number of asset objects unloaded after import = 1 -======================================================================== -Received Import Request. - Time since last request: 157.207901 seconds. - path: Assets/ART/base/login/ViewLogin.prefab - artifactKey: Guid(67398339c5f969f41b81d36a55b0d29b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/ART/base/login/ViewLogin.prefab using Guid(67398339c5f969f41b81d36a55b0d29b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c34f423776b0b71c389461f58ff2b243') in 0.196885 seconds -Number of asset objects unloaded after import = 449 +Start importing Assets/ART/base/lobby/lobby/lobbyGame.prefab using Guid(626f7724484475a4a8a5a7ca7b5282de) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '651d8b12730ae1651895dc1760770148') in 0.019802 seconds +Number of asset objects unloaded after import = 176 ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.005578 seconds. +Registered in 0.010006 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory is not a mono symbol file Native extension for WindowsStandalone target not found Native extension for iOS target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.27 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.14 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] Cannot connect to Unity Package Manager local server Mono: successfully reloaded assembly -- Completed reload, in 1.531 seconds +- Completed reload, in 1.557 seconds Domain Reload Profiling: - ReloadAssembly (1532ms) - BeginReloadAssembly (151ms) + ReloadAssembly (1558ms) + BeginReloadAssembly (163ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) + DisableScriptedObjects (7ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - EndReloadAssembly (1287ms) - LoadAssemblies (103ms) + CreateAndSetChildDomain (43ms) + EndReloadAssembly (1292ms) + LoadAssemblies (118ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (219ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (46ms) - SetupLoadedEditorAssemblies (900ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (55ms) - ProcessInitializeOnLoadAttributes (681ms) - ProcessInitializeOnLoadMethodAttributes (135ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 101 unused Assets / (27.4 KB). Loaded Objects now: 3090. -Memory consumption went from 100.3 MB to 100.3 MB. -Total: 6.556800 ms (FindLiveObjects: 0.233800 ms CreateObjectMapping: 0.132100 ms MarkObjects: 6.117000 ms DeleteObjects: 0.072500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005175 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.629 seconds -Domain Reload Profiling: - ReloadAssembly (1630ms) - BeginReloadAssembly (148ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - EndReloadAssembly (1388ms) - LoadAssemblies (101ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (220ms) + SetupTypeCache (227ms) ReleaseScriptCaches (1ms) RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (982ms) + SetupLoadedEditorAssemblies (892ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (25ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (99ms) - ProcessInitializeOnLoadAttributes (719ms) - ProcessInitializeOnLoadMethodAttributes (134ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3093. -Memory consumption went from 100.3 MB to 100.3 MB. -Total: 7.500600 ms (FindLiveObjects: 0.221700 ms CreateObjectMapping: 0.136200 ms MarkObjects: 7.095800 ms DeleteObjects: 0.045600 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005768 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.535 seconds -Domain Reload Profiling: - ReloadAssembly (1536ms) - BeginReloadAssembly (145ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - EndReloadAssembly (1298ms) - LoadAssemblies (101ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (216ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (45ms) - SetupLoadedEditorAssemblies (907ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) BeforeProcessingInitializeOnLoad (56ms) - ProcessInitializeOnLoadAttributes (689ms) - ProcessInitializeOnLoadMethodAttributes (134ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3096. -Memory consumption went from 100.3 MB to 100.3 MB. -Total: 6.604600 ms (FindLiveObjects: 0.217200 ms CreateObjectMapping: 0.143200 ms MarkObjects: 6.202400 ms DeleteObjects: 0.040800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.006168 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.543 seconds -Domain Reload Profiling: - ReloadAssembly (1544ms) - BeginReloadAssembly (147ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - EndReloadAssembly (1303ms) - LoadAssemblies (103ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (238ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (45ms) - SetupLoadedEditorAssemblies (899ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (56ms) - ProcessInitializeOnLoadAttributes (683ms) - ProcessInitializeOnLoadMethodAttributes (132ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3099. -Memory consumption went from 100.3 MB to 100.3 MB. -Total: 8.992800 ms (FindLiveObjects: 0.216200 ms CreateObjectMapping: 0.127300 ms MarkObjects: 8.597300 ms DeleteObjects: 0.050700 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005655 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.19 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.565 seconds -Domain Reload Profiling: - ReloadAssembly (1565ms) - BeginReloadAssembly (158ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - EndReloadAssembly (1314ms) - LoadAssemblies (112ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (229ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (47ms) - SetupLoadedEditorAssemblies (917ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (57ms) - ProcessInitializeOnLoadAttributes (697ms) - ProcessInitializeOnLoadMethodAttributes (135ms) + ProcessInitializeOnLoadAttributes (679ms) + ProcessInitializeOnLoadMethodAttributes (128ms) AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) @@ -1871,10 +2899,10 @@ Domain Reload Profiling: Platform modules already initialized, skipping Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3102. -Memory consumption went from 100.3 MB to 100.3 MB. -Total: 7.016500 ms (FindLiveObjects: 0.221800 ms CreateObjectMapping: 0.149200 ms MarkObjects: 6.598700 ms DeleteObjects: 0.045100 ms) +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 101 unused Assets / (27.5 KB). Loaded Objects now: 3487. +Memory consumption went from 105.4 MB to 105.4 MB. +Total: 6.766700 ms (FindLiveObjects: 0.244100 ms CreateObjectMapping: 0.129300 ms MarkObjects: 6.338400 ms DeleteObjects: 0.053900 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -1891,32 +2919,148 @@ AssetImportParameters requested are different than current active one (requested custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - Time since last request: 1087.127903 seconds. - path: Assets/Scripts/Editor - artifactKey: Guid(366b9ae7fb2fd3f42a61204c03c8d57d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) + Time since last request: 482.776681 seconds. + path: Assets/ART/base/lobby/lobby/lobbyUnit.prefab + artifactKey: Guid(6cd8359f58262c147afc2d4a145ac1a4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Number of updated assets reloaded before import = 0 -Start importing Assets/Scripts/Editor using Guid(366b9ae7fb2fd3f42a61204c03c8d57d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9f30e8df159e3d1eabf5013d4b7f24c9') in 0.019140 seconds -Number of asset objects unloaded after import = 0 -======================================================================== -Received Import Request. - Time since last request: 1.818689 seconds. - path: Assets/Scripts/Editor/CustomSettings.cs - artifactKey: Guid(d68e81cfa02de7e44a2ff558bdc3ac89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/Scripts/Editor/CustomSettings.cs using Guid(d68e81cfa02de7e44a2ff558bdc3ac89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '54208a16bd6a7bf24d19af95162752dd') in 0.009984 seconds -Number of asset objects unloaded after import = 0 -======================================================================== -Received Import Request. - Time since last request: 35.000700 seconds. - path: Assets/Scripts/Editor/CustomSettings.cs - artifactKey: Guid(d68e81cfa02de7e44a2ff558bdc3ac89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/Scripts/Editor/CustomSettings.cs using Guid(d68e81cfa02de7e44a2ff558bdc3ac89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6793df3f0b4c756bf627efa3f71e02d3') in 0.002379 seconds -Number of asset objects unloaded after import = 0 +Start importing Assets/ART/base/lobby/lobby/lobbyUnit.prefab using Guid(6cd8359f58262c147afc2d4a145ac1a4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6ca0d5312ad48518fe891958b8b2b994') in 0.041231 seconds +Number of asset objects unloaded after import = 5 ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.005366 seconds. +Registered in 0.005486 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.14 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.608 seconds +Domain Reload Profiling: + ReloadAssembly (1609ms) + BeginReloadAssembly (144ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1366ms) + LoadAssemblies (104ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (235ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (955ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (730ms) + ProcessInitializeOnLoadMethodAttributes (139ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3490. +Memory consumption went from 105.4 MB to 105.4 MB. +Total: 7.897800 ms (FindLiveObjects: 0.340200 ms CreateObjectMapping: 0.195300 ms MarkObjects: 7.315900 ms DeleteObjects: 0.045100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006297 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.18 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.506 seconds +Domain Reload Profiling: + ReloadAssembly (1507ms) + BeginReloadAssembly (141ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1277ms) + LoadAssemblies (96ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (205ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (912ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (694ms) + ProcessInitializeOnLoadMethodAttributes (135ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3493. +Memory consumption went from 105.4 MB to 105.4 MB. +Total: 7.896800 ms (FindLiveObjects: 0.249800 ms CreateObjectMapping: 0.136700 ms MarkObjects: 7.466100 ms DeleteObjects: 0.043300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 1283.562844 seconds. + path: Assets/ART/base/lobby/lobby/lobbyMatch.prefab + artifactKey: Guid(906d17ace03cb094293db240c12e096e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/base/lobby/lobby/lobbyMatch.prefab using Guid(906d17ace03cb094293db240c12e096e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '09ffcc83d3a9bf122e37ca899878190f') in 0.052051 seconds +Number of asset objects unloaded after import = 88 +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005604 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory is not a mono symbol file Native extension for WindowsStandalone target not found @@ -1927,474 +3071,40 @@ Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] Cannot connect to Unity Package Manager local server Mono: successfully reloaded assembly -- Completed reload, in 1.534 seconds +- Completed reload, in 1.514 seconds Domain Reload Profiling: - ReloadAssembly (1535ms) - BeginReloadAssembly (147ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (37ms) - EndReloadAssembly (1297ms) - LoadAssemblies (100ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (215ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (923ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (53ms) - ProcessInitializeOnLoadAttributes (698ms) - ProcessInitializeOnLoadMethodAttributes (145ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3105. -Memory consumption went from 100.3 MB to 100.3 MB. -Total: 6.411900 ms (FindLiveObjects: 0.219700 ms CreateObjectMapping: 0.154000 ms MarkObjects: 5.995700 ms DeleteObjects: 0.041700 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.037276 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.522 seconds -Domain Reload Profiling: - ReloadAssembly (1522ms) - BeginReloadAssembly (146ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - EndReloadAssembly (1285ms) - LoadAssemblies (98ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (207ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (918ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (53ms) - ProcessInitializeOnLoadAttributes (709ms) - ProcessInitializeOnLoadMethodAttributes (130ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3110. -Memory consumption went from 100.4 MB to 100.4 MB. -Total: 7.327800 ms (FindLiveObjects: 0.218500 ms CreateObjectMapping: 0.124500 ms MarkObjects: 6.935700 ms DeleteObjects: 0.047900 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005098 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.527 seconds -Domain Reload Profiling: - ReloadAssembly (1527ms) - BeginReloadAssembly (148ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - EndReloadAssembly (1284ms) - LoadAssemblies (102ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (218ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (45ms) - SetupLoadedEditorAssemblies (897ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (56ms) - ProcessInitializeOnLoadAttributes (681ms) - ProcessInitializeOnLoadMethodAttributes (133ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3113. -Memory consumption went from 100.4 MB to 100.4 MB. -Total: 6.642300 ms (FindLiveObjects: 0.223000 ms CreateObjectMapping: 0.146300 ms MarkObjects: 6.225100 ms DeleteObjects: 0.046600 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005716 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.26 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.537 seconds -Domain Reload Profiling: - ReloadAssembly (1538ms) - BeginReloadAssembly (145ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (37ms) - EndReloadAssembly (1298ms) - LoadAssemblies (101ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (222ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (45ms) - SetupLoadedEditorAssemblies (907ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (25ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (59ms) - ProcessInitializeOnLoadAttributes (685ms) - ProcessInitializeOnLoadMethodAttributes (134ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3116. -Memory consumption went from 100.4 MB to 100.4 MB. -Total: 7.851200 ms (FindLiveObjects: 0.223100 ms CreateObjectMapping: 0.134400 ms MarkObjects: 7.437400 ms DeleteObjects: 0.054600 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005352 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.478 seconds -Domain Reload Profiling: - ReloadAssembly (1479ms) - BeginReloadAssembly (144ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (35ms) - EndReloadAssembly (1244ms) - LoadAssemblies (98ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (202ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (883ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (56ms) - ProcessInitializeOnLoadAttributes (675ms) - ProcessInitializeOnLoadMethodAttributes (126ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3119. -Memory consumption went from 100.4 MB to 100.4 MB. -Total: 6.489200 ms (FindLiveObjects: 0.217000 ms CreateObjectMapping: 0.130100 ms MarkObjects: 6.101600 ms DeleteObjects: 0.039500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005188 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.493 seconds -Domain Reload Profiling: - ReloadAssembly (1494ms) + ReloadAssembly (1515ms) BeginReloadAssembly (141ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (35ms) - EndReloadAssembly (1263ms) + EndReloadAssembly (1285ms) LoadAssemblies (98ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (206ms) + SetupTypeCache (213ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (898ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (56ms) - ProcessInitializeOnLoadAttributes (691ms) - ProcessInitializeOnLoadMethodAttributes (126ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3122. -Memory consumption went from 100.4 MB to 100.4 MB. -Total: 6.595100 ms (FindLiveObjects: 0.232300 ms CreateObjectMapping: 0.150300 ms MarkObjects: 6.168600 ms DeleteObjects: 0.042900 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.006138 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.54 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.565 seconds -Domain Reload Profiling: - ReloadAssembly (1565ms) - BeginReloadAssembly (151ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - EndReloadAssembly (1295ms) - LoadAssemblies (105ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (218ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (45ms) - SetupLoadedEditorAssemblies (907ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (901ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (25ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (2ms) + RefreshPlugins (1ms) BeforeProcessingInitializeOnLoad (60ms) - ProcessInitializeOnLoadAttributes (686ms) - ProcessInitializeOnLoadMethodAttributes (132ms) + ProcessInitializeOnLoadAttributes (682ms) + ProcessInitializeOnLoadMethodAttributes (130ms) AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (7ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3125. -Memory consumption went from 100.4 MB to 100.4 MB. -Total: 8.019300 ms (FindLiveObjects: 0.308400 ms CreateObjectMapping: 0.156200 ms MarkObjects: 7.505600 ms DeleteObjects: 0.047800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.006048 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.20 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.554 seconds -Domain Reload Profiling: - ReloadAssembly (1555ms) - BeginReloadAssembly (149ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (37ms) - EndReloadAssembly (1310ms) - LoadAssemblies (102ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (223ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (49ms) - SetupLoadedEditorAssemblies (912ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (61ms) - ProcessInitializeOnLoadAttributes (688ms) - ProcessInitializeOnLoadMethodAttributes (134ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3128. -Memory consumption went from 100.4 MB to 100.4 MB. -Total: 7.166900 ms (FindLiveObjects: 0.228300 ms CreateObjectMapping: 0.138800 ms MarkObjects: 6.752100 ms DeleteObjects: 0.045900 ms) +Unloading 101 unused Assets / (27.4 KB). Loaded Objects now: 3496. +Memory consumption went from 105.5 MB to 105.4 MB. +Total: 6.356800 ms (FindLiveObjects: 0.248100 ms CreateObjectMapping: 0.142500 ms MarkObjects: 5.910600 ms DeleteObjects: 0.054900 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -2412,137 +3122,13 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.007216 seconds. +Registered in 0.005434 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory is not a mono symbol file Native extension for WindowsStandalone target not found Native extension for iOS target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.575 seconds -Domain Reload Profiling: - ReloadAssembly (1576ms) - BeginReloadAssembly (148ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - EndReloadAssembly (1329ms) - LoadAssemblies (107ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (223ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (48ms) - SetupLoadedEditorAssemblies (924ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (57ms) - ProcessInitializeOnLoadAttributes (705ms) - ProcessInitializeOnLoadMethodAttributes (133ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3131. -Memory consumption went from 100.4 MB to 100.4 MB. -Total: 6.924800 ms (FindLiveObjects: 0.347100 ms CreateObjectMapping: 0.138700 ms MarkObjects: 6.384200 ms DeleteObjects: 0.053300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005354 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.15 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.636 seconds -Domain Reload Profiling: - ReloadAssembly (1637ms) - BeginReloadAssembly (177ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (10ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (44ms) - EndReloadAssembly (1354ms) - LoadAssemblies (123ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (268ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (50ms) - SetupLoadedEditorAssemblies (906ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (58ms) - ProcessInitializeOnLoadAttributes (688ms) - ProcessInitializeOnLoadMethodAttributes (131ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (1ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.19 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3134. -Memory consumption went from 100.5 MB to 100.4 MB. -Total: 7.138200 ms (FindLiveObjects: 0.238000 ms CreateObjectMapping: 0.151800 ms MarkObjects: 6.698700 ms DeleteObjects: 0.048000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005555 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.14 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] Cannot connect to Unity Package Manager local server @@ -2550,337 +3136,27 @@ Mono: successfully reloaded assembly - Completed reload, in 1.537 seconds Domain Reload Profiling: ReloadAssembly (1538ms) - BeginReloadAssembly (146ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (37ms) - EndReloadAssembly (1297ms) - LoadAssemblies (103ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (219ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (48ms) - SetupLoadedEditorAssemblies (904ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (25ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (59ms) - ProcessInitializeOnLoadAttributes (682ms) - ProcessInitializeOnLoadMethodAttributes (134ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.18 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3137. -Memory consumption went from 100.5 MB to 100.4 MB. -Total: 6.593400 ms (FindLiveObjects: 0.228900 ms CreateObjectMapping: 0.133400 ms MarkObjects: 6.099600 ms DeleteObjects: 0.130300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.010099 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.16 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.553 seconds -Domain Reload Profiling: - ReloadAssembly (1554ms) - BeginReloadAssembly (145ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - EndReloadAssembly (1312ms) - LoadAssemblies (101ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (223ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (46ms) - SetupLoadedEditorAssemblies (919ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (26ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (56ms) - ProcessInitializeOnLoadAttributes (697ms) - ProcessInitializeOnLoadMethodAttributes (135ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3140. -Memory consumption went from 100.5 MB to 100.5 MB. -Total: 6.849400 ms (FindLiveObjects: 0.228500 ms CreateObjectMapping: 0.150900 ms MarkObjects: 6.421400 ms DeleteObjects: 0.047300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005601 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.563 seconds -Domain Reload Profiling: - ReloadAssembly (1564ms) - BeginReloadAssembly (150ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - EndReloadAssembly (1316ms) - LoadAssemblies (103ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (216ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (50ms) - SetupLoadedEditorAssemblies (920ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (28ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (58ms) - ProcessInitializeOnLoadAttributes (692ms) - ProcessInitializeOnLoadMethodAttributes (138ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3143. -Memory consumption went from 100.5 MB to 100.5 MB. -Total: 6.557700 ms (FindLiveObjects: 0.229900 ms CreateObjectMapping: 0.134600 ms MarkObjects: 6.138100 ms DeleteObjects: 0.054000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005203 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.556 seconds -Domain Reload Profiling: - ReloadAssembly (1557ms) - BeginReloadAssembly (147ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (37ms) - EndReloadAssembly (1311ms) - LoadAssemblies (103ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (220ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (50ms) - SetupLoadedEditorAssemblies (913ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (25ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (60ms) - ProcessInitializeOnLoadAttributes (689ms) - ProcessInitializeOnLoadMethodAttributes (135ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3146. -Memory consumption went from 100.5 MB to 100.5 MB. -Total: 6.848400 ms (FindLiveObjects: 0.240100 ms CreateObjectMapping: 0.194500 ms MarkObjects: 6.368400 ms DeleteObjects: 0.043900 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005611 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.30 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.585 seconds -Domain Reload Profiling: - ReloadAssembly (1586ms) - BeginReloadAssembly (149ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (37ms) - EndReloadAssembly (1338ms) - LoadAssemblies (104ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (222ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (56ms) - SetupLoadedEditorAssemblies (923ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (26ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (60ms) - ProcessInitializeOnLoadAttributes (685ms) - ProcessInitializeOnLoadMethodAttributes (143ms) - AfterProcessingInitializeOnLoad (7ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (16ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.91 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3149. -Memory consumption went from 100.5 MB to 100.5 MB. -Total: 6.894900 ms (FindLiveObjects: 0.239400 ms CreateObjectMapping: 0.153000 ms MarkObjects: 6.449300 ms DeleteObjects: 0.052200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005140 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.477 seconds -Domain Reload Profiling: - ReloadAssembly (1478ms) BeginReloadAssembly (142ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - EndReloadAssembly (1246ms) + CreateAndSetChildDomain (35ms) + EndReloadAssembly (1306ms) LoadAssemblies (98ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (207ms) + SetupTypeCache (208ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (878ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (934ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) + InitializePlatformSupportModulesInManaged (24ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (56ms) - ProcessInitializeOnLoadAttributes (670ms) - ProcessInitializeOnLoadMethodAttributes (127ms) - AfterProcessingInitializeOnLoad (3ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (703ms) + ProcessInitializeOnLoadMethodAttributes (138ms) + AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (7ms) @@ -2888,9 +3164,9 @@ Platform modules already initialized, skipping Refreshing native plugins compatible for Editor in 1.06 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3152. -Memory consumption went from 100.5 MB to 100.5 MB. -Total: 7.534500 ms (FindLiveObjects: 0.221500 ms CreateObjectMapping: 0.131100 ms MarkObjects: 7.139000 ms DeleteObjects: 0.042200 ms) +Unloading 98 unused Assets / (25.2 KB). Loaded Objects now: 3499. +Memory consumption went from 105.5 MB to 105.4 MB. +Total: 8.560700 ms (FindLiveObjects: 0.247100 ms CreateObjectMapping: 0.132200 ms MarkObjects: 8.134600 ms DeleteObjects: 0.045800 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -2908,474 +3184,40 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.005395 seconds. +Registered in 0.006137 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory is not a mono symbol file Native extension for WindowsStandalone target not found Native extension for iOS target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.27 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 2.02 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] Cannot connect to Unity Package Manager local server Mono: successfully reloaded assembly -- Completed reload, in 1.567 seconds +- Completed reload, in 1.577 seconds Domain Reload Profiling: - ReloadAssembly (1567ms) - BeginReloadAssembly (152ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (37ms) - EndReloadAssembly (1319ms) - LoadAssemblies (106ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (227ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (48ms) - SetupLoadedEditorAssemblies (921ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (29ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (57ms) - ProcessInitializeOnLoadAttributes (696ms) - ProcessInitializeOnLoadMethodAttributes (135ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3155. -Memory consumption went from 100.5 MB to 100.5 MB. -Total: 7.454100 ms (FindLiveObjects: 0.223800 ms CreateObjectMapping: 0.122900 ms MarkObjects: 7.060400 ms DeleteObjects: 0.045800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005975 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.39 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.542 seconds -Domain Reload Profiling: - ReloadAssembly (1543ms) - BeginReloadAssembly (149ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - EndReloadAssembly (1298ms) - LoadAssemblies (102ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (232ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (899ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (55ms) - ProcessInitializeOnLoadAttributes (680ms) - ProcessInitializeOnLoadMethodAttributes (134ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3158. -Memory consumption went from 100.5 MB to 100.5 MB. -Total: 6.558100 ms (FindLiveObjects: 0.230100 ms CreateObjectMapping: 0.168300 ms MarkObjects: 6.093800 ms DeleteObjects: 0.064600 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005330 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.488 seconds -Domain Reload Profiling: - ReloadAssembly (1489ms) - BeginReloadAssembly (143ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - EndReloadAssembly (1253ms) - LoadAssemblies (100ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (203ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (888ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (58ms) - ProcessInitializeOnLoadAttributes (674ms) - ProcessInitializeOnLoadMethodAttributes (130ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3161. -Memory consumption went from 100.5 MB to 100.5 MB. -Total: 7.560200 ms (FindLiveObjects: 0.223200 ms CreateObjectMapping: 0.127100 ms MarkObjects: 7.160700 ms DeleteObjects: 0.048200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005563 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.542 seconds -Domain Reload Profiling: - ReloadAssembly (1542ms) - BeginReloadAssembly (149ms) + ReloadAssembly (1578ms) + BeginReloadAssembly (155ms) ExecutionOrderSort (0ms) DisableScriptedObjects (7ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (38ms) - EndReloadAssembly (1301ms) - LoadAssemblies (104ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (223ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (47ms) - SetupLoadedEditorAssemblies (907ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (59ms) - ProcessInitializeOnLoadAttributes (686ms) - ProcessInitializeOnLoadMethodAttributes (134ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3164. -Memory consumption went from 100.6 MB to 100.5 MB. -Total: 6.597900 ms (FindLiveObjects: 0.236100 ms CreateObjectMapping: 0.140900 ms MarkObjects: 6.169700 ms DeleteObjects: 0.050300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005958 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.22 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.563 seconds -Domain Reload Profiling: - ReloadAssembly (1564ms) - BeginReloadAssembly (147ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - EndReloadAssembly (1315ms) - LoadAssemblies (103ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (218ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (46ms) - SetupLoadedEditorAssemblies (926ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (26ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (58ms) - ProcessInitializeOnLoadAttributes (703ms) - ProcessInitializeOnLoadMethodAttributes (134ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.15 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3167. -Memory consumption went from 100.6 MB to 100.5 MB. -Total: 7.145600 ms (FindLiveObjects: 0.253600 ms CreateObjectMapping: 0.140600 ms MarkObjects: 6.708800 ms DeleteObjects: 0.041300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005171 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.20 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.556 seconds -Domain Reload Profiling: - ReloadAssembly (1557ms) - BeginReloadAssembly (151ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - EndReloadAssembly (1312ms) - LoadAssemblies (102ms) + EndReloadAssembly (1327ms) + LoadAssemblies (107ms) RebuildTransferFunctionScriptingTraits (0ms) SetupTypeCache (220ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (50ms) - SetupLoadedEditorAssemblies (922ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (25ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (62ms) - ProcessInitializeOnLoadAttributes (686ms) - ProcessInitializeOnLoadMethodAttributes (145ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.28 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3170. -Memory consumption went from 100.6 MB to 100.5 MB. -Total: 7.716000 ms (FindLiveObjects: 0.244100 ms CreateObjectMapping: 0.140500 ms MarkObjects: 7.277000 ms DeleteObjects: 0.053000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005509 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.472 seconds -Domain Reload Profiling: - ReloadAssembly (1473ms) - BeginReloadAssembly (140ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (35ms) - EndReloadAssembly (1244ms) - LoadAssemblies (97ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (204ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (880ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (55ms) - ProcessInitializeOnLoadAttributes (668ms) - ProcessInitializeOnLoadMethodAttributes (131ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3173. -Memory consumption went from 100.6 MB to 100.6 MB. -Total: 6.667900 ms (FindLiveObjects: 0.251700 ms CreateObjectMapping: 0.138500 ms MarkObjects: 6.237800 ms DeleteObjects: 0.039200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.006879 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.531 seconds -Domain Reload Profiling: - ReloadAssembly (1532ms) - BeginReloadAssembly (148ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (37ms) - EndReloadAssembly (1288ms) - LoadAssemblies (99ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (216ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (47ms) - SetupLoadedEditorAssemblies (906ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (942ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (59ms) - ProcessInitializeOnLoadAttributes (687ms) - ProcessInitializeOnLoadMethodAttributes (131ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (714ms) + ProcessInitializeOnLoadMethodAttributes (139ms) AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) @@ -3384,9 +3226,9 @@ Platform modules already initialized, skipping Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3176. -Memory consumption went from 100.6 MB to 100.6 MB. -Total: 7.066600 ms (FindLiveObjects: 0.232600 ms CreateObjectMapping: 0.148900 ms MarkObjects: 6.629400 ms DeleteObjects: 0.054300 ms) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3502. +Memory consumption went from 105.5 MB to 105.4 MB. +Total: 6.720900 ms (FindLiveObjects: 0.249400 ms CreateObjectMapping: 0.136500 ms MarkObjects: 6.290200 ms DeleteObjects: 0.043600 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -3404,51 +3246,129 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.005477 seconds. +Registered in 0.005665 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory is not a mono symbol file Native extension for WindowsStandalone target not found Native extension for iOS target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.35 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] Cannot connect to Unity Package Manager local server Mono: successfully reloaded assembly -- Completed reload, in 1.556 seconds +- Completed reload, in 1.517 seconds Domain Reload Profiling: - ReloadAssembly (1556ms) + ReloadAssembly (1518ms) BeginReloadAssembly (146ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (37ms) - EndReloadAssembly (1316ms) - LoadAssemblies (102ms) + CreateAndSetChildDomain (35ms) + EndReloadAssembly (1282ms) + LoadAssemblies (98ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (218ms) + SetupTypeCache (214ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (47ms) - SetupLoadedEditorAssemblies (927ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (906ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (1ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (60ms) - ProcessInitializeOnLoadAttributes (703ms) + BeforeProcessingInitializeOnLoad (54ms) + ProcessInitializeOnLoadAttributes (692ms) ProcessInitializeOnLoadMethodAttributes (134ms) - AfterProcessingInitializeOnLoad (4ms) + AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (7ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.22 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3179. -Memory consumption went from 100.6 MB to 100.6 MB. -Total: 6.711400 ms (FindLiveObjects: 0.229400 ms CreateObjectMapping: 0.141300 ms MarkObjects: 6.285400 ms DeleteObjects: 0.054000 ms) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3505. +Memory consumption went from 105.5 MB to 105.5 MB. +Total: 9.032100 ms (FindLiveObjects: 0.249900 ms CreateObjectMapping: 0.140400 ms MarkObjects: 8.589400 ms DeleteObjects: 0.051200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 1052.023639 seconds. + path: Assets/ART/base/lobby/lobby/Unit/unitMain.prefab + artifactKey: Guid(f5261a9522e790548a134572ddd73381) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/base/lobby/lobby/Unit/unitMain.prefab using Guid(f5261a9522e790548a134572ddd73381) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4f12607c47c69b9e84b2ca50dff0a337') in 0.057422 seconds +Number of asset objects unloaded after import = 334 +======================================================================== +Received Import Request. + Time since last request: 1407.585364 seconds. + path: Assets/Scripts/Core/PageSliderManager.cs + artifactKey: Guid(bfde79157a6d425419c7ae462ccf04ba) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Scripts/Core/PageSliderManager.cs using Guid(bfde79157a6d425419c7ae462ccf04ba) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f6800a46dba421d20546bad07f585c0b') in 0.022604 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005852 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.587 seconds +Domain Reload Profiling: + ReloadAssembly (1588ms) + BeginReloadAssembly (149ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1342ms) + LoadAssemblies (102ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (227ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (947ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (709ms) + ProcessInitializeOnLoadMethodAttributes (144ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 101 unused Assets / (27.3 KB). Loaded Objects now: 3508. +Memory consumption went from 105.5 MB to 105.5 MB. +Total: 6.770000 ms (FindLiveObjects: 0.270300 ms CreateObjectMapping: 0.170700 ms MarkObjects: 6.268200 ms DeleteObjects: 0.059500 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> diff --git a/wb_unity_pro/Logs/shadercompiler-UnityShaderCompiler.exe1.log b/wb_unity_pro/Logs/shadercompiler-UnityShaderCompiler.exe1.log deleted file mode 100644 index e69de29..0000000 diff --git a/wb_unity_pro/Logs/shadercompiler-UnityShaderCompiler.exe2.log b/wb_unity_pro/Logs/shadercompiler-UnityShaderCompiler.exe2.log deleted file mode 100644 index e69de29..0000000 diff --git a/wb_unity_pro/UserSettings/Layouts/CurrentMaximizeLayout.dwlt b/wb_unity_pro/UserSettings/Layouts/CurrentMaximizeLayout.dwlt index a88ebac..48eec1e 100644 --- a/wb_unity_pro/UserSettings/Layouts/CurrentMaximizeLayout.dwlt +++ b/wb_unity_pro/UserSettings/Layouts/CurrentMaximizeLayout.dwlt @@ -14,7 +14,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Children: - {fileID: 3} - - {fileID: 18} + - {fileID: 17} m_Position: serializedVersion: 2 x: 0 @@ -24,7 +24,7 @@ MonoBehaviour: m_MinSize: {x: 400, y: 200} m_MaxSize: {x: 32384, y: 16192} vertical: 0 - controlID: 28 + controlID: 2144 --- !u!114 &2 MonoBehaviour: m_ObjectHideFlags: 52 @@ -46,10 +46,10 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 1610 - y: 643 - width: 455 - height: 700 + x: 1500 + y: 574 + width: 565 + height: 769 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: m_LastAppliedPresetName: Default @@ -97,23 +97,23 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 21 - width: 455 - height: 679 - m_Scale: {x: 0.26816747, y: 0.26816747} - m_Translation: {x: 227.5, y: 339.5} + width: 565 + height: 748 + m_Scale: {x: 0.29541865, y: 0.29541865} + m_Translation: {x: 282.5, y: 374} m_MarginLeft: 0 m_MarginRight: 0 m_MarginTop: 0 m_MarginBottom: 0 m_LastShownAreaInsideMargins: serializedVersion: 2 - x: -848.35046 + x: -956.27 y: -1266 - width: 1696.7009 + width: 1912.54 height: 2532 m_MinimalGUI: 1 - m_defaultScale: 0.26816747 - m_LastWindowPixelSize: {x: 455, y: 700} + m_defaultScale: 0.29541865 + m_LastWindowPixelSize: {x: 565, y: 769} m_ClearInEditMode: 1 m_NoCameraWarning: 1 m_LowResolutionForAspectRatios: 01000001000000000000 @@ -133,7 +133,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Children: - {fileID: 4} - - {fileID: 12} + - {fileID: 11} m_Position: serializedVersion: 2 x: 0 @@ -143,7 +143,7 @@ MonoBehaviour: m_MinSize: {x: 300, y: 200} m_MaxSize: {x: 24288, y: 16192} vertical: 1 - controlID: 29 + controlID: 2145 --- !u!114 &4 MonoBehaviour: m_ObjectHideFlags: 52 @@ -164,11 +164,11 @@ MonoBehaviour: x: 0 y: 0 width: 2055 - height: 562 + height: 493 m_MinSize: {x: 200, y: 100} m_MaxSize: {x: 16192, y: 8096} vertical: 0 - controlID: 17 + controlID: 2114 --- !u!114 &5 MonoBehaviour: m_ObjectHideFlags: 52 @@ -187,7 +187,7 @@ MonoBehaviour: x: 0 y: 0 width: 458 - height: 562 + height: 493 m_MinSize: {x: 201, y: 221} m_MaxSize: {x: 4001, y: 4021} m_ActualView: {fileID: 6} @@ -219,7 +219,7 @@ MonoBehaviour: x: 12 y: 81 width: 457 - height: 541 + height: 472 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: m_LastAppliedPresetName: Default @@ -228,9 +228,9 @@ MonoBehaviour: m_SceneHierarchy: m_TreeViewState: scrollPos: {x: 0, y: 0} - m_SelectedIDs: c24a0000 + m_SelectedIDs: m_LastClickedID: 0 - m_ExpandedIDs: 1663feff2063feff2a63feff3863feff7c63feff3a73feff2cfbffff4455000052550000 + m_ExpandedIDs: 14f2fbff20f2fbff2eb6000052b600006ab6000076b6000086b6000090b600009eb60000aeb60000b6b60000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -272,48 +272,17 @@ MonoBehaviour: x: 458 y: 0 width: 1597 - height: 562 + height: 493 m_MinSize: {x: 202, y: 221} m_MaxSize: {x: 4002, y: 4021} - m_ActualView: {fileID: 11} + m_ActualView: {fileID: 10} m_Panes: - {fileID: 8} - {fileID: 9} - {fileID: 10} - - {fileID: 11} - m_Selected: 3 + m_Selected: 2 m_LastSelected: 2 --- !u!114 &8 -MonoBehaviour: - m_ObjectHideFlags: 52 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 1 - m_Script: {fileID: 12111, guid: 0000000000000000e000000000000000, type: 0} - m_Name: - m_EditorClassIdentifier: - m_MinSize: {x: 400, y: 100} - m_MaxSize: {x: 2048, y: 2048} - m_TitleContent: - m_Text: Asset Store - m_Image: {fileID: -8693916549880196297, guid: 0000000000000000d000000000000000, - type: 0} - m_Tooltip: - m_Pos: - serializedVersion: 2 - x: 462 - y: 81 - width: 1401 - height: 484 - m_ViewDataDictionary: {fileID: 0} - m_OverlayCanvas: - m_LastAppliedPresetName: Default - m_SaveData: [] - m_OverlaysVisible: 1 ---- !u!114 &9 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -337,7 +306,7 @@ MonoBehaviour: x: 470 y: 81 width: 1595 - height: 473 + height: 513 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: m_LastAppliedPresetName: Default @@ -349,6 +318,8 @@ MonoBehaviour: - {fileID: 6493954791980047924, guid: 3d06c6180fdee4b4f934170a2ae76e29, type: 2} - {fileID: 1236729993981667375, guid: a77bfa5dcfc291748b7fb88e0754ca87, type: 2} - {fileID: -8850320641527390869, guid: db5d169666ca05c41b863adbbe697fcc, type: 2} + - {fileID: 8017737070514627443, guid: 981a69e23d26fde428f70211d6babd0e, type: 2} + - {fileID: -3236372629044136465, guid: a77c42034a9b1c34d914815329be7871, type: 2} m_ValueSerializationHelper: - e00: 0.9360825 e01: 0 @@ -414,11 +385,43 @@ MonoBehaviour: e31: 0 e32: 0 e33: 1 + - e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 m_PreviewAnimator: {fileID: 0} - m_AnimatorController: {fileID: 9100000, guid: db5d169666ca05c41b863adbbe697fcc, + m_AnimatorController: {fileID: 9100000, guid: a77c42034a9b1c34d914815329be7871, type: 2} m_BreadCrumbs: - - m_Target: {fileID: -8850320641527390869, guid: db5d169666ca05c41b863adbbe697fcc, + - m_Target: {fileID: -3236372629044136465, guid: a77c42034a9b1c34d914815329be7871, type: 2} m_ScrollPosition: {x: 0, y: 0} stateMachineGraph: {fileID: 0} @@ -432,7 +435,7 @@ MonoBehaviour: m_CurrentEditor: 0 m_LayerEditor: m_SelectedLayerIndex: 0 ---- !u!114 &10 +--- !u!114 &9 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -456,7 +459,7 @@ MonoBehaviour: x: 470 y: 81 width: 1595 - height: 473 + height: 472 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: m_LastAppliedPresetName: Default @@ -464,8 +467,8 @@ MonoBehaviour: m_OverlaysVisible: 1 m_LockTracker: m_IsLocked: 0 - m_LastSelectedObjectID: -6122 ---- !u!114 &11 + m_LastSelectedObjectID: 32210 +--- !u!114 &10 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -489,7 +492,7 @@ MonoBehaviour: x: 470 y: 81 width: 1595 - height: 541 + height: 472 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: m_LastAppliedPresetName: Default @@ -500,7 +503,7 @@ MonoBehaviour: collapsed: 0 displayed: 1 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: -101, y: -26} + snapOffsetDelta: {x: -101, y: -1} snapCorner: 3 id: Tool Settings index: 0 @@ -533,7 +536,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 25} snapCorner: 1 id: unity-search-toolbar index: 1 @@ -544,7 +547,7 @@ MonoBehaviour: collapsed: 0 displayed: 1 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 25} snapCorner: 0 id: unity-transform-toolbar index: 0 @@ -577,7 +580,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 25} snapCorner: 0 id: Scene View/Light Settings index: 0 @@ -588,7 +591,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 25} snapCorner: 0 id: Scene View/Camera index: 1 @@ -599,7 +602,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 25} snapCorner: 0 id: Scene View/Cloth Constraints index: 2 @@ -610,7 +613,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 25} snapCorner: 0 id: Scene View/Cloth Collisions index: 3 @@ -621,7 +624,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 25} snapCorner: 0 id: Scene View/Navmesh Display index: 5 @@ -632,7 +635,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 25} snapCorner: 0 id: Scene View/Agent Display index: 7 @@ -643,7 +646,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 25} snapCorner: 0 id: Scene View/Obstacle Display index: 9 @@ -654,7 +657,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 25} snapCorner: 0 id: Scene View/Occlusion Culling index: 4 @@ -665,7 +668,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 25} snapCorner: 0 id: Scene View/Physics Debugger index: 6 @@ -676,7 +679,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 25} snapCorner: 0 id: Scene View/Scene Visibility index: 8 @@ -687,7 +690,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 25} snapCorner: 0 id: Scene View/Particles index: 10 @@ -731,7 +734,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 25} snapCorner: 0 id: Scene View/Open Tile Palette index: 2 @@ -742,7 +745,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 25} snapCorner: 0 id: Scene View/Tilemap Focus index: 3 @@ -750,17 +753,17 @@ MonoBehaviour: m_OverlaysVisible: 1 m_WindowGUID: e07c16a66c31ae440bdbc5a34c43feb6 m_Gizmos: 1 - m_OverrideSceneCullingMask: 6917529027641081856 - m_SceneIsLit: 1 + m_OverrideSceneCullingMask: 0 + m_SceneIsLit: 0 m_SceneLighting: 1 m_2DMode: 1 m_isRotationLocked: 0 m_PlayAudio: 0 m_AudioPlay: 0 m_Position: - m_Target: {x: 615.6854, y: 2438.5596, z: 3.1519747} + m_Target: {x: 1498.1542, y: 710.29254, z: -10.221394} speed: 2 - m_Value: {x: 615.6854, y: 2438.5596, z: 3.1519747} + m_Value: {x: 1498.1542, y: 710.29254, z: -10.221394} m_RenderMode: 0 m_CameraMode: drawMode: 0 @@ -772,7 +775,7 @@ MonoBehaviour: m_SceneViewState: m_AlwaysRefresh: 0 showFog: 1 - showSkybox: 1 + showSkybox: 0 showFlares: 1 showImageEffects: 1 showParticleSystems: 1 @@ -811,9 +814,9 @@ MonoBehaviour: speed: 2 m_Value: {x: 0, y: 0, z: 0, w: 1} m_Size: - m_Target: 1079.846 + m_Target: 2416.766 speed: 2 - m_Value: 1079.846 + m_Value: 2416.766 m_Ortho: m_Target: 1 speed: 2 @@ -838,7 +841,7 @@ MonoBehaviour: m_SceneVisActive: 1 m_LastLockedObject: {fileID: 0} m_ViewIsLockedToObject: 0 ---- !u!114 &12 +--- !u!114 &11 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -851,20 +854,20 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Children: - - {fileID: 13} - - {fileID: 15} - - {fileID: 17} + - {fileID: 12} + - {fileID: 14} + - {fileID: 16} m_Position: serializedVersion: 2 x: 0 - y: 562 + y: 493 width: 2055 - height: 721 + height: 790 m_MinSize: {x: 300, y: 100} m_MaxSize: {x: 24288, y: 8096} vertical: 0 - controlID: 30 ---- !u!114 &13 + controlID: 2146 +--- !u!114 &12 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -881,16 +884,16 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 684 - height: 721 + width: 686 + height: 790 m_MinSize: {x: 231, y: 271} m_MaxSize: {x: 10001, y: 10021} - m_ActualView: {fileID: 14} + m_ActualView: {fileID: 13} m_Panes: - - {fileID: 14} + - {fileID: 13} m_Selected: 0 m_LastSelected: 0 ---- !u!114 &14 +--- !u!114 &13 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -912,9 +915,9 @@ MonoBehaviour: m_Pos: serializedVersion: 2 x: 12 - y: 643 - width: 683 - height: 700 + y: 574 + width: 685 + height: 769 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: m_LastAppliedPresetName: Default @@ -931,23 +934,23 @@ MonoBehaviour: m_SkipHidden: 0 m_SearchArea: 1 m_Folders: - - Assets/Scripts/Core + - Assets/ART/base/lobby m_Globs: [] m_OriginalText: m_FilterByTypeIntersection: 0 m_ViewMode: 1 m_StartGridSize: 16 m_LastFolders: - - Assets/Scripts/Core + - Assets/ART/base/lobby m_LastFoldersGridSize: 16 m_LastProjectPath: D:\UnityProject\dezhou\dezhou_client\wb_unity_pro m_LockTracker: m_IsLocked: 0 m_FolderTreeState: - scrollPos: {x: 0, y: 219} - m_SelectedIDs: b09d0000 - m_LastClickedID: 40368 - m_ExpandedIDs: 00000000f89c0000fa9c0000fc9c0000fe9c0000009d0000229d0000409d000000ca9a3bffffff7f + scrollPos: {x: 0, y: 19} + m_SelectedIDs: d8550000 + m_LastClickedID: 21976 + m_ExpandedIDs: 00000000ce550000d0550000d2550000d4550000d6550000d8550000fe5500001856000000ca9a3bffffff7f m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -963,7 +966,7 @@ MonoBehaviour: m_IsRenaming: 0 m_OriginalEventType: 11 m_IsRenamingFilename: 1 - m_ClientGUIView: {fileID: 13} + m_ClientGUIView: {fileID: 12} m_SearchString: m_CreateAssetUtility: m_EndAction: {fileID: 0} @@ -975,7 +978,7 @@ MonoBehaviour: scrollPos: {x: 0, y: 0} m_SelectedIDs: m_LastClickedID: 0 - m_ExpandedIDs: 00000000f89c0000fa9c0000fc9c0000fe9c0000009d0000 + m_ExpandedIDs: 00000000ce550000d0550000d2550000d4550000d6550000d855000000ca9a3bffffff7f m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -1000,10 +1003,10 @@ MonoBehaviour: m_Icon: {fileID: 0} m_ResourceFile: m_ListAreaState: - m_SelectedInstanceIDs: c24a0000 - m_LastClickedInstanceID: 19138 + m_SelectedInstanceIDs: + m_LastClickedInstanceID: 0 m_HadKeyboardFocusLastEvent: 1 - m_ExpandedInstanceIDs: c6230000d8c2000054c40000ba0c0100c49200006293000066660000167d0000ea85000038610000f85f0000dc5e00000a60000006600000ea5f000012600000ec5f0000987900005438030014600000106000009c6e040054640000165900001c590000a2c804005c730000725e0000645e000068a907007e5d00008a5e0000449c0e00a2970000665d0000765d0000785e0000fa920000f692000002930000f4920000f2980000c05d0000e8730000c4730000f2730000ecdc0400e2730000d6730000da730000e47300003a0d0400e25e0000de5e0000d25d0000e25d0000f25e0000ea5e0000cc5e0000fa5e0000dc5d00002e600000e85e0000de5d0000ca5f0000d25f0000005f0000ce590b00fe5e0000ec690000f4690000ee6900004e670000125f00004edfecff26b7ffffa89d00007a9d000000000000 + m_ExpandedInstanceIDs: c6230000d8c2000054c40000ba0c0100c49200006293000066660000167d0000ea85000038610000f85f0000dc5e00000a60000006600000ea5f000012600000ec5f0000987900005438030014600000106000009c6e040054640000165900001c590000a2c804005c730000725e0000645e000068a907007e5d00008a5e0000449c0e00a2970000665d0000765d0000785e0000fa920000f692000002930000f4920000f2980000c05d0000e8730000c4730000f2730000ecdc0400e2730000d6730000da730000e47300003a0d0400e25e0000de5e0000d25d0000e25d0000f25e0000ea5e0000cc5e0000fa5e0000dc5d00002e600000e85e0000de5d0000ca5f0000d25f0000005f0000ce590b00fe5e0000ec690000f4690000ee6900004e670000125f00004edfecff26b7ffffa89d00007a9d0000000000004ebc00001e560000b0010000ca570000f85700008c8a0000e65d0000247f00003a690000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -1019,7 +1022,7 @@ MonoBehaviour: m_IsRenaming: 0 m_OriginalEventType: 11 m_IsRenamingFilename: 1 - m_ClientGUIView: {fileID: 13} + m_ClientGUIView: {fileID: 12} m_CreateAssetUtility: m_EndAction: {fileID: 0} m_InstanceID: 0 @@ -1031,7 +1034,7 @@ MonoBehaviour: m_GridSize: 16 m_SkipHiddenPackages: 0 m_DirectoriesAreaWidth: 243 ---- !u!114 &15 +--- !u!114 &14 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -1046,18 +1049,18 @@ MonoBehaviour: m_Children: [] m_Position: serializedVersion: 2 - x: 684 + x: 686 y: 0 - width: 914 - height: 721 + width: 802 + height: 790 m_MinSize: {x: 102, y: 121} m_MaxSize: {x: 4002, y: 4021} - m_ActualView: {fileID: 16} + m_ActualView: {fileID: 15} m_Panes: - - {fileID: 16} + - {fileID: 15} m_Selected: 0 m_LastSelected: 0 ---- !u!114 &16 +--- !u!114 &15 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -1078,16 +1081,16 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 696 - y: 643 - width: 912 - height: 700 + x: 698 + y: 574 + width: 800 + height: 769 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: m_LastAppliedPresetName: Default m_SaveData: [] m_OverlaysVisible: 1 ---- !u!114 &17 +--- !u!114 &16 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -1102,10 +1105,10 @@ MonoBehaviour: m_Children: [] m_Position: serializedVersion: 2 - x: 1598 + x: 1488 y: 0 - width: 457 - height: 721 + width: 567 + height: 790 m_MinSize: {x: 202, y: 221} m_MaxSize: {x: 4002, y: 4021} m_ActualView: {fileID: 2} @@ -1113,7 +1116,7 @@ MonoBehaviour: - {fileID: 2} m_Selected: 0 m_LastSelected: 0 ---- !u!114 &18 +--- !u!114 &17 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -1134,12 +1137,12 @@ MonoBehaviour: height: 1283 m_MinSize: {x: 276, y: 71} m_MaxSize: {x: 4001, y: 4021} - m_ActualView: {fileID: 19} + m_ActualView: {fileID: 18} m_Panes: - - {fileID: 19} + - {fileID: 18} m_Selected: 0 m_LastSelected: 0 ---- !u!114 &19 +--- !u!114 &18 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -1172,7 +1175,7 @@ MonoBehaviour: m_ObjectsLockedBeforeSerialization: [] m_InstanceIDsLockedBeforeSerialization: m_PreviewResizer: - m_CachedPref: -560 + m_CachedPref: 518 m_ControlHash: -371814159 m_PrefName: Preview_InspectorPreview m_LastInspectedObjectInstanceID: -1 diff --git a/wb_unity_pro/UserSettings/Layouts/default-2021.dwlt b/wb_unity_pro/UserSettings/Layouts/default-2021.dwlt index 1d5e698..c3dec50 100644 --- a/wb_unity_pro/UserSettings/Layouts/default-2021.dwlt +++ b/wb_unity_pro/UserSettings/Layouts/default-2021.dwlt @@ -119,7 +119,7 @@ MonoBehaviour: m_MinSize: {x: 400, y: 200} m_MaxSize: {x: 32384, y: 16192} vertical: 0 - controlID: 195 + controlID: 19 --- !u!114 &6 MonoBehaviour: m_ObjectHideFlags: 52 @@ -144,7 +144,7 @@ MonoBehaviour: m_MinSize: {x: 300, y: 200} m_MaxSize: {x: 24288, y: 16192} vertical: 1 - controlID: 123 + controlID: 113 --- !u!114 &7 MonoBehaviour: m_ObjectHideFlags: 52 @@ -165,11 +165,11 @@ MonoBehaviour: x: 0 y: 0 width: 2055 - height: 534 + height: 493 m_MinSize: {x: 200, y: 100} m_MaxSize: {x: 16192, y: 8096} vertical: 0 - controlID: 124 + controlID: 114 --- !u!114 &8 MonoBehaviour: m_ObjectHideFlags: 52 @@ -188,7 +188,7 @@ MonoBehaviour: x: 0 y: 0 width: 458 - height: 534 + height: 493 m_MinSize: {x: 201, y: 221} m_MaxSize: {x: 4001, y: 4021} m_ActualView: {fileID: 16} @@ -214,7 +214,7 @@ MonoBehaviour: x: 458 y: 0 width: 1597 - height: 534 + height: 493 m_MinSize: {x: 202, y: 221} m_MaxSize: {x: 4002, y: 4021} m_ActualView: {fileID: 20} @@ -224,7 +224,7 @@ MonoBehaviour: - {fileID: 19} - {fileID: 20} m_Selected: 3 - m_LastSelected: 2 + m_LastSelected: 1 --- !u!114 &10 MonoBehaviour: m_ObjectHideFlags: 52 @@ -244,13 +244,13 @@ MonoBehaviour: m_Position: serializedVersion: 2 x: 0 - y: 534 + y: 493 width: 2055 - height: 749 + height: 790 m_MinSize: {x: 300, y: 100} m_MaxSize: {x: 24288, y: 8096} vertical: 0 - controlID: 165 + controlID: 65 --- !u!114 &11 MonoBehaviour: m_ObjectHideFlags: 52 @@ -268,8 +268,8 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 684 - height: 749 + width: 686 + height: 790 m_MinSize: {x: 231, y: 271} m_MaxSize: {x: 10001, y: 10021} m_ActualView: {fileID: 21} @@ -292,10 +292,10 @@ MonoBehaviour: m_Children: [] m_Position: serializedVersion: 2 - x: 684 + x: 686 y: 0 - width: 804 - height: 749 + width: 802 + height: 790 m_MinSize: {x: 102, y: 121} m_MaxSize: {x: 4002, y: 4021} m_ActualView: {fileID: 22} @@ -321,7 +321,7 @@ MonoBehaviour: x: 1488 y: 0 width: 567 - height: 749 + height: 790 m_MinSize: {x: 202, y: 221} m_MaxSize: {x: 4002, y: 4021} m_ActualView: {fileID: 15} @@ -348,8 +348,8 @@ MonoBehaviour: y: 0 width: 445 height: 1283 - m_MinSize: {x: 275, y: 50} - m_MaxSize: {x: 4000, y: 4000} + m_MinSize: {x: 276, y: 71} + m_MaxSize: {x: 4001, y: 4021} m_ActualView: {fileID: 23} m_Panes: - {fileID: 23} @@ -377,9 +377,9 @@ MonoBehaviour: m_Pos: serializedVersion: 2 x: 1500 - y: 615 + y: 574 width: 565 - height: 728 + height: 769 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: m_LastAppliedPresetName: Default @@ -428,22 +428,22 @@ MonoBehaviour: x: 0 y: 21 width: 565 - height: 707 - m_Scale: {x: 0.27922592, y: 0.27922592} - m_Translation: {x: 282.5, y: 353.5} + height: 748 + m_Scale: {x: 0.29541865, y: 0.29541865} + m_Translation: {x: 282.5, y: 374} m_MarginLeft: 0 m_MarginRight: 0 m_MarginTop: 0 m_MarginBottom: 0 m_LastShownAreaInsideMargins: serializedVersion: 2 - x: -1011.7256 + x: -956.27 y: -1266 - width: 2023.4512 + width: 1912.54 height: 2532 m_MinimalGUI: 1 - m_defaultScale: 0.27922592 - m_LastWindowPixelSize: {x: 565, y: 728} + m_defaultScale: 0.29541865 + m_LastWindowPixelSize: {x: 565, y: 769} m_ClearInEditMode: 1 m_NoCameraWarning: 1 m_LowResolutionForAspectRatios: 01000001000000000000 @@ -473,7 +473,7 @@ MonoBehaviour: x: 12 y: 81 width: 457 - height: 513 + height: 472 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: m_LastAppliedPresetName: Default @@ -482,9 +482,9 @@ MonoBehaviour: m_SceneHierarchy: m_TreeViewState: scrollPos: {x: 0, y: 0} - m_SelectedIDs: 2631ffff - m_LastClickedID: 0 - m_ExpandedIDs: 3831ffff8c31ffff9c31ffffac31ffff2a32ffff3432ffff3e32ffff6832ffff1053ffff1a53ffff2453ffff4e53ffff2cfbffffe254000036550000 + m_SelectedIDs: 189d0000 + m_LastClickedID: 40216 + m_ExpandedIDs: 5aaafcff66aafcffb09c0000c09c0000da9c0000e49c0000f49c0000fc9c0000109d00002a9d0000349d0000389d0000489d0000509d0000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -529,10 +529,10 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 462 + x: 470 y: 81 - width: 1401 - height: 484 + width: 1595 + height: 513 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: m_LastAppliedPresetName: Default @@ -562,7 +562,7 @@ MonoBehaviour: x: 470 y: 81 width: 1595 - height: 473 + height: 513 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: m_LastAppliedPresetName: Default @@ -574,6 +574,8 @@ MonoBehaviour: - {fileID: 6493954791980047924, guid: 3d06c6180fdee4b4f934170a2ae76e29, type: 2} - {fileID: 1236729993981667375, guid: a77bfa5dcfc291748b7fb88e0754ca87, type: 2} - {fileID: -8850320641527390869, guid: db5d169666ca05c41b863adbbe697fcc, type: 2} + - {fileID: 8017737070514627443, guid: 981a69e23d26fde428f70211d6babd0e, type: 2} + - {fileID: -3236372629044136465, guid: a77c42034a9b1c34d914815329be7871, type: 2} m_ValueSerializationHelper: - e00: 0.9360825 e01: 0 @@ -639,11 +641,43 @@ MonoBehaviour: e31: 0 e32: 0 e33: 1 + - e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + - e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 m_PreviewAnimator: {fileID: 0} - m_AnimatorController: {fileID: 9100000, guid: db5d169666ca05c41b863adbbe697fcc, + m_AnimatorController: {fileID: 9100000, guid: a77c42034a9b1c34d914815329be7871, type: 2} m_BreadCrumbs: - - m_Target: {fileID: -8850320641527390869, guid: db5d169666ca05c41b863adbbe697fcc, + - m_Target: {fileID: -3236372629044136465, guid: a77c42034a9b1c34d914815329be7871, type: 2} m_ScrollPosition: {x: 0, y: 0} stateMachineGraph: {fileID: 0} @@ -681,7 +715,7 @@ MonoBehaviour: x: 470 y: 81 width: 1595 - height: 473 + height: 513 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: m_LastAppliedPresetName: Default @@ -689,7 +723,7 @@ MonoBehaviour: m_OverlaysVisible: 1 m_LockTracker: m_IsLocked: 0 - m_LastSelectedObjectID: 133458 + m_LastSelectedObjectID: 21946 --- !u!114 &20 MonoBehaviour: m_ObjectHideFlags: 52 @@ -714,7 +748,7 @@ MonoBehaviour: x: 470 y: 81 width: 1595 - height: 513 + height: 472 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: m_LastAppliedPresetName: Default @@ -725,7 +759,7 @@ MonoBehaviour: collapsed: 0 displayed: 1 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: -101, y: -26} + snapOffsetDelta: {x: -101, y: -1} snapCorner: 3 id: Tool Settings index: 0 @@ -758,7 +792,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 25} snapCorner: 1 id: unity-search-toolbar index: 1 @@ -769,7 +803,7 @@ MonoBehaviour: collapsed: 0 displayed: 1 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 25} snapCorner: 0 id: unity-transform-toolbar index: 0 @@ -802,7 +836,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 25} snapCorner: 0 id: Scene View/Light Settings index: 0 @@ -813,7 +847,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 25} snapCorner: 0 id: Scene View/Camera index: 1 @@ -824,7 +858,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 25} snapCorner: 0 id: Scene View/Cloth Constraints index: 2 @@ -835,7 +869,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 25} snapCorner: 0 id: Scene View/Cloth Collisions index: 3 @@ -846,7 +880,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 25} snapCorner: 0 id: Scene View/Navmesh Display index: 5 @@ -857,7 +891,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 25} snapCorner: 0 id: Scene View/Agent Display index: 7 @@ -868,7 +902,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 25} snapCorner: 0 id: Scene View/Obstacle Display index: 9 @@ -879,7 +913,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 25} snapCorner: 0 id: Scene View/Occlusion Culling index: 4 @@ -890,7 +924,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 25} snapCorner: 0 id: Scene View/Physics Debugger index: 6 @@ -901,7 +935,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 25} snapCorner: 0 id: Scene View/Scene Visibility index: 8 @@ -912,7 +946,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 25} snapCorner: 0 id: Scene View/Particles index: 10 @@ -956,7 +990,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 25} snapCorner: 0 id: Scene View/Open Tile Palette index: 2 @@ -967,7 +1001,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 0} + snapOffsetDelta: {x: 0, y: 25} snapCorner: 0 id: Scene View/Tilemap Focus index: 3 @@ -975,17 +1009,17 @@ MonoBehaviour: m_OverlaysVisible: 1 m_WindowGUID: e07c16a66c31ae440bdbc5a34c43feb6 m_Gizmos: 1 - m_OverrideSceneCullingMask: 6917529027641081856 - m_SceneIsLit: 1 + m_OverrideSceneCullingMask: 0 + m_SceneIsLit: 0 m_SceneLighting: 1 m_2DMode: 1 m_isRotationLocked: 0 m_PlayAudio: 0 m_AudioPlay: 0 m_Position: - m_Target: {x: 1314.0447, y: 1667.7003, z: -2.5761037} + m_Target: {x: 405.76392, y: 1817.716, z: 11.247792} speed: 2 - m_Value: {x: 1314.0447, y: 1667.7003, z: -2.5761037} + m_Value: {x: 405.76392, y: 1817.716, z: 11.247792} m_RenderMode: 0 m_CameraMode: drawMode: 0 @@ -997,7 +1031,7 @@ MonoBehaviour: m_SceneViewState: m_AlwaysRefresh: 0 showFog: 1 - showSkybox: 1 + showSkybox: 0 showFlares: 1 showImageEffects: 1 showParticleSystems: 1 @@ -1036,9 +1070,9 @@ MonoBehaviour: speed: 2 m_Value: {x: 0, y: 0, z: 0, w: 1} m_Size: - m_Target: 1653.084 + m_Target: 269.8482 speed: 2 - m_Value: 1653.084 + m_Value: 269.8482 m_Ortho: m_Target: 1 speed: 2 @@ -1085,9 +1119,9 @@ MonoBehaviour: m_Pos: serializedVersion: 2 x: 12 - y: 615 - width: 683 - height: 728 + y: 574 + width: 685 + height: 769 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: m_LastAppliedPresetName: Default @@ -1104,23 +1138,23 @@ MonoBehaviour: m_SkipHidden: 1 m_SearchArea: 1 m_Folders: - - Assets/ART/base/prefab + - Assets/Scripts/Core m_Globs: [] m_OriginalText: m_FilterByTypeIntersection: 0 m_ViewMode: 1 m_StartGridSize: 16 m_LastFolders: - - Assets/ART/base/prefab + - Assets/Scripts/Core m_LastFoldersGridSize: 16 - m_LastProjectPath: D:\UnityProject\dezhouNew\dezhou_client\wb_unity_pro + m_LastProjectPath: D:\UnityProject\dezhou\dezhou_client\wb_unity_pro m_LockTracker: m_IsLocked: 0 m_FolderTreeState: - scrollPos: {x: 0, y: 192} - m_SelectedIDs: 0a560000 - m_LastClickedID: 22026 - m_ExpandedIDs: 00000000d4550000d6550000d8550000da550000dc550000de550000e0550000e2550000e4550000e6550000e8550000ea55000000ca9a3bffffff7f + scrollPos: {x: 0, y: 19} + m_SelectedIDs: 7c800000 + m_LastClickedID: 32892 + m_ExpandedIDs: 00000000c0550000e2550000f45500000274000006740000107400005288000000ca9a3bffffff7f m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -1148,7 +1182,7 @@ MonoBehaviour: scrollPos: {x: 0, y: 0} m_SelectedIDs: m_LastClickedID: 0 - m_ExpandedIDs: 00000000d4550000d6550000d8550000da550000dc550000de550000e0550000e2550000e4550000e6550000e8550000ea550000 + m_ExpandedIDs: 00000000c0550000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -1179,18 +1213,18 @@ MonoBehaviour: m_ExpandedInstanceIDs: c6230000d8c2000054c40000ba0c0100c49200006293000066660000167d0000ea85000038610000f85f0000dc5e00000a60000006600000ea5f000012600000ec5f0000987900005438030014600000106000009c6e040054640000165900001c590000a2c804005c730000725e0000645e000068a907007e5d00008a5e0000449c0e00a2970000665d0000765d0000785e0000fa920000f692000002930000f4920000f2980000c05d0000e8730000c4730000f2730000ecdc0400e2730000d6730000da730000e47300003a0d0400e25e0000de5e0000d25d0000e25d0000f25e0000ea5e0000cc5e0000fa5e0000dc5d00002e600000e85e0000de5d0000ca5f0000d25f0000005f0000ce590b00fe5e0000ec690000f4690000ee6900004e670000125f00004edfecff26b7ffffa89d00007a9d0000000000004ebc00001e560000b0010000ca570000f85700008c8a0000 m_RenameOverlay: m_UserAcceptedRename: 0 - m_Name: - m_OriginalName: + m_Name: imageShow + m_OriginalName: imageShow m_EditFieldRect: serializedVersion: 2 x: 0 y: 0 width: 0 height: 0 - m_UserData: 0 + m_UserData: -167552 m_IsWaitingForDelay: 0 m_IsRenaming: 0 - m_OriginalEventType: 11 + m_OriginalEventType: 0 m_IsRenamingFilename: 1 m_ClientGUIView: {fileID: 11} m_CreateAssetUtility: @@ -1225,10 +1259,10 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 696 - y: 615 - width: 802 - height: 728 + x: 698 + y: 574 + width: 800 + height: 769 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: m_LastAppliedPresetName: Default