diff --git a/lua_probject/base_project/Game/View/FilterView.lua b/lua_probject/base_project/Game/View/FilterView.lua index b4d8449..3fc4ff7 100644 --- a/lua_probject/base_project/Game/View/FilterView.lua +++ b/lua_probject/base_project/Game/View/FilterView.lua @@ -7,12 +7,10 @@ function FilterView.new() local self = setmetatable({}, { __index = M }) self.class = "FilterView" self._full = true - self:init() return self end -function M:Init() - self:InitView("base/prefab/ViewFilter.prefab", "base/prefab/ViewFilter") +function M:init() local view = self._view local bg = view.transform:GetComponent(typeof(UnityEngine.UI.Image)) @@ -26,17 +24,6 @@ function M:Init() ViewManager.ChangeView(ViewManager.View_MainNew) end) - self.filter = view.transform:Find("imagefilter") - self.filter.position = self.imagePoint.position - self.filter.gameObject:SetActive(false) - self.filter_itemCopy = self.filter:Find("scroll/Viewport/Content/item") - self.filter_itemCopy.gameObject:SetActive(false) - for index, value in ipairs(self.gamePlayData) do - local goFilterTemp = self.filter_itemCopy.gameObject - goFilterTemp = UnityEngine.GameObject.Instantiate(goFilterTemp, self.filter_itemCopy.parent, false) - goFilterTemp:SetActive(true) - end - self.titleCopy = view.transform:Find("scroll/Viewport/Content/imageTitle") self.itemCopy = view.transform:Find("scroll/Viewport/Content/item") self.titleCopy.gameObject:SetActive(false) @@ -55,10 +42,25 @@ function M:SetList(v) local tempCount = #self.list + 1 self.list[tempCount] = {} local title = UnityEngine.GameObject.Instantiate(self.titleCopy, self.titleCopy.parent, false) + local itemTs = UnityEngine.GameObject.Instantiate(self.itemCopy, self.itemCopy.transform.parent, + false) + local itemRank = UnityEngine.GameObject.Instantiate(self.itemCopy, self.itemCopy.transform.parent, + false) + self.list[tempCount].goTs = itemTs + self.list[tempCount].goRank = itemRank self.list[tempCount].goTitle = title title = title.transform:Find("textTitle") self.list[tempCount].textTitle = title:GetComponent(typeof(UnityEngine.UI.Text)) - self.list[tempCount].listItem = {} + self.list[tempCount].TS = {} + local subTitle = itemTs.transform:Find("textPersionNum") + subTitle = subTitle:GetComponent(typeof(UnityEngine.UI.Text)) + self.list[tempCount].TS.textTitle = subTitle + self.list[tempCount].TS.list = {} + self.list[tempCount].Rank = {} + subTitle = itemRank.transform:Find("textPersionNum") + subTitle = subTitle:GetComponent(typeof(UnityEngine.UI.Text)) + self.list[tempCount].Rank.textTitle = subTitle + self.list[tempCount].Rank.list = {} end self:ShowData(self.list[index], value) self.list[index].goTitle:SetActive(true) @@ -69,11 +71,61 @@ end function M:ShowData(val, v) local data = FilterData[v] val.textTitle.text = data.name - for index,value in ipairs(val.listItem) do + local listTs = val.TS.list + for index, value in ipairs(listTs) do value.goItem:SetActive(false) - -- value. end - val.goItem = UnityEngine.GameObject.Instantiate(self.titleItemCopy, self.titleItemCopy.transform.parent, false) + for index, value in ipairs(data.ts.data) do + if index > #listTs then + local tempItem = val.goTs.transform:Find("grid/btnItem") + tempItem.gameObject:SetActive(false) + local tempTs = {} + tempTs.goItem = UnityEngine.GameObject.Instantiate(tempItem, tempItem.parent, false) + tempTs.goItem.gameObject:SetActive(true) + tempTs.textName = tempTs.goItem.transform:Find("textName") + tempTs.textName = tempTs.textName:GetComponent(typeof(UnityEngine.UI.Text)) + tempTs.imageShow = tempTs.goItem.transform:Find("imageShow") + local btnItem = tempTs.goItem:GetComponent(typeof(UnityEngine.UI.Button)) + LuaUIHelper:AddButtonClick(btnItem, function(val) + self:OnClickItemTS(val) + end, index) + listTs[#listTs + 1] = tempTs + end + -- listTs[#listTs].textName.text = value + -- listTs[#listTs].goItem:SetActive(true) + end + + local listRank = val.Rank.list + for index, value in ipairs(listRank) do + value.goItem:SetActive(false) + end + for index, value in ipairs(listRank) do + if index > #listRank then + local tempItem = val.goTs.transform:Find("grid/btnItem") + tempItem.gameObject:SetActive(false) + local tempTs = {} + tempTs.goItem = UnityEngine.GameObject.Instantiate(tempItem, tempItem.parent, false) + tempTs.goItem:SetActive(true) + tempTs.textName = tempTs.goItem.transform:Find("textName") + tempTs.textName = tempTs:GetComponent(typeof(UnityEngine.UI.Text)) + tempTs.imageShow = tempTs.goItem.transform:Find("imageShow") + local btnItem = tempTs.goItem:GetComponent(typeof(UnityEngine.UI.Button)) + LuaUIHelper:AddButtonClick(btnItem, function(val) + self:OnClickItemRank(val) + end, index) + listRank[#listRank + 1] = tempTs + end + -- listRank[#listRank].textName.text = value + -- listRank[#listRank].goItem:SetActive(true) + end +end + +function M:OnClickItemTS(val) + +end + +function M:OnClickItemRank(val) + end return M diff --git a/lua_probject/base_project/Game/View/LobbyNew/LobbyHome.lua b/lua_probject/base_project/Game/View/LobbyNew/LobbyHome.lua index c438298..9702471 100644 --- a/lua_probject/base_project/Game/View/LobbyNew/LobbyHome.lua +++ b/lua_probject/base_project/Game/View/LobbyNew/LobbyHome.lua @@ -15,7 +15,13 @@ function M:init(view) local btnNews = view:Find("btnNews") self.btn__activepoint = btnNews:Find("imagePoint") btnNews = btnNews:GetComponent(typeof(UnityEngine.UI.Button)) - LuaUIHelper.AddButtonClick(btnNews, function() + 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() local viewTemp = UIManager.ShowUI(UIManager.ViewFilter) viewTemp:SetList(self.aar_title[self.enumTitle.Home].page) end) diff --git a/lua_probject/base_project/Game/View/LobbyView.lua b/lua_probject/base_project/Game/View/LobbyView.lua index 25b14b6..6a9e569 100644 --- a/lua_probject/base_project/Game/View/LobbyView.lua +++ b/lua_probject/base_project/Game/View/LobbyView.lua @@ -39,7 +39,7 @@ function LobbyView.new() return self end -function M:init(url) +function M:init() local view = self._view local bg = view.transform:GetComponent(typeof(UnityEngine.UI.Image)) 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 6a7b9bd..b39b2fd 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 a65e2d6..c8dfaa2 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/02684076-817a-4276-8583-e95bd40d6abc.vsidx b/wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/02684076-817a-4276-8583-e95bd40d6abc.vsidx deleted file mode 100644 index 70aef67..0000000 Binary files a/wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/02684076-817a-4276-8583-e95bd40d6abc.vsidx and /dev/null differ diff --git a/wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/0a9cc711-9842-4f5b-a23b-70f2320dc9f0.vsidx b/wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/0a9cc711-9842-4f5b-a23b-70f2320dc9f0.vsidx new file mode 100644 index 0000000..e85d2db Binary files /dev/null and b/wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/0a9cc711-9842-4f5b-a23b-70f2320dc9f0.vsidx differ diff --git a/wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/b5f1c205-3848-4ef7-a8ae-5afd22d02992.vsidx b/wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/e14af50f-c81f-4297-aa8f-8b205dbb575a.vsidx similarity index 100% rename from wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/b5f1c205-3848-4ef7-a8ae-5afd22d02992.vsidx rename to wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/e14af50f-c81f-4297-aa8f-8b205dbb575a.vsidx 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 7a3c3cc..790246c 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 @@ -3,23 +3,23 @@ "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\\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\\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\\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\\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\\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\\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\\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}" }, { @@ -54,11 +54,11 @@ "DocumentGroups": [ { "DockedWidth": 222, - "SelectedChildIndex": 0, + "SelectedChildIndex": 3, "Children": [ { "$type": "Document", - "DocumentIndex": 0, + "DocumentIndex": 2, "Title": "HotupdateWrap.cs", "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Source\\Generate\\HotupdateWrap.cs", "RelativeDocumentMoniker": "Assets\\Source\\Generate\\HotupdateWrap.cs", @@ -77,7 +77,7 @@ "RelativeDocumentMoniker": "Assets\\Scripts\\HotUpdate.cs", "ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\HotUpdate.cs", "RelativeToolTip": "Assets\\Scripts\\HotUpdate.cs", - "ViewState": "AgIAAJIAAAAAAAAAAAAAAKYAAAAmAAAAAAAAAA==", + "ViewState": "AgIAAJcAAAAAAAAAAAAAwK4AAAAAAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "WhenOpened": "2025-12-16T11:52:29.165Z", "EditorCaption": "" @@ -96,13 +96,13 @@ }, { "$type": "Document", - "DocumentIndex": 2, + "DocumentIndex": 0, "Title": "VerCheck.cs", "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\VerCheck.cs", "RelativeDocumentMoniker": "Assets\\Scripts\\VerCheck.cs", "ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\VerCheck.cs", "RelativeToolTip": "Assets\\Scripts\\VerCheck.cs", - "ViewState": "AgIAACgBAAAAAAAAAAAAwDkBAAAAAAAAAAAAAA==", + "ViewState": "AgIAALQBAAAAAAAAAAAIwM8BAAAtAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "WhenOpened": "2025-12-11T08:27:32.177Z", "EditorCaption": "" @@ -129,8 +129,7 @@ "RelativeToolTip": "Assets\\Scripts\\Core\\PageSliderManager.cs", "ViewState": "AgIAANIDAAAAAAAAAABIwAUEAAABAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", - "WhenOpened": "2025-12-08T06:38:38.347Z", - "EditorCaption": "" + "WhenOpened": "2025-12-08T06:38:38.347Z" }, { "$type": "Document", @@ -182,7 +181,7 @@ "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": "AgIAAHMBAAAAAAAAAAAAAIwBAAAAAAAAAAAAAA==", + "ViewState": "AgIAAAAAAAAAAAAAAAAAAIwBAAAAAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "WhenOpened": "2025-11-06T12:57:44.98Z", "EditorCaption": "" 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 790246c..3dbb64f 100644 --- a/wb_unity_pro/.vs/wb_unity_pro/v17/DocumentLayout.json +++ b/wb_unity_pro/.vs/wb_unity_pro/v17/DocumentLayout.json @@ -1,49 +1,49 @@ { "Version": 1, - "WorkspaceRootPath": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\", + "WorkspaceRootPath": "D:\\UnityProject\\dezhouNew\\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\\vercheck.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", + "AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|d:\\unityproject\\dezhounew\\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}", + "AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhouNew\\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\\source\\generate\\hotupdatewrap.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", + "AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhouNew\\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\\core\\luauihelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", + "AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|d:\\unityproject\\dezhounew\\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\\scripts\\core\\pageslidermanager.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", + "AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhouNew\\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\\customsettings.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", + "AbsoluteMoniker": "D:0:0:{D75A4DC2-9F64-A98D-0D87-0D117969F0D9}|Assembly-CSharp-Editor.csproj|D:\\UnityProject\\dezhouNew\\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:{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}", + "AbsoluteMoniker": "D:0:0:{D75A4DC2-9F64-A98D-0D87-0D117969F0D9}|Assembly-CSharp-Editor.csproj|D:\\UnityProject\\dezhouNew\\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}" }, { - "AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\core\\luauihelpertext.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", + "AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\assets\\scripts\\core\\luauihelpertext.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\core\\luauihelpertext.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\\luanetclient.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", + "AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\assets\\scripts\\core\\luanetclient.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\core\\luanetclient.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\\luauihelpersprite.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", + "AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\assets\\scripts\\core\\luauihelpersprite.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\core\\luauihelpersprite.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\\gameapplication.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", + "AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\assets\\scripts\\gameapplication.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\gameapplication.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" } ], @@ -60,35 +60,33 @@ "$type": "Document", "DocumentIndex": 2, "Title": "HotupdateWrap.cs", - "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Source\\Generate\\HotupdateWrap.cs", + "DocumentMoniker": "D:\\UnityProject\\dezhouNew\\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", + "ToolTip": "D:\\UnityProject\\dezhouNew\\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": "" + "WhenOpened": "2025-12-16T12:10:36.126Z" }, { "$type": "Document", "DocumentIndex": 1, "Title": "HotUpdate.cs", - "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\HotUpdate.cs", + "DocumentMoniker": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\HotUpdate.cs", "RelativeDocumentMoniker": "Assets\\Scripts\\HotUpdate.cs", - "ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\HotUpdate.cs", + "ToolTip": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\HotUpdate.cs", "RelativeToolTip": "Assets\\Scripts\\HotUpdate.cs", "ViewState": "AgIAAJcAAAAAAAAAAAAAwK4AAAAAAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", - "WhenOpened": "2025-12-16T11:52:29.165Z", - "EditorCaption": "" + "WhenOpened": "2025-12-16T11:52:29.165Z" }, { "$type": "Document", "DocumentIndex": 5, "Title": "CustomSettings.cs", - "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Editor\\CustomSettings.cs", + "DocumentMoniker": "D:\\UnityProject\\dezhouNew\\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", + "ToolTip": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Editor\\CustomSettings.cs", "RelativeToolTip": "Assets\\Scripts\\Editor\\CustomSettings.cs", "ViewState": "AgIAAJ4AAAAAAAAAAADgv7cAAAAkAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", @@ -98,11 +96,11 @@ "$type": "Document", "DocumentIndex": 0, "Title": "VerCheck.cs", - "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\VerCheck.cs", + "DocumentMoniker": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\VerCheck.cs", "RelativeDocumentMoniker": "Assets\\Scripts\\VerCheck.cs", - "ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\VerCheck.cs", + "ToolTip": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\VerCheck.cs", "RelativeToolTip": "Assets\\Scripts\\VerCheck.cs", - "ViewState": "AgIAALQBAAAAAAAAAAAIwM8BAAAtAAAAAAAAAA==", + "ViewState": "AgIAAAAAAAAAAAAAAAAAAEwAAABIAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "WhenOpened": "2025-12-11T08:27:32.177Z", "EditorCaption": "" @@ -111,9 +109,9 @@ "$type": "Document", "DocumentIndex": 6, "Title": "BuildBaseWindow.cs", - "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Editor\\BuildBaseWindow.cs", + "DocumentMoniker": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Editor\\BuildBaseWindow.cs", "RelativeDocumentMoniker": "Assets\\Scripts\\Editor\\BuildBaseWindow.cs", - "ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Editor\\BuildBaseWindow.cs", + "ToolTip": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Editor\\BuildBaseWindow.cs", "RelativeToolTip": "Assets\\Scripts\\Editor\\BuildBaseWindow.cs", "ViewState": "AgIAAGEAAAAAAAAAAAAUwHMAAAAxAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", @@ -123,9 +121,9 @@ "$type": "Document", "DocumentIndex": 4, "Title": "PageSliderManager.cs", - "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\PageSliderManager.cs", + "DocumentMoniker": "D:\\UnityProject\\dezhouNew\\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", + "ToolTip": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\PageSliderManager.cs", "RelativeToolTip": "Assets\\Scripts\\Core\\PageSliderManager.cs", "ViewState": "AgIAANIDAAAAAAAAAABIwAUEAAABAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", @@ -135,9 +133,9 @@ "$type": "Document", "DocumentIndex": 9, "Title": "LuaUIHelperSprite.cs", - "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelperSprite.cs", + "DocumentMoniker": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelperSprite.cs", "RelativeDocumentMoniker": "Assets\\Scripts\\Core\\LuaUIHelperSprite.cs", - "ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelperSprite.cs", + "ToolTip": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelperSprite.cs", "RelativeToolTip": "Assets\\Scripts\\Core\\LuaUIHelperSprite.cs", "ViewState": "AgIAAAAAAAAAAAAAAAAAAB8AAAAeAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", @@ -153,9 +151,9 @@ "$type": "Document", "DocumentIndex": 7, "Title": "LuaUIHelperText.cs", - "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelperText.cs", + "DocumentMoniker": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelperText.cs", "RelativeDocumentMoniker": "Assets\\Scripts\\Core\\LuaUIHelperText.cs", - "ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelperText.cs", + "ToolTip": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelperText.cs", "RelativeToolTip": "Assets\\Scripts\\Core\\LuaUIHelperText.cs", "ViewState": "AgIAAAAAAAAAAAAAAAAAABYAAAA0AAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", @@ -165,9 +163,9 @@ "$type": "Document", "DocumentIndex": 8, "Title": "LuaNetClient.cs", - "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaNetClient.cs", + "DocumentMoniker": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaNetClient.cs", "RelativeDocumentMoniker": "Assets\\Scripts\\Core\\LuaNetClient.cs", - "ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaNetClient.cs", + "ToolTip": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaNetClient.cs", "RelativeToolTip": "Assets\\Scripts\\Core\\LuaNetClient.cs", "ViewState": "AgIAAAAAAAAAAAAAAAAAABoAAAANAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", @@ -177,9 +175,9 @@ "$type": "Document", "DocumentIndex": 3, "Title": "LuaUIHelper.cs", - "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelper.cs", + "DocumentMoniker": "D:\\UnityProject\\dezhouNew\\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", + "ToolTip": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelper.cs", "RelativeToolTip": "Assets\\Scripts\\Core\\LuaUIHelper.cs", "ViewState": "AgIAAAAAAAAAAAAAAAAAAIwBAAAAAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", @@ -190,9 +188,9 @@ "$type": "Document", "DocumentIndex": 10, "Title": "GameApplication.cs", - "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\GameApplication.cs", + "DocumentMoniker": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\GameApplication.cs", "RelativeDocumentMoniker": "Assets\\Scripts\\GameApplication.cs", - "ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\GameApplication.cs", + "ToolTip": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\GameApplication.cs", "RelativeToolTip": "Assets\\Scripts\\GameApplication.cs", "ViewState": "AgIAAN4AAAAAAAAAAAArwOYAAAAFAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", diff --git a/wb_unity_pro/Assets/Scripts/VerCheck.cs b/wb_unity_pro/Assets/Scripts/VerCheck.cs index 8b2975d..3255089 100644 --- a/wb_unity_pro/Assets/Scripts/VerCheck.cs +++ b/wb_unity_pro/Assets/Scripts/VerCheck.cs @@ -74,7 +74,7 @@ public class VerCheck : MonoBehaviour //string init_url = "http://8.138.94.89:9898/NewFK/config/init2_1.json"; - string init_url = "http://8.148.219.235:19898/DZ/config/init.json"; + string init_url = "http://8.134.198.183:80/DZ/config/init.json"; if (isGFF == false && isDXYGFF == false) { diff --git a/wb_unity_pro/Logs/AssetImportWorker0-prev.log b/wb_unity_pro/Logs/AssetImportWorker0-prev.log index cf736cb..6fd5a9a 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/dezhou/dezhou_client/wb_unity_pro +D:/UnityProject/dezhouNew/dezhou_client/wb_unity_pro -logFile Logs/AssetImportWorker0.log -srvPort -55634 -Successfully changed project path to: D:/UnityProject/dezhou/dezhou_client/wb_unity_pro -D:/UnityProject/dezhou/dezhou_client/wb_unity_pro +58385 +Successfully changed project path to: D:/UnityProject/dezhouNew/dezhou_client/wb_unity_pro +D:/UnityProject/dezhouNew/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/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 [6944] Host "[IP] 192.168.1.203 [Port] 0 [Flags] 2 [Guid] 2028322093 [EditorId] 2028322093 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-7R8JEQQ) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... +Player connection [51312] Host "[IP] 192.168.0.6 [Port] 0 [Flags] 2 [Guid] 2192354976 [EditorId] 2192354976 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-7R8JEQQ) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... -Player connection [6944] Host "[IP] 192.168.1.203 [Port] 0 [Flags] 2 [Guid] 2028322093 [EditorId] 2028322093 [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 [51312] Host "[IP] 192.168.0.6 [Port] 0 [Flags] 2 [Guid] 2192354976 [EditorId] 2192354976 [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 730.43 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 65.81 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/dezhou/dezhou_client/wb_unity_pro/Assets +[Subsystems] Discovering subsystems at path D:/UnityProject/dezhouNew/dezhou_client/wb_unity_pro/Assets GfxDevice: creating device client; threaded=0; jobified=0 Direct3D: Version: Direct3D 11.0 [level 11.1] @@ -69,554 +69,111 @@ 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:56328 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56188 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.676075 seconds. +Registered in 0.002932 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 329 ms -Refreshing native plugins compatible for Editor in 47.59 ms, found 3 plugins. +Unauthorized device detected, Id: 8AQX0WZPP, please add debug authorization and reconnect. +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:LogFormat (UnityEngine.LogType,string,object[]) +UnityEngine.Debug:LogFormat (string,object[]) +UnityEditor.Android.AndroidDeploymentTargetsExtension:GetKnownTargets (UnityEditor.DeploymentTargets.IDeploymentTargetsMainThreadContext,UnityEditor.ProgressHandler) +UnityEditor.Android.TargetScanWorker:ScanSync () +UnityEditor.Android.TargetExtension:OnUsbDevicesChanged (UnityEditor.Hardware.UsbDevice[]) +UnityEditor.Android.TargetExtension:OnLoad () +UnityEditor.Modules.ModuleManager:InitializePlatformSupportModules () + +Android Extension - Scanning For ADB Devices 238 ms +Refreshing native plugins compatible for Editor in 49.54 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 9.943 seconds +- Completed reload, in 0.898 seconds Domain Reload Profiling: - ReloadAssembly (9943ms) - BeginReloadAssembly (6051ms) + ReloadAssembly (899ms) + BeginReloadAssembly (95ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (1ms) - EndReloadAssembly (2748ms) - LoadAssemblies (6058ms) + EndReloadAssembly (711ms) + LoadAssemblies (94ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (1865ms) + SetupTypeCache (120ms) ReleaseScriptCaches (0ms) - RebuildScriptCaches (29ms) - SetupLoadedEditorAssemblies (806ms) + RebuildScriptCaches (31ms) + SetupLoadedEditorAssemblies (519ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (613ms) + InitializePlatformSupportModulesInManaged (320ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (48ms) + RefreshPlugins (50ms) BeforeProcessingInitializeOnLoad (1ms) - ProcessInitializeOnLoadAttributes (95ms) - ProcessInitializeOnLoadMethodAttributes (49ms) + ProcessInitializeOnLoadAttributes (101ms) + ProcessInitializeOnLoadMethodAttributes (46ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (0ms) Platform modules already initialized, skipping Registering precompiled user dll's ... -Registered in 1.952438 seconds. +Registered in 0.005411 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. +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 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 9.344 seconds +- Completed reload, in 1.584 seconds Domain Reload Profiling: - ReloadAssembly (9345ms) - BeginReloadAssembly (120ms) + ReloadAssembly (1585ms) + BeginReloadAssembly (133ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (19ms) - EndReloadAssembly (9025ms) - LoadAssemblies (5680ms) + CreateAndSetChildDomain (21ms) + EndReloadAssembly (1357ms) + LoadAssemblies (100ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (1012ms) + SetupTypeCache (220ms) ReleaseScriptCaches (0ms) - RebuildScriptCaches (50ms) - SetupLoadedEditorAssemblies (2265ms) + RebuildScriptCaches (53ms) + SetupLoadedEditorAssemblies (965ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) + InitializePlatformSupportModulesInManaged (23ms) SetLoadedEditorAssemblies (1ms) RefreshPlugins (1ms) BeforeProcessingInitializeOnLoad (63ms) - ProcessInitializeOnLoadAttributes (835ms) - ProcessInitializeOnLoadMethodAttributes (1342ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) -Platform modules already initialized, skipping -======================================================================== -Worker process is ready to serve import requests -Launched and connected shader compiler UnityShaderCompiler.exe after 0.12 seconds -Refreshing native plugins compatible for Editor in 1.00 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.5 MB. -Total: 6.280300 ms (FindLiveObjects: 0.219500 ms CreateObjectMapping: 0.150300 ms MarkObjects: 5.825700 ms DeleteObjects: 0.084000 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: 85650.131751 seconds. - path: Assets/ART/base/prefab/ViewCreateCardGame.prefab - artifactKey: Guid(5e5ecbfd1cf420d42a098abab731fe3c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/ART/base/prefab/ViewCreateCardGame.prefab using Guid(5e5ecbfd1cf420d42a098abab731fe3c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4ac1b7a822bc5a8ae11b1f4cc1a0d545') in 0.138613 seconds -Number of asset objects unloaded after import = 2124 -======================================================================== -Received Import Request. - Time since last request: 0.000037 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: 'fa56efb9aa25b3e5bf233c1a2e8e34d0') in 0.025505 seconds -Number of asset objects unloaded after import = 121 -======================================================================== -Received Import Request. - Time since last request: 0.000026 seconds. - path: Assets/ART/base/lobby/lobby/lobbyMe.prefab - artifactKey: Guid(31c7325634e43f14d86b8d9f2f28ab32) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/ART/base/lobby/lobby/lobbyMe.prefab using Guid(31c7325634e43f14d86b8d9f2f28ab32) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8e78b4ceeb5a13976f167b9d03e0b3af') in 0.032503 seconds -Number of asset objects unloaded after import = 220 -======================================================================== -Received Import Request. - Time since last request: 924.518008 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: '945bdafbf2dbb8e4a3de03e6850facd7') in 0.123869 seconds -Number of asset objects unloaded after import = 3 -======================================================================== -Received Import Request. - Time since last request: 9.134863 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: '9d75993698fd9d89ee3420fc638b71cb') in 0.013544 seconds -Number of asset objects unloaded after import = 3 -======================================================================== -Received Import Request. - Time since last request: 20.296406 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: '84671ccc36ace3a52c55d48b763f1265') in 0.020472 seconds -Number of asset objects unloaded after import = 3 -======================================================================== -Received Import Request. - Time since last request: 8.042605 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: '975572a8a4d1224dfc8a7cba0c70b59f') in 0.011372 seconds -Number of asset objects unloaded after import = 3 -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.007196 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.526 seconds -Domain Reload Profiling: - ReloadAssembly (1526ms) - BeginReloadAssembly (149ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (41ms) - EndReloadAssembly (1287ms) - LoadAssemblies (98ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (216ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (911ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (56ms) - ProcessInitializeOnLoadAttributes (696ms) - ProcessInitializeOnLoadMethodAttributes (131ms) - 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 102 unused Assets / (28.1 KB). Loaded Objects now: 3039. -Memory consumption went from 104.5 MB to 104.5 MB. -Total: 6.532500 ms (FindLiveObjects: 0.207300 ms CreateObjectMapping: 0.117300 ms MarkObjects: 6.104300 ms DeleteObjects: 0.102100 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.005270 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.596 seconds -Domain Reload Profiling: - ReloadAssembly (1597ms) - BeginReloadAssembly (152ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (40ms) - EndReloadAssembly (1352ms) - LoadAssemblies (104ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (222ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (45ms) - SetupLoadedEditorAssemblies (959ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (57ms) - ProcessInitializeOnLoadAttributes (733ms) - ProcessInitializeOnLoadMethodAttributes (140ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -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: 3042. -Memory consumption went from 104.5 MB to 104.5 MB. -Total: 6.570400 ms (FindLiveObjects: 0.252700 ms CreateObjectMapping: 0.119800 ms MarkObjects: 6.141700 ms DeleteObjects: 0.054800 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.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 (146ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - EndReloadAssembly (1282ms) - LoadAssemblies (101ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (220ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (48ms) - SetupLoadedEditorAssemblies (890ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (25ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (57ms) - ProcessInitializeOnLoadAttributes (676ms) - ProcessInitializeOnLoadMethodAttributes (129ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.31 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 104.5 MB to 104.5 MB. -Total: 6.418100 ms (FindLiveObjects: 0.204400 ms CreateObjectMapping: 0.124200 ms MarkObjects: 6.047400 ms DeleteObjects: 0.040900 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: 1959.827648 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: '88a7a79f2afbba05ad687c3288d344da') in 0.049134 seconds -Number of asset objects unloaded after import = 157 -======================================================================== -Received Import Request. - Time since last request: 536.467185 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: 'd1e4cf6ec0fb3efdbfdd3564bd12c2a7') in 0.015894 seconds -Number of asset objects unloaded after import = 157 -======================================================================== -Received Import Request. - Time since last request: 5.581960 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/ART/base/lobby/lobby/lobbyUnit.prefab using Guid(6cd8359f58262c147afc2d4a145ac1a4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3c011792e0f3f42e7170d312f486aa64') in 0.068408 seconds -Number of asset objects unloaded after import = 592 -======================================================================== -Received Import Request. - Time since last request: 370.160772 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/Unit using Guid(ea51e2edffd1b764f8e14f9b63a02a53) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c71382b865a383581a37a576481a23ee') in 0.010490 seconds -Number of asset objects unloaded after import = 0 -======================================================================== -Received Import Request. - Time since last request: 34.781551 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/ART/base/lobby/lobby/lobbyUnit.prefab using Guid(6cd8359f58262c147afc2d4a145ac1a4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8db6786b4c7bdec152842f13ca4a5d48') in 0.023355 seconds -Number of asset objects unloaded after import = 597 -======================================================================== -Received Import Request. - Time since last request: 44.482088 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/base/lobby/lobby/Unit/unitJoin.prefab using Guid(cad44be611c9a2543bd4c59655b9e5bc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6a65aaa342fc8d57c8be7ab08c8c465c') in 0.013792 seconds -Number of asset objects unloaded after import = 62 -======================================================================== -Received Import Request. - Time since last request: 31.359010 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/Unit/unitJoinNone.prefab using Guid(25b9fc77e6fff824ca020ad62fd287a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4990f00138dbb95c508378edcc9b9f14') in 0.014317 seconds -Number of asset objects unloaded after import = 68 -======================================================================== -Received Import Request. - Time since last request: 42.292474 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: '209d861ada8b77e36be092d9f4c4a995') in 0.021227 seconds -Number of asset objects unloaded after import = 329 -======================================================================== -Received Import Request. - Time since last request: 263.974962 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/base/lobby/lobby/Unit/unitlist.prefab using Guid(92858ce573c311a42b3f00c1588e4c10) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ebd0905f340a3d4332f314c3c48a948b') in 0.014434 seconds -Number of asset objects unloaded after import = 104 -======================================================================== -Received Import Request. - Time since last request: 182.025720 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/base/lobby/lobby/Unit/unitJoinTable.prefab using Guid(fab4da13989fdfa4ea8f3dce81b95b84) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '56790f30b0cfcea3c5b0048904693008') in 0.013609 seconds -Number of asset objects unloaded after import = 48 -======================================================================== -Received Import Request. - Time since last request: 824.832428 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/base/lobby/lobby/Unit/unitList.prefab using Guid(92858ce573c311a42b3f00c1588e4c10) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '700cd52221e6ff42124b91381d7ffe0d') in 0.016002 seconds -Number of asset objects unloaded after import = 104 -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005153 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.737 seconds -Domain Reload Profiling: - ReloadAssembly (1737ms) - BeginReloadAssembly (188ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (68ms) - EndReloadAssembly (1422ms) - LoadAssemblies (113ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (284ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (54ms) - SetupLoadedEditorAssemblies (934ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (25ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (59ms) - ProcessInitializeOnLoadAttributes (700ms) + ProcessInitializeOnLoadAttributes (729ms) ProcessInitializeOnLoadMethodAttributes (145ms) 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 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 101 unused Assets / (27.3 KB). Loaded Objects now: 3048. -Memory consumption went from 104.6 MB to 104.6 MB. -Total: 6.753200 ms (FindLiveObjects: 0.238000 ms CreateObjectMapping: 0.158800 ms MarkObjects: 6.292000 ms DeleteObjects: 0.062700 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.009981 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.591 seconds -Domain Reload Profiling: - ReloadAssembly (1592ms) - BeginReloadAssembly (164ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - EndReloadAssembly (1327ms) - LoadAssemblies (116ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (223ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (935ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (25ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (56ms) - ProcessInitializeOnLoadAttributes (710ms) - ProcessInitializeOnLoadMethodAttributes (141ms) - 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. +======================================================================== +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.03 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: 3051. -Memory consumption went from 104.6 MB to 104.6 MB. -Total: 7.808300 ms (FindLiveObjects: 0.212200 ms CreateObjectMapping: 0.126900 ms MarkObjects: 7.061900 ms DeleteObjects: 0.406100 ms) +Unloading 2636 Unused Serialized files (Serialized files now loaded: 0) +Unloading 107 unused Assets / (49.8 KB). Loaded Objects now: 3027. +Memory consumption went from 100.8 MB to 100.8 MB. +Total: 7.314500 ms (FindLiveObjects: 0.222100 ms CreateObjectMapping: 0.146400 ms MarkObjects: 6.851000 ms DeleteObjects: 0.093600 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -632,71 +189,34 @@ AssetImportParameters requested are different than current active one (requested custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005378 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.41 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.598 seconds -Domain Reload Profiling: - ReloadAssembly (1599ms) - BeginReloadAssembly (164ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (42ms) - EndReloadAssembly (1334ms) - LoadAssemblies (113ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (240ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (49ms) - SetupLoadedEditorAssemblies (915ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (26ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (62ms) - 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.40 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 104.6 MB to 104.6 MB. -Total: 6.934200 ms (FindLiveObjects: 0.221400 ms CreateObjectMapping: 0.160200 ms MarkObjects: 6.508000 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 Import Request. + Time since last request: 279997.209134 seconds. + path: Assets/start.unity + artifactKey: Guid(de70acb6ffbcb994d947d641afbda120) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/start.unity using Guid(de70acb6ffbcb994d947d641afbda120) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bc12135138239a12bd497678b45f598d') in 0.015975 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 182.945430 seconds. + path: Assets/Scripts/VerCheck.cs + artifactKey: Guid(1f07c38cc7956b5489312497f1b51eac) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Scripts/VerCheck.cs using Guid(1f07c38cc7956b5489312497f1b51eac) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.068903 seconds code(4) message(Build asset version error: assets/scripts/vercheck.cs in SourceAssetDB has modification time of '2025-12-18T11:45:41.6508806Z' while content on disk has modification time of '2025-12-18T11:45:41.7942152Z') + ERROR: Build asset version error: assets/scripts/vercheck.cs in SourceAssetDB has modification time of '2025-12-18T11:45:41.6508806Z' while content on disk has modification time of '2025-12-18T11:45:41.7942152Z' +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 13.192935 seconds. + path: Assets/Scripts/VerCheck.cs + artifactKey: Guid(1f07c38cc7956b5489312497f1b51eac) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Scripts/VerCheck.cs using Guid(1f07c38cc7956b5489312497f1b51eac) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ea30049443b3abe4988766028094df2b') in 0.009683 seconds +Number of asset objects unloaded after import = 0 ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.005571 seconds. +Registered in 0.009118 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory is not a mono symbol file Native extension for WindowsStandalone target not found @@ -707,3601 +227,84 @@ 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.697 seconds +- Completed reload, in 1.560 seconds Domain Reload Profiling: - ReloadAssembly (1698ms) - BeginReloadAssembly (165ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (41ms) - EndReloadAssembly (1369ms) - LoadAssemblies (128ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (255ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (51ms) - SetupLoadedEditorAssemblies (914ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (27ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (62ms) - 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.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.0 KB). Loaded Objects now: 3057. -Memory consumption went from 104.6 MB to 104.6 MB. -Total: 7.672500 ms (FindLiveObjects: 0.217000 ms CreateObjectMapping: 0.182600 ms MarkObjects: 7.213000 ms DeleteObjects: 0.058100 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.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.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.590 seconds -Domain Reload Profiling: - ReloadAssembly (1591ms) + ReloadAssembly (1561ms) BeginReloadAssembly (146ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - EndReloadAssembly (1347ms) - LoadAssemblies (107ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (246ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (49ms) - SetupLoadedEditorAssemblies (917ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (25ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (62ms) - ProcessInitializeOnLoadAttributes (686ms) - ProcessInitializeOnLoadMethodAttributes (139ms) - 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: 3060. -Memory consumption went from 104.6 MB to 104.6 MB. -Total: 7.405100 ms (FindLiveObjects: 0.228700 ms CreateObjectMapping: 0.145100 ms MarkObjects: 6.957700 ms DeleteObjects: 0.072600 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.007393 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.624 seconds -Domain Reload Profiling: - ReloadAssembly (1625ms) - BeginReloadAssembly (164ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (44ms) - EndReloadAssembly (1358ms) - LoadAssemblies (115ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (244ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (49ms) - SetupLoadedEditorAssemblies (933ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (55ms) - ProcessInitializeOnLoadAttributes (705ms) - ProcessInitializeOnLoadMethodAttributes (146ms) - 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 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3063. -Memory consumption went from 104.7 MB to 104.6 MB. -Total: 8.138100 ms (FindLiveObjects: 0.216700 ms CreateObjectMapping: 0.141900 ms MarkObjects: 7.730500 ms DeleteObjects: 0.047700 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.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.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.631 seconds -Domain Reload Profiling: - ReloadAssembly (1632ms) - BeginReloadAssembly (158ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - EndReloadAssembly (1367ms) - LoadAssemblies (111ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (246ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (64ms) - SetupLoadedEditorAssemblies (920ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (26ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (64ms) - ProcessInitializeOnLoadAttributes (694ms) - 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 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3066. -Memory consumption went from 104.7 MB to 104.6 MB. -Total: 7.250900 ms (FindLiveObjects: 0.216000 ms CreateObjectMapping: 0.125400 ms MarkObjects: 6.863200 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.005532 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.41 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.675 seconds -Domain Reload Profiling: - ReloadAssembly (1676ms) - BeginReloadAssembly (151ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - EndReloadAssembly (1428ms) - LoadAssemblies (107ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (250ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (105ms) - SetupLoadedEditorAssemblies (939ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (61ms) - ProcessInitializeOnLoadAttributes (708ms) - ProcessInitializeOnLoadMethodAttributes (141ms) - 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: 3069. -Memory consumption went from 104.7 MB to 104.6 MB. -Total: 7.794700 ms (FindLiveObjects: 0.218100 ms CreateObjectMapping: 0.197100 ms MarkObjects: 7.332600 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.014218 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.90 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.619 seconds -Domain Reload Profiling: - ReloadAssembly (1621ms) - BeginReloadAssembly (164ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (42ms) - EndReloadAssembly (1356ms) - LoadAssemblies (114ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (223ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (49ms) - SetupLoadedEditorAssemblies (952ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (25ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (2ms) - BeforeProcessingInitializeOnLoad (62ms) - ProcessInitializeOnLoadAttributes (716ms) - ProcessInitializeOnLoadMethodAttributes (142ms) - AfterProcessingInitializeOnLoad (4ms) - 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.0 KB). Loaded Objects now: 3072. -Memory consumption went from 104.7 MB to 104.6 MB. -Total: 7.542100 ms (FindLiveObjects: 0.213500 ms CreateObjectMapping: 0.123200 ms MarkObjects: 7.157900 ms DeleteObjects: 0.046900 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.009004 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.619 seconds -Domain Reload Profiling: - ReloadAssembly (1620ms) - BeginReloadAssembly (162ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (40ms) - EndReloadAssembly (1357ms) - LoadAssemblies (112ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (223ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (48ms) - SetupLoadedEditorAssemblies (958ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (56ms) - ProcessInitializeOnLoadAttributes (719ms) - ProcessInitializeOnLoadMethodAttributes (153ms) - 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 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3075. -Memory consumption went from 104.7 MB to 104.7 MB. -Total: 7.312100 ms (FindLiveObjects: 0.219600 ms CreateObjectMapping: 0.132200 ms MarkObjects: 6.915500 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.005624 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.609 seconds -Domain Reload Profiling: - ReloadAssembly (1610ms) - BeginReloadAssembly (177ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (41ms) - EndReloadAssembly (1332ms) - LoadAssemblies (130ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (241ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (49ms) - SetupLoadedEditorAssemblies (911ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (25ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (687ms) - ProcessInitializeOnLoadMethodAttributes (130ms) - 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 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3078. -Memory consumption went from 104.7 MB to 104.7 MB. -Total: 8.104200 ms (FindLiveObjects: 0.217600 ms CreateObjectMapping: 0.145600 ms MarkObjects: 7.693300 ms DeleteObjects: 0.046700 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.007024 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.602 seconds -Domain Reload Profiling: - ReloadAssembly (1602ms) - BeginReloadAssembly (166ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (43ms) - EndReloadAssembly (1331ms) - LoadAssemblies (116ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (230ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (46ms) - SetupLoadedEditorAssemblies (928ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (56ms) - ProcessInitializeOnLoadAttributes (705ms) - ProcessInitializeOnLoadMethodAttributes (139ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.26 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 104.7 MB to 104.7 MB. -Total: 7.833100 ms (FindLiveObjects: 0.251000 ms CreateObjectMapping: 0.215400 ms MarkObjects: 7.320700 ms DeleteObjects: 0.044800 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.016735 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.570 seconds -Domain Reload Profiling: - ReloadAssembly (1571ms) - BeginReloadAssembly (159ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (40ms) - EndReloadAssembly (1304ms) - LoadAssemblies (111ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (212ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (923ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (55ms) - ProcessInitializeOnLoadAttributes (702ms) - ProcessInitializeOnLoadMethodAttributes (141ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.25 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: 3084. -Memory consumption went from 104.7 MB to 104.7 MB. -Total: 6.354500 ms (FindLiveObjects: 0.227700 ms CreateObjectMapping: 0.132200 ms MarkObjects: 5.951800 ms DeleteObjects: 0.041800 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.005582 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.633 seconds -Domain Reload Profiling: - ReloadAssembly (1634ms) - BeginReloadAssembly (158ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - EndReloadAssembly (1370ms) - LoadAssemblies (118ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (246ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (53ms) - SetupLoadedEditorAssemblies (936ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (57ms) - ProcessInitializeOnLoadAttributes (716ms) - 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 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3087. -Memory consumption went from 104.7 MB to 104.7 MB. -Total: 6.606200 ms (FindLiveObjects: 0.216300 ms CreateObjectMapping: 0.121500 ms MarkObjects: 6.218900 ms DeleteObjects: 0.048600 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: 8297.342404 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/ART/base/lobby/lobby/lobbyUnit.prefab using Guid(6cd8359f58262c147afc2d4a145ac1a4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'af1eb87071f12f64f0cc902831948c3f') in 0.044013 seconds -Number of asset objects unloaded after import = 5 -======================================================================== -Received Import Request. - Time since last request: 43.804537 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: '8ac8d415ac43fc25949b62a7850d851e') in 0.041293 seconds -Number of asset objects unloaded after import = 329 -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005454 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.81 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 (1559ms) - BeginReloadAssembly (147ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - EndReloadAssembly (1302ms) - LoadAssemblies (99ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (220ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (50ms) - SetupLoadedEditorAssemblies (903ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (25ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (2ms) - BeforeProcessingInitializeOnLoad (60ms) - ProcessInitializeOnLoadAttributes (687ms) - 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 101 unused Assets / (27.3 KB). Loaded Objects now: 3090. -Memory consumption went from 104.7 MB to 104.7 MB. -Total: 6.629400 ms (FindLiveObjects: 0.217200 ms CreateObjectMapping: 0.129600 ms MarkObjects: 6.227800 ms DeleteObjects: 0.053200 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.005635 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.627 seconds -Domain Reload Profiling: - ReloadAssembly (1627ms) - BeginReloadAssembly (166ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (44ms) - EndReloadAssembly (1361ms) - LoadAssemblies (113ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (226ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (47ms) - SetupLoadedEditorAssemblies (958ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (25ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (63ms) - ProcessInitializeOnLoadAttributes (718ms) - ProcessInitializeOnLoadMethodAttributes (147ms) - 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 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3093. -Memory consumption went from 104.7 MB to 104.7 MB. -Total: 6.918300 ms (FindLiveObjects: 0.217900 ms CreateObjectMapping: 0.132200 ms MarkObjects: 6.521000 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 Import Request. - Time since last request: 1764.005605 seconds. - path: Assets/ART/ui/texture/animation/createcard_tag.controller - artifactKey: Guid(db5d169666ca05c41b863adbbe697fcc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/ART/ui/texture/animation/createcard_tag.controller using Guid(db5d169666ca05c41b863adbbe697fcc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a486ef14660afa2e1828e6b29822c561') in 0.074734 seconds -Number of asset objects unloaded after import = 8 -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.006253 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.521 seconds -Domain Reload Profiling: - ReloadAssembly (1522ms) - BeginReloadAssembly (148ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - EndReloadAssembly (1279ms) - LoadAssemblies (100ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (206ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (46ms) - SetupLoadedEditorAssemblies (910ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (54ms) - ProcessInitializeOnLoadAttributes (696ms) - ProcessInitializeOnLoadMethodAttributes (134ms) - 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.1 KB). Loaded Objects now: 3096. -Memory consumption went from 104.7 MB to 104.7 MB. -Total: 6.477300 ms (FindLiveObjects: 0.214700 ms CreateObjectMapping: 0.123100 ms MarkObjects: 6.098200 ms DeleteObjects: 0.040200 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.013813 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.761 seconds -Domain Reload Profiling: - ReloadAssembly (1761ms) - BeginReloadAssembly (176ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (10ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (44ms) - EndReloadAssembly (1466ms) - LoadAssemblies (122ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (316ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (45ms) - SetupLoadedEditorAssemblies (967ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (71ms) - ProcessInitializeOnLoadAttributes (724ms) - ProcessInitializeOnLoadMethodAttributes (143ms) - 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 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3099. -Memory consumption went from 104.7 MB to 104.7 MB. -Total: 6.220300 ms (FindLiveObjects: 0.249600 ms CreateObjectMapping: 0.166600 ms MarkObjects: 5.760800 ms DeleteObjects: 0.041900 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.014659 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.575 seconds -Domain Reload Profiling: - ReloadAssembly (1576ms) - BeginReloadAssembly (144ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (35ms) - EndReloadAssembly (1337ms) - LoadAssemblies (101ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (221ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (46ms) - SetupLoadedEditorAssemblies (941ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (58ms) - ProcessInitializeOnLoadAttributes (714ms) - ProcessInitializeOnLoadMethodAttributes (140ms) - 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.0 KB). Loaded Objects now: 3102. -Memory consumption went from 104.8 MB to 104.7 MB. -Total: 7.422000 ms (FindLiveObjects: 0.213200 ms CreateObjectMapping: 0.128000 ms MarkObjects: 7.033000 ms DeleteObjects: 0.046300 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.008616 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.613 seconds -Domain Reload Profiling: - ReloadAssembly (1614ms) - BeginReloadAssembly (168ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (41ms) - EndReloadAssembly (1346ms) - LoadAssemblies (122ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (222ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (48ms) - SetupLoadedEditorAssemblies (948ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (59ms) - ProcessInitializeOnLoadAttributes (716ms) - ProcessInitializeOnLoadMethodAttributes (146ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.62 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 104.8 MB to 104.7 MB. -Total: 7.832800 ms (FindLiveObjects: 0.218800 ms CreateObjectMapping: 0.136300 ms MarkObjects: 7.424100 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.005626 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.663 seconds -Domain Reload Profiling: - ReloadAssembly (1664ms) - BeginReloadAssembly (182ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (42ms) - EndReloadAssembly (1378ms) - LoadAssemblies (132ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (247ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (48ms) - SetupLoadedEditorAssemblies (950ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (25ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (57ms) - ProcessInitializeOnLoadAttributes (717ms) - ProcessInitializeOnLoadMethodAttributes (147ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.30 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: 3108. -Memory consumption went from 104.8 MB to 104.7 MB. -Total: 6.883500 ms (FindLiveObjects: 0.224600 ms CreateObjectMapping: 0.147600 ms MarkObjects: 6.462100 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.005420 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.522 seconds -Domain Reload Profiling: - ReloadAssembly (1523ms) - BeginReloadAssembly (143ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (33ms) - EndReloadAssembly (1285ms) - LoadAssemblies (98ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (216ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (47ms) - SetupLoadedEditorAssemblies (894ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (57ms) - ProcessInitializeOnLoadAttributes (683ms) - ProcessInitializeOnLoadMethodAttributes (127ms) - 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: 3111. -Memory consumption went from 104.8 MB to 104.8 MB. -Total: 7.791900 ms (FindLiveObjects: 0.282200 ms CreateObjectMapping: 0.174500 ms MarkObjects: 7.281100 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.007154 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.558 seconds -Domain Reload Profiling: - ReloadAssembly (1558ms) - BeginReloadAssembly (141ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (33ms) - EndReloadAssembly (1325ms) - LoadAssemblies (96ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (224ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (53ms) - SetupLoadedEditorAssemblies (923ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (25ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (59ms) - ProcessInitializeOnLoadAttributes (703ms) - 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 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3114. -Memory consumption went from 104.8 MB to 104.8 MB. -Total: 7.403900 ms (FindLiveObjects: 0.221800 ms CreateObjectMapping: 0.134400 ms MarkObjects: 6.996200 ms DeleteObjects: 0.050200 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.007065 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.583 seconds -Domain Reload Profiling: - ReloadAssembly (1583ms) - BeginReloadAssembly (152ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - EndReloadAssembly (1338ms) - LoadAssemblies (104ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (221ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (52ms) - SetupLoadedEditorAssemblies (937ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (26ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (60ms) - ProcessInitializeOnLoadAttributes (709ms) - ProcessInitializeOnLoadMethodAttributes (137ms) - 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 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3117. -Memory consumption went from 104.8 MB to 104.8 MB. -Total: 7.950300 ms (FindLiveObjects: 0.221500 ms CreateObjectMapping: 0.133800 ms MarkObjects: 7.547000 ms DeleteObjects: 0.046700 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.005732 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.587 seconds -Domain Reload Profiling: - ReloadAssembly (1588ms) - BeginReloadAssembly (148ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - EndReloadAssembly (1347ms) - LoadAssemblies (105ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (234ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (52ms) - SetupLoadedEditorAssemblies (920ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (61ms) - ProcessInitializeOnLoadAttributes (693ms) - ProcessInitializeOnLoadMethodAttributes (135ms) - AfterProcessingInitializeOnLoad (4ms) - 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.0 KB). Loaded Objects now: 3120. -Memory consumption went from 104.8 MB to 104.8 MB. -Total: 6.396000 ms (FindLiveObjects: 0.267900 ms CreateObjectMapping: 0.166600 ms MarkObjects: 5.914300 ms DeleteObjects: 0.046400 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: 4876.986893 seconds. - path: Assets/Scripts/Core/DSAnimationCurve.cs - artifactKey: Guid(d6a592d68c21c7e4883d842e20a96681) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/Scripts/Core/DSAnimationCurve.cs using Guid(d6a592d68c21c7e4883d842e20a96681) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '38c107f988a7bd99dce60f0b550ce370') in 0.026782 seconds -Number of asset objects unloaded after import = 0 -======================================================================== -Received Import Request. - Time since last request: 30.682166 seconds. - path: Assets/Scripts/VerCheck.cs - artifactKey: Guid(1f07c38cc7956b5489312497f1b51eac) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/Scripts/VerCheck.cs using Guid(1f07c38cc7956b5489312497f1b51eac) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '92f35f26d34c388369c110308d95bbc9') in 0.012212 seconds -Number of asset objects unloaded after import = 0 -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005209 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.75 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.557 seconds -Domain Reload Profiling: - ReloadAssembly (1558ms) - BeginReloadAssembly (148ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - EndReloadAssembly (1315ms) - LoadAssemblies (103ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (219ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (46ms) - SetupLoadedEditorAssemblies (921ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (2ms) - BeforeProcessingInitializeOnLoad (58ms) - ProcessInitializeOnLoadAttributes (695ms) - ProcessInitializeOnLoadMethodAttributes (140ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.31 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: 3123. -Memory consumption went from 104.8 MB to 104.8 MB. -Total: 7.804200 ms (FindLiveObjects: 0.252500 ms CreateObjectMapping: 0.198400 ms MarkObjects: 7.299900 ms DeleteObjects: 0.052400 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: 38.438142 seconds. - path: Assets/Scripts/VerCheck.cs - artifactKey: Guid(1f07c38cc7956b5489312497f1b51eac) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/Scripts/VerCheck.cs using Guid(1f07c38cc7956b5489312497f1b51eac) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.002215 seconds code(4) message(Build asset version error: assets/scripts/vercheck.cs in SourceAssetDB has modification time of '2025-12-16T11:22:08.1340076Z' while content on disk has modification time of '2025-12-16T11:22:08.2952988Z') - ERROR: Build asset version error: assets/scripts/vercheck.cs in SourceAssetDB has modification time of '2025-12-16T11:22:08.1340076Z' while content on disk has modification time of '2025-12-16T11:22:08.2952988Z' -Number of asset objects unloaded after import = 0 -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.006274 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.671 seconds -Domain Reload Profiling: - ReloadAssembly (1672ms) - BeginReloadAssembly (141ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (33ms) - EndReloadAssembly (1429ms) - LoadAssemblies (101ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (311ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (45ms) - SetupLoadedEditorAssemblies (950ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (74ms) - ProcessInitializeOnLoadAttributes (714ms) - ProcessInitializeOnLoadMethodAttributes (135ms) - 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 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3126. -Memory consumption went from 104.8 MB to 104.8 MB. -Total: 7.301500 ms (FindLiveObjects: 0.218700 ms CreateObjectMapping: 0.174100 ms MarkObjects: 6.863000 ms DeleteObjects: 0.044500 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: 8.493769 seconds. - path: Assets/Scripts/VerCheck.cs - artifactKey: Guid(1f07c38cc7956b5489312497f1b51eac) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/Scripts/VerCheck.cs using Guid(1f07c38cc7956b5489312497f1b51eac) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '17be3e6795cb0eb508e2d6310787d857') in 0.006442 seconds -Number of asset objects unloaded after import = 0 -======================================================================== -Received Import Request. - Time since last request: 148.919899 seconds. - path: Assets/StreamingAssets/init1_1.json - artifactKey: Guid(169434a041649d74dab90a6f8de2b39d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/StreamingAssets/init1_1.json using Guid(169434a041649d74dab90a6f8de2b39d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a70a4108f47e4bbf52c23bd08925385b') in 0.025932 seconds -Number of asset objects unloaded after import = 1 -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.007401 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.572 seconds -Domain Reload Profiling: - ReloadAssembly (1573ms) - BeginReloadAssembly (139ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (34ms) - EndReloadAssembly (1344ms) - LoadAssemblies (96ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (230ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (46ms) - SetupLoadedEditorAssemblies (939ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (60ms) - ProcessInitializeOnLoadAttributes (704ms) - ProcessInitializeOnLoadMethodAttributes (148ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -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: 3129. -Memory consumption went from 104.9 MB to 104.8 MB. -Total: 7.250900 ms (FindLiveObjects: 0.221100 ms CreateObjectMapping: 0.153800 ms MarkObjects: 6.827700 ms DeleteObjects: 0.046900 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.005305 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.532 seconds -Domain Reload Profiling: - ReloadAssembly (1533ms) - BeginReloadAssembly (148ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (37ms) - EndReloadAssembly (1290ms) - LoadAssemblies (105ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (210ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (49ms) - SetupLoadedEditorAssemblies (912ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (54ms) - ProcessInitializeOnLoadAttributes (698ms) - ProcessInitializeOnLoadMethodAttributes (133ms) - 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 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3132. -Memory consumption went from 104.9 MB to 104.8 MB. -Total: 6.382000 ms (FindLiveObjects: 0.218000 ms CreateObjectMapping: 0.131100 ms MarkObjects: 5.995600 ms DeleteObjects: 0.036400 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.006417 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.522 seconds -Domain Reload Profiling: - ReloadAssembly (1523ms) - BeginReloadAssembly (141ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (35ms) - EndReloadAssembly (1293ms) - LoadAssemblies (94ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (218ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (46ms) - SetupLoadedEditorAssemblies (909ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (58ms) - ProcessInitializeOnLoadAttributes (689ms) - ProcessInitializeOnLoadMethodAttributes (134ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.16 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: 3135. -Memory consumption went from 104.9 MB to 104.8 MB. -Total: 6.396500 ms (FindLiveObjects: 0.217000 ms CreateObjectMapping: 0.125100 ms MarkObjects: 6.002500 ms DeleteObjects: 0.051300 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.005581 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.629 seconds -Domain Reload Profiling: - ReloadAssembly (1630ms) - BeginReloadAssembly (153ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (35ms) - EndReloadAssembly (1337ms) - LoadAssemblies (125ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (231ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (48ms) - SetupLoadedEditorAssemblies (905ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (54ms) - ProcessInitializeOnLoadAttributes (686ms) - ProcessInitializeOnLoadMethodAttributes (137ms) - 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: 3138. -Memory consumption went from 104.9 MB to 104.8 MB. -Total: 6.861200 ms (FindLiveObjects: 0.230600 ms CreateObjectMapping: 0.144200 ms MarkObjects: 6.412500 ms DeleteObjects: 0.072400 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: 476.509880 seconds. - path: Assets/Scripts/HotUpdate.cs - artifactKey: Guid(3b6ad1ea35558f440ac62a5ab49cf528) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/Scripts/HotUpdate.cs using Guid(3b6ad1ea35558f440ac62a5ab49cf528) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '174a1e55a6d5173a63c570ef7e4ff790') in 0.018948 seconds -Number of asset objects unloaded after import = 0 -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005849 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.587 seconds -Domain Reload Profiling: - ReloadAssembly (1587ms) - BeginReloadAssembly (145ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (33ms) - EndReloadAssembly (1349ms) - LoadAssemblies (105ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (251ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (46ms) - SetupLoadedEditorAssemblies (927ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (25ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (56ms) - ProcessInitializeOnLoadAttributes (702ms) - ProcessInitializeOnLoadMethodAttributes (140ms) - 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.2 KB). Loaded Objects now: 3141. -Memory consumption went from 104.9 MB to 104.9 MB. -Total: 7.506900 ms (FindLiveObjects: 0.226000 ms CreateObjectMapping: 0.122800 ms MarkObjects: 7.109800 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.005575 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.538 seconds -Domain Reload Profiling: - ReloadAssembly (1539ms) - BeginReloadAssembly (142ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (35ms) - EndReloadAssembly (1307ms) - LoadAssemblies (97ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (225ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (45ms) - SetupLoadedEditorAssemblies (917ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (56ms) - ProcessInitializeOnLoadAttributes (700ms) - ProcessInitializeOnLoadMethodAttributes (133ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.43 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: 3144. -Memory consumption went from 104.9 MB to 104.9 MB. -Total: 6.955100 ms (FindLiveObjects: 0.227700 ms CreateObjectMapping: 0.134600 ms MarkObjects: 6.546700 ms DeleteObjects: 0.045000 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.006499 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.94 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 (1556ms) - BeginReloadAssembly (142ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (32ms) - EndReloadAssembly (1326ms) - LoadAssemblies (97ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (235ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (929ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (26ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (2ms) - BeforeProcessingInitializeOnLoad (61ms) - ProcessInitializeOnLoadAttributes (707ms) - ProcessInitializeOnLoadMethodAttributes (129ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -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 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3147. -Memory consumption went from 104.9 MB to 104.9 MB. -Total: 6.967500 ms (FindLiveObjects: 0.263100 ms CreateObjectMapping: 0.194600 ms MarkObjects: 6.463400 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 -Refreshing native plugins compatible for Editor in 17.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3147. -Memory consumption went from 54.2 MB to 54.2 MB. -Total: 7.022200 ms (FindLiveObjects: 0.235000 ms CreateObjectMapping: 0.155500 ms MarkObjects: 6.541500 ms DeleteObjects: 0.088700 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 -Refreshing native plugins compatible for Editor in 15.71 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3147. -Memory consumption went from 54.0 MB to 54.0 MB. -Total: 6.817800 ms (FindLiveObjects: 0.248400 ms CreateObjectMapping: 0.157800 ms MarkObjects: 6.368000 ms DeleteObjects: 0.042700 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 -Refreshing native plugins compatible for Editor in 15.86 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3147. -Memory consumption went from 54.0 MB to 54.0 MB. -Total: 7.560500 ms (FindLiveObjects: 0.273600 ms CreateObjectMapping: 0.163400 ms MarkObjects: 7.039300 ms DeleteObjects: 0.083300 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 -Refreshing native plugins compatible for Editor in 19.05 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3147. -Memory consumption went from 54.0 MB to 54.0 MB. -Total: 7.093200 ms (FindLiveObjects: 0.216300 ms CreateObjectMapping: 0.136000 ms MarkObjects: 6.694200 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 -Refreshing native plugins compatible for Editor in 16.18 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3147. -Memory consumption went from 54.0 MB to 54.0 MB. -Total: 6.826900 ms (FindLiveObjects: 0.239400 ms CreateObjectMapping: 0.168900 ms MarkObjects: 6.358100 ms DeleteObjects: 0.059400 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 -Refreshing native plugins compatible for Editor in 15.78 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3147. -Memory consumption went from 54.0 MB to 54.0 MB. -Total: 6.721000 ms (FindLiveObjects: 0.216100 ms CreateObjectMapping: 0.132600 ms MarkObjects: 6.325500 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 -Refreshing native plugins compatible for Editor in 16.14 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3147. -Memory consumption went from 54.0 MB to 54.0 MB. -Total: 7.570400 ms (FindLiveObjects: 0.230000 ms CreateObjectMapping: 0.157400 ms MarkObjects: 7.139300 ms DeleteObjects: 0.042400 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 -Refreshing native plugins compatible for Editor in 16.10 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3147. -Memory consumption went from 54.0 MB to 54.0 MB. -Total: 6.876600 ms (FindLiveObjects: 0.214100 ms CreateObjectMapping: 0.137500 ms MarkObjects: 6.478500 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 -Refreshing native plugins compatible for Editor in 16.01 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3147. -Memory consumption went from 54.0 MB to 54.0 MB. -Total: 6.844800 ms (FindLiveObjects: 0.222600 ms CreateObjectMapping: 0.139600 ms MarkObjects: 6.438400 ms DeleteObjects: 0.042700 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 -Refreshing native plugins compatible for Editor in 14.23 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3147. -Memory consumption went from 54.0 MB to 54.0 MB. -Total: 6.925100 ms (FindLiveObjects: 0.230800 ms CreateObjectMapping: 0.162200 ms MarkObjects: 6.488400 ms DeleteObjects: 0.042500 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 -Refreshing native plugins compatible for Editor in 16.04 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3147. -Memory consumption went from 54.0 MB to 54.0 MB. -Total: 6.458900 ms (FindLiveObjects: 0.218400 ms CreateObjectMapping: 0.128600 ms MarkObjects: 6.069500 ms DeleteObjects: 0.041200 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 -Refreshing native plugins compatible for Editor in 15.06 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3147. -Memory consumption went from 54.0 MB to 54.0 MB. -Total: 6.353800 ms (FindLiveObjects: 0.217400 ms CreateObjectMapping: 0.210900 ms MarkObjects: 5.878700 ms DeleteObjects: 0.046200 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 -Refreshing native plugins compatible for Editor in 14.64 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3147. -Memory consumption went from 54.0 MB to 54.0 MB. -Total: 6.803300 ms (FindLiveObjects: 0.210600 ms CreateObjectMapping: 0.133900 ms MarkObjects: 6.414300 ms DeleteObjects: 0.043100 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 -Refreshing native plugins compatible for Editor in 16.84 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3147. -Memory consumption went from 54.0 MB to 54.0 MB. -Total: 6.837300 ms (FindLiveObjects: 0.239000 ms CreateObjectMapping: 0.266800 ms MarkObjects: 6.285100 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 -Refreshing native plugins compatible for Editor in 15.27 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3147. -Memory consumption went from 54.0 MB to 54.0 MB. -Total: 6.112700 ms (FindLiveObjects: 0.221400 ms CreateObjectMapping: 0.153000 ms MarkObjects: 5.699300 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 Import Request. - Time since last request: 739.808564 seconds. - path: Assets/StreamingAssets/init1_1.json - artifactKey: Guid(169434a041649d74dab90a6f8de2b39d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/StreamingAssets/init1_1.json using Guid(169434a041649d74dab90a6f8de2b39d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1a41e143c8bcbe26017842ccc6665c7c') in 0.028890 seconds -Number of asset objects unloaded after import = 1 -======================================================================== -Received Prepare -Refreshing native plugins compatible for Editor in 16.84 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3147. -Memory consumption went from 54.0 MB to 54.0 MB. -Total: 6.807900 ms (FindLiveObjects: 0.214000 ms CreateObjectMapping: 0.125600 ms MarkObjects: 6.423800 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 Prepare -Refreshing native plugins compatible for Editor in 19.94 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3147. -Memory consumption went from 54.0 MB to 54.0 MB. -Total: 7.130700 ms (FindLiveObjects: 0.217200 ms CreateObjectMapping: 0.150800 ms MarkObjects: 6.711900 ms DeleteObjects: 0.049700 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 -Refreshing native plugins compatible for Editor in 15.82 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3147. -Memory consumption went from 54.0 MB to 54.0 MB. -Total: 6.612700 ms (FindLiveObjects: 0.218200 ms CreateObjectMapping: 0.147700 ms MarkObjects: 6.204200 ms DeleteObjects: 0.041600 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 -Refreshing native plugins compatible for Editor in 17.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3147. -Memory consumption went from 54.0 MB to 54.0 MB. -Total: 6.597100 ms (FindLiveObjects: 0.220300 ms CreateObjectMapping: 0.149000 ms MarkObjects: 6.184500 ms DeleteObjects: 0.042400 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 -Refreshing native plugins compatible for Editor in 16.93 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3147. -Memory consumption went from 54.0 MB to 54.0 MB. -Total: 7.334000 ms (FindLiveObjects: 0.222600 ms CreateObjectMapping: 0.160200 ms MarkObjects: 6.906900 ms DeleteObjects: 0.043200 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 -Refreshing native plugins compatible for Editor in 15.08 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3147. -Memory consumption went from 54.0 MB to 54.0 MB. -Total: 7.048800 ms (FindLiveObjects: 0.221100 ms CreateObjectMapping: 0.149700 ms MarkObjects: 6.635000 ms DeleteObjects: 0.041900 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 -Refreshing native plugins compatible for Editor in 14.95 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3147. -Memory consumption went from 54.0 MB to 54.0 MB. -Total: 7.134100 ms (FindLiveObjects: 0.213000 ms CreateObjectMapping: 0.126300 ms MarkObjects: 6.743700 ms DeleteObjects: 0.049600 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 -Refreshing native plugins compatible for Editor in 16.09 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3147. -Memory consumption went from 54.0 MB to 54.0 MB. -Total: 7.263100 ms (FindLiveObjects: 0.216500 ms CreateObjectMapping: 0.134900 ms MarkObjects: 6.819500 ms DeleteObjects: 0.090900 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 -Refreshing native plugins compatible for Editor in 15.72 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3147. -Memory consumption went from 54.0 MB to 54.0 MB. -Total: 7.821300 ms (FindLiveObjects: 0.219400 ms CreateObjectMapping: 0.140200 ms MarkObjects: 7.365700 ms DeleteObjects: 0.094800 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 -Refreshing native plugins compatible for Editor in 15.66 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3147. -Memory consumption went from 54.0 MB to 54.0 MB. -Total: 7.139700 ms (FindLiveObjects: 0.218800 ms CreateObjectMapping: 0.142800 ms MarkObjects: 6.734200 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 -Refreshing native plugins compatible for Editor in 15.87 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3147. -Memory consumption went from 54.0 MB to 54.0 MB. -Total: 7.116600 ms (FindLiveObjects: 0.218600 ms CreateObjectMapping: 0.130700 ms MarkObjects: 6.725300 ms DeleteObjects: 0.041200 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 -Refreshing native plugins compatible for Editor in 17.20 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3147. -Memory consumption went from 54.0 MB to 54.0 MB. -Total: 6.509600 ms (FindLiveObjects: 0.230300 ms CreateObjectMapping: 0.160100 ms MarkObjects: 6.070500 ms DeleteObjects: 0.047400 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 -Refreshing native plugins compatible for Editor in 15.08 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3147. -Memory consumption went from 54.0 MB to 54.0 MB. -Total: 7.361100 ms (FindLiveObjects: 0.228400 ms CreateObjectMapping: 0.156000 ms MarkObjects: 6.929900 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 -Refreshing native plugins compatible for Editor in 16.87 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3147. -Memory consumption went from 54.0 MB to 54.0 MB. -Total: 7.091500 ms (FindLiveObjects: 0.227500 ms CreateObjectMapping: 0.143800 ms MarkObjects: 6.677400 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.006697 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.733 seconds -Domain Reload Profiling: - ReloadAssembly (1734ms) - BeginReloadAssembly (200ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (42ms) - EndReloadAssembly (1412ms) - LoadAssemblies (145ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (249ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (49ms) - SetupLoadedEditorAssemblies (982ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (60ms) - ProcessInitializeOnLoadAttributes (737ms) - ProcessInitializeOnLoadMethodAttributes (155ms) - AfterProcessingInitializeOnLoad (4ms) - 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 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3150. -Memory consumption went from 104.9 MB to 104.9 MB. -Total: 8.009100 ms (FindLiveObjects: 0.239400 ms CreateObjectMapping: 0.212500 ms MarkObjects: 7.508700 ms DeleteObjects: 0.047000 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.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.501 seconds -Domain Reload Profiling: - ReloadAssembly (1502ms) - BeginReloadAssembly (136ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (32ms) - EndReloadAssembly (1275ms) - LoadAssemblies (92ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (210ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (910ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (55ms) - ProcessInitializeOnLoadAttributes (691ms) - ProcessInitializeOnLoadMethodAttributes (136ms) - 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 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3153. -Memory consumption went from 104.9 MB to 104.9 MB. -Total: 7.789500 ms (FindLiveObjects: 0.226200 ms CreateObjectMapping: 0.145600 ms MarkObjects: 7.372100 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 Prepare -Registering precompiled user dll's ... -Registered in 0.006648 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.810 seconds -Domain Reload Profiling: - ReloadAssembly (1811ms) - BeginReloadAssembly (168ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (44ms) - EndReloadAssembly (1547ms) - LoadAssemblies (114ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (247ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (52ms) - SetupLoadedEditorAssemblies (1108ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (28ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (860ms) - ProcessInitializeOnLoadMethodAttributes (149ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.26 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: 3156. -Memory consumption went from 104.9 MB to 104.9 MB. -Total: 6.479500 ms (FindLiveObjects: 0.239300 ms CreateObjectMapping: 0.159300 ms MarkObjects: 6.034600 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.005432 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.510 seconds -Domain Reload Profiling: - ReloadAssembly (1511ms) - BeginReloadAssembly (137ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (32ms) - EndReloadAssembly (1285ms) - LoadAssemblies (94ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (216ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (915ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (55ms) - ProcessInitializeOnLoadAttributes (701ms) - ProcessInitializeOnLoadMethodAttributes (133ms) - 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 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3159. -Memory consumption went from 104.9 MB to 104.9 MB. -Total: 6.535300 ms (FindLiveObjects: 0.227700 ms CreateObjectMapping: 0.136700 ms MarkObjects: 6.117900 ms DeleteObjects: 0.052000 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.008752 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.762 seconds -Domain Reload Profiling: - ReloadAssembly (1763ms) - BeginReloadAssembly (162ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (46ms) - EndReloadAssembly (1510ms) - LoadAssemblies (114ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (204ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (57ms) - SetupLoadedEditorAssemblies (1101ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (33ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (59ms) - ProcessInitializeOnLoadAttributes (874ms) - ProcessInitializeOnLoadMethodAttributes (131ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 5.84 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: 3162. -Memory consumption went from 104.9 MB to 104.9 MB. -Total: 44.332700 ms (FindLiveObjects: 0.235300 ms CreateObjectMapping: 0.136200 ms MarkObjects: 43.909600 ms DeleteObjects: 0.050000 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.006636 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.511 seconds -Domain Reload Profiling: - ReloadAssembly (1512ms) - BeginReloadAssembly (139ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (33ms) - EndReloadAssembly (1272ms) - LoadAssemblies (95ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (205ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (905ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (21ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (53ms) - ProcessInitializeOnLoadAttributes (678ms) - ProcessInitializeOnLoadMethodAttributes (148ms) - 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 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3165. -Memory consumption went from 104.9 MB to 104.9 MB. -Total: 6.541800 ms (FindLiveObjects: 0.226500 ms CreateObjectMapping: 0.135100 ms MarkObjects: 6.139300 ms DeleteObjects: 0.040100 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 -Refreshing native plugins compatible for Editor in 17.37 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.0 KB). Loaded Objects now: 3165. -Memory consumption went from 54.2 MB to 54.2 MB. -Total: 8.182700 ms (FindLiveObjects: 0.217800 ms CreateObjectMapping: 0.139200 ms MarkObjects: 7.780900 ms DeleteObjects: 0.043800 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.005801 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.567 seconds -Domain Reload Profiling: - ReloadAssembly (1568ms) - BeginReloadAssembly (140ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (33ms) - EndReloadAssembly (1334ms) - LoadAssemblies (99ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (246ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (52ms) - SetupLoadedEditorAssemblies (902ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (55ms) - ProcessInitializeOnLoadAttributes (691ms) - 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 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3168. -Memory consumption went from 105.0 MB to 104.9 MB. -Total: 6.740300 ms (FindLiveObjects: 0.296500 ms CreateObjectMapping: 0.168300 ms MarkObjects: 6.228300 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 -Refreshing native plugins compatible for Editor in 15.27 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.0 KB). Loaded Objects now: 3168. -Memory consumption went from 54.3 MB to 54.2 MB. -Total: 6.679800 ms (FindLiveObjects: 0.232200 ms CreateObjectMapping: 0.156400 ms MarkObjects: 6.240300 ms DeleteObjects: 0.050000 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: 1362.965873 seconds. - path: Assets/StreamingAssets/init1_1.json - artifactKey: Guid(169434a041649d74dab90a6f8de2b39d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/StreamingAssets/init1_1.json using Guid(169434a041649d74dab90a6f8de2b39d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '229ec8179d9897b3fa542df718dfb505') in 0.012281 seconds -Number of asset objects unloaded after import = 1 -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.009696 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.574 seconds -Domain Reload Profiling: - ReloadAssembly (1575ms) - BeginReloadAssembly (172ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (42ms) - EndReloadAssembly (1308ms) - LoadAssemblies (115ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (233ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (45ms) - SetupLoadedEditorAssemblies (907ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (57ms) - 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.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.0 KB). Loaded Objects now: 3171. -Memory consumption went from 105.0 MB to 104.9 MB. -Total: 6.537000 ms (FindLiveObjects: 0.229200 ms CreateObjectMapping: 0.144800 ms MarkObjects: 6.115700 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.006677 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.528 seconds -Domain Reload Profiling: - ReloadAssembly (1529ms) - BeginReloadAssembly (148ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (41ms) - EndReloadAssembly (1288ms) - LoadAssemblies (100ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (221ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (900ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (56ms) - ProcessInitializeOnLoadAttributes (684ms) - ProcessInitializeOnLoadMethodAttributes (133ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.34 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: 3174. -Memory consumption went from 105.0 MB to 104.9 MB. -Total: 7.373600 ms (FindLiveObjects: 0.327000 ms CreateObjectMapping: 0.178700 ms MarkObjects: 6.821700 ms DeleteObjects: 0.044600 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.005675 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.561 seconds -Domain Reload Profiling: - ReloadAssembly (1561ms) - BeginReloadAssembly (148ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (33ms) EndReloadAssembly (1322ms) - LoadAssemblies (104ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (223ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (45ms) - SetupLoadedEditorAssemblies (928ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (25ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (56ms) - ProcessInitializeOnLoadAttributes (707ms) - 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 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3177. -Memory consumption went from 105.0 MB to 105.0 MB. -Total: 6.303200 ms (FindLiveObjects: 0.241200 ms CreateObjectMapping: 0.152500 ms MarkObjects: 5.863500 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.005197 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.577 seconds -Domain Reload Profiling: - ReloadAssembly (1578ms) - BeginReloadAssembly (152ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - EndReloadAssembly (1331ms) - LoadAssemblies (105ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (223ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (45ms) - SetupLoadedEditorAssemblies (918ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (29ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (59ms) - ProcessInitializeOnLoadAttributes (690ms) - ProcessInitializeOnLoadMethodAttributes (135ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -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 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3180. -Memory consumption went from 105.0 MB to 105.0 MB. -Total: 6.370600 ms (FindLiveObjects: 0.241500 ms CreateObjectMapping: 0.140700 ms MarkObjects: 5.940700 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.013839 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.538 seconds -Domain Reload Profiling: - ReloadAssembly (1539ms) - BeginReloadAssembly (145ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - EndReloadAssembly (1301ms) - LoadAssemblies (100ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (219ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (57ms) - SetupLoadedEditorAssemblies (905ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (56ms) - ProcessInitializeOnLoadAttributes (689ms) - 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 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3183. -Memory consumption went from 105.0 MB to 105.0 MB. -Total: 6.618500 ms (FindLiveObjects: 0.234500 ms CreateObjectMapping: 0.134600 ms MarkObjects: 6.201700 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.006394 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.528 seconds -Domain Reload Profiling: - ReloadAssembly (1529ms) - BeginReloadAssembly (143ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (34ms) - EndReloadAssembly (1295ms) LoadAssemblies (99ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (223ms) + SetupTypeCache (209ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (46ms) - SetupLoadedEditorAssemblies (907ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (953ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) + InitializePlatformSupportModulesInManaged (22ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) BeforeProcessingInitializeOnLoad (57ms) - ProcessInitializeOnLoadAttributes (690ms) - ProcessInitializeOnLoadMethodAttributes (133ms) - 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 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3186. -Memory consumption went from 105.0 MB to 105.0 MB. -Total: 8.364700 ms (FindLiveObjects: 0.230300 ms CreateObjectMapping: 0.134300 ms MarkObjects: 7.945900 ms DeleteObjects: 0.052800 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.005468 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.526 seconds -Domain Reload Profiling: - ReloadAssembly (1527ms) - BeginReloadAssembly (143ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (34ms) - EndReloadAssembly (1291ms) - LoadAssemblies (99ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (218ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (45ms) - SetupLoadedEditorAssemblies (909ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (57ms) - ProcessInitializeOnLoadAttributes (692ms) - ProcessInitializeOnLoadMethodAttributes (132ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -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 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3189. -Memory consumption went from 105.0 MB to 105.0 MB. -Total: 6.308800 ms (FindLiveObjects: 0.225800 ms CreateObjectMapping: 0.121600 ms MarkObjects: 5.916700 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 Prepare -Registering precompiled user dll's ... -Registered in 0.007393 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.618 seconds -Domain Reload Profiling: - ReloadAssembly (1618ms) - BeginReloadAssembly (153ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - EndReloadAssembly (1368ms) - LoadAssemblies (101ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (231ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (48ms) - SetupLoadedEditorAssemblies (959ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (25ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (59ms) - ProcessInitializeOnLoadAttributes (732ms) + ProcessInitializeOnLoadAttributes (731ms) ProcessInitializeOnLoadMethodAttributes (139ms) 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. +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: 3192. -Memory consumption went from 105.0 MB to 105.0 MB. -Total: 7.848100 ms (FindLiveObjects: 0.239200 ms CreateObjectMapping: 0.157500 ms MarkObjects: 7.404200 ms DeleteObjects: 0.046000 ms) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3030. +Memory consumption went from 100.1 MB to 100.1 MB. +Total: 7.470900 ms (FindLiveObjects: 0.252800 ms CreateObjectMapping: 0.175300 ms MarkObjects: 6.994700 ms DeleteObjects: 0.047100 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 +Refreshing native plugins compatible for Editor in 15.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 96 Unused Serialized files (Serialized files now loaded: 0) +Unloading 96 unused Assets / (25.0 KB). Loaded Objects now: 3030. +Memory consumption went from 49.4 MB to 49.4 MB. +Total: 7.146200 ms (FindLiveObjects: 0.212800 ms CreateObjectMapping: 0.134600 ms MarkObjects: 6.756200 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 +Refreshing native plugins compatible for Editor in 16.24 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 96 Unused Serialized files (Serialized files now loaded: 0) +Unloading 96 unused Assets / (25.0 KB). Loaded Objects now: 3030. +Memory consumption went from 49.3 MB to 49.3 MB. +Total: 7.904100 ms (FindLiveObjects: 0.248600 ms CreateObjectMapping: 0.155100 ms MarkObjects: 7.441700 ms DeleteObjects: 0.056700 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 c0d6466..7754a5c 100644 --- a/wb_unity_pro/Logs/AssetImportWorker0.log +++ b/wb_unity_pro/Logs/AssetImportWorker0.log @@ -11,13 +11,13 @@ D:\Program Files\Editor\2021.3.45f2c1\Editor\Unity.exe -name AssetImportWorker0 -projectPath -D:/UnityProject/dezhou/dezhou_client/wb_unity_pro +D:/UnityProject/dezhouNew/dezhou_client/wb_unity_pro -logFile Logs/AssetImportWorker0.log -srvPort -63044 -Successfully changed project path to: D:/UnityProject/dezhou/dezhou_client/wb_unity_pro -D:/UnityProject/dezhou/dezhou_client/wb_unity_pro +52133 +Successfully changed project path to: D:/UnityProject/dezhouNew/dezhou_client/wb_unity_pro +D:/UnityProject/dezhouNew/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/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 [6088] Host "[IP] 192.168.1.203 [Port] 0 [Flags] 2 [Guid] 1900228588 [EditorId] 1900228588 [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 multi-casting on [225.0.0.222:54997]... -Player connection [6088] Host "[IP] 192.168.1.203 [Port] 0 [Flags] 2 [Guid] 1900228588 [EditorId] 1900228588 [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 [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]... AS: AutoStreaming module initializing. [Physics::Module] Initialized MultithreadedJobDispatcher with {0} workers. -Refreshing native plugins compatible for Editor in 86.62 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 68.20 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/dezhou/dezhou_client/wb_unity_pro/Assets +[Subsystems] Discovering subsystems at path D:/UnityProject/dezhouNew/dezhou_client/wb_unity_pro/Assets GfxDevice: creating device client; threaded=0; jobified=0 Direct3D: Version: Direct3D 11.0 [level 11.1] @@ -69,100 +69,100 @@ 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:56768 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56252 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.004793 seconds. +Registered in 0.003035 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 456 ms -Refreshing native plugins compatible for Editor in 63.58 ms, found 3 plugins. +Android Extension - Scanning For ADB Devices 229 ms +Refreshing native plugins compatible for Editor in 53.46 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 2.025 seconds +- Completed reload, in 0.923 seconds Domain Reload Profiling: - ReloadAssembly (2026ms) - BeginReloadAssembly (170ms) + ReloadAssembly (923ms) + BeginReloadAssembly (101ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (1ms) - EndReloadAssembly (1477ms) - LoadAssemblies (170ms) + EndReloadAssembly (725ms) + LoadAssemblies (100ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (475ms) + SetupTypeCache (127ms) ReleaseScriptCaches (0ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (915ms) + RebuildScriptCaches (33ms) + SetupLoadedEditorAssemblies (520ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (628ms) + InitializePlatformSupportModulesInManaged (308ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (64ms) + RefreshPlugins (54ms) BeforeProcessingInitializeOnLoad (2ms) - ProcessInitializeOnLoadAttributes (142ms) - ProcessInitializeOnLoadMethodAttributes (80ms) + ProcessInitializeOnLoadAttributes (107ms) + ProcessInitializeOnLoadMethodAttributes (49ms) AfterProcessingInitializeOnLoad (0ms) - EditorAssembliesLoaded (1ms) + EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (0ms) Platform modules already initialized, skipping Registering precompiled user dll's ... -Registered in 0.005749 seconds. +Registered in 0.006131 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. +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 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.972 seconds +- Completed reload, in 1.726 seconds Domain Reload Profiling: - ReloadAssembly (1973ms) - BeginReloadAssembly (156ms) + ReloadAssembly (1727ms) + BeginReloadAssembly (168ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) + DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - EndReloadAssembly (1707ms) - LoadAssemblies (125ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (1450ms) + LoadAssemblies (117ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (263ms) + SetupTypeCache (246ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (66ms) - SetupLoadedEditorAssemblies (1230ms) + RebuildScriptCaches (57ms) + SetupLoadedEditorAssemblies (1017ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (27ms) + InitializePlatformSupportModulesInManaged (25ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (72ms) - ProcessInitializeOnLoadAttributes (959ms) - ProcessInitializeOnLoadMethodAttributes (168ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (763ms) + ProcessInitializeOnLoadMethodAttributes (157ms) AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) + AwakeInstancesAfterBackupRestoration (7ms) Platform modules already initialized, skipping ======================================================================== Worker process is ready to serve import requests -Launched and connected shader compiler UnityShaderCompiler.exe after 0.15 seconds -Refreshing native plugins compatible for Editor in 1.42 ms, found 3 plugins. +Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds +Refreshing native plugins compatible for Editor in 1.07 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.8 MB to 100.7 MB. -Total: 7.695100 ms (FindLiveObjects: 0.294300 ms CreateObjectMapping: 0.218300 ms MarkObjects: 7.090700 ms DeleteObjects: 0.090200 ms) +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) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -179,46 +179,16 @@ AssetImportParameters requested are different than current active one (requested custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - Time since last request: 176087.046437 seconds. - path: Assets/StreamingAssets/init1_1.json - artifactKey: Guid(169434a041649d74dab90a6f8de2b39d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) + Time since last request: 64051.297337 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/StreamingAssets/init1_1.json using Guid(169434a041649d74dab90a6f8de2b39d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '25cda2276286285764e39a2081903637') in 0.055794 seconds -Number of asset objects unloaded after import = 1 -======================================================================== -Received Prepare -Refreshing native plugins compatible for Editor in 15.85 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.0 KB). Loaded Objects now: 3028. -Memory consumption went from 49.1 MB to 49.1 MB. -Total: 7.868700 ms (FindLiveObjects: 0.206600 ms CreateObjectMapping: 0.145900 ms MarkObjects: 7.368500 ms DeleteObjects: 0.145800 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: 1044.437494 seconds. - path: Assets/ART/extend/poker/dezhou - artifactKey: Guid(100e305aa5377284cb5971b0824f6bff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/ART/extend/poker/dezhou using Guid(100e305aa5377284cb5971b0824f6bff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fb297abca7fdba053ccffa68bbffccdd') in 0.011524 seconds -Number of asset objects unloaded after 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 ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.005221 seconds. +Registered in 0.005016 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory is not a mono symbol file Native extension for WindowsStandalone target not found @@ -229,1954 +199,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.533 seconds +- Completed reload, in 1.480 seconds Domain Reload Profiling: - ReloadAssembly (1534ms) - BeginReloadAssembly (144ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - EndReloadAssembly (1301ms) - LoadAssemblies (96ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (212ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (935ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (26ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (54ms) - ProcessInitializeOnLoadAttributes (718ms) - ProcessInitializeOnLoadMethodAttributes (133ms) - 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 98 unused Assets / (25.0 KB). Loaded Objects now: 3031. -Memory consumption went from 100.1 MB to 100.1 MB. -Total: 6.446600 ms (FindLiveObjects: 0.202000 ms CreateObjectMapping: 0.116100 ms MarkObjects: 6.089400 ms DeleteObjects: 0.038000 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 -Refreshing native plugins compatible for Editor in 16.71 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.4 MB to 49.4 MB. -Total: 7.915300 ms (FindLiveObjects: 0.209100 ms CreateObjectMapping: 0.136700 ms MarkObjects: 7.523000 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 -Refreshing native plugins compatible for Editor in 14.82 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.3 MB to 49.2 MB. -Total: 7.316300 ms (FindLiveObjects: 0.198800 ms CreateObjectMapping: 0.129200 ms MarkObjects: 6.944400 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 -Refreshing native plugins compatible for Editor in 15.45 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.3 MB to 49.2 MB. -Total: 7.284400 ms (FindLiveObjects: 0.203600 ms CreateObjectMapping: 0.141700 ms MarkObjects: 6.896800 ms DeleteObjects: 0.041400 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 -Refreshing native plugins compatible for Editor in 15.42 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.3 MB to 49.2 MB. -Total: 6.430300 ms (FindLiveObjects: 0.216000 ms CreateObjectMapping: 0.229100 ms MarkObjects: 5.940600 ms DeleteObjects: 0.043200 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 -Refreshing native plugins compatible for Editor in 15.71 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.3 MB to 49.2 MB. -Total: 7.107300 ms (FindLiveObjects: 0.201200 ms CreateObjectMapping: 0.135200 ms MarkObjects: 6.728300 ms DeleteObjects: 0.041500 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 -Refreshing native plugins compatible for Editor in 15.04 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.3 MB to 49.2 MB. -Total: 7.369900 ms (FindLiveObjects: 0.201100 ms CreateObjectMapping: 0.131100 ms MarkObjects: 6.960500 ms DeleteObjects: 0.076300 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 -Refreshing native plugins compatible for Editor in 15.48 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.3 MB to 49.2 MB. -Total: 6.412000 ms (FindLiveObjects: 0.225800 ms CreateObjectMapping: 0.142900 ms MarkObjects: 6.000600 ms DeleteObjects: 0.041600 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 -Refreshing native plugins compatible for Editor in 16.06 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.3 MB to 49.2 MB. -Total: 7.190800 ms (FindLiveObjects: 0.203800 ms CreateObjectMapping: 0.139300 ms MarkObjects: 6.802000 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 -Refreshing native plugins compatible for Editor in 15.22 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.3 MB to 49.2 MB. -Total: 8.416000 ms (FindLiveObjects: 0.199400 ms CreateObjectMapping: 0.124000 ms MarkObjects: 8.048800 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 -Refreshing native plugins compatible for Editor in 17.24 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.3 MB to 49.2 MB. -Total: 7.075500 ms (FindLiveObjects: 0.221800 ms CreateObjectMapping: 0.155100 ms MarkObjects: 6.656600 ms DeleteObjects: 0.041000 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 -Refreshing native plugins compatible for Editor in 15.46 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.3 MB to 49.2 MB. -Total: 6.466300 ms (FindLiveObjects: 0.201000 ms CreateObjectMapping: 0.120400 ms MarkObjects: 6.098600 ms DeleteObjects: 0.045500 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 -Refreshing native plugins compatible for Editor in 14.89 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.3 MB to 49.2 MB. -Total: 7.510100 ms (FindLiveObjects: 0.199900 ms CreateObjectMapping: 0.132200 ms MarkObjects: 7.128900 ms DeleteObjects: 0.048300 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 -Refreshing native plugins compatible for Editor in 15.09 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.3 MB to 49.2 MB. -Total: 6.112300 ms (FindLiveObjects: 0.209700 ms CreateObjectMapping: 0.132300 ms MarkObjects: 5.729500 ms DeleteObjects: 0.039900 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 -Refreshing native plugins compatible for Editor in 14.93 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.3 MB to 49.2 MB. -Total: 6.123300 ms (FindLiveObjects: 0.197000 ms CreateObjectMapping: 0.121300 ms MarkObjects: 5.763900 ms DeleteObjects: 0.040100 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 -Refreshing native plugins compatible for Editor in 18.21 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.3 MB to 49.2 MB. -Total: 7.164500 ms (FindLiveObjects: 0.217700 ms CreateObjectMapping: 0.168300 ms MarkObjects: 6.735900 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 -Refreshing native plugins compatible for Editor in 16.47 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.3 MB to 49.2 MB. -Total: 6.585600 ms (FindLiveObjects: 0.201500 ms CreateObjectMapping: 0.119600 ms MarkObjects: 6.215200 ms DeleteObjects: 0.048400 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 -Refreshing native plugins compatible for Editor in 15.14 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.3 MB to 49.2 MB. -Total: 6.634400 ms (FindLiveObjects: 0.206600 ms CreateObjectMapping: 0.139000 ms MarkObjects: 6.245900 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 -Refreshing native plugins compatible for Editor in 15.23 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.3 MB to 49.2 MB. -Total: 6.610900 ms (FindLiveObjects: 0.199100 ms CreateObjectMapping: 0.115000 ms MarkObjects: 6.253900 ms DeleteObjects: 0.042100 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 -Refreshing native plugins compatible for Editor in 15.18 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.3 MB to 49.2 MB. -Total: 6.154600 ms (FindLiveObjects: 0.198300 ms CreateObjectMapping: 0.120800 ms MarkObjects: 5.794200 ms DeleteObjects: 0.040600 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 -Refreshing native plugins compatible for Editor in 14.80 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.3 MB to 49.2 MB. -Total: 6.150100 ms (FindLiveObjects: 0.200000 ms CreateObjectMapping: 0.124500 ms MarkObjects: 5.785900 ms DeleteObjects: 0.038900 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 -Refreshing native plugins compatible for Editor in 15.20 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.3 MB to 49.2 MB. -Total: 6.959700 ms (FindLiveObjects: 0.197700 ms CreateObjectMapping: 0.114400 ms MarkObjects: 6.605800 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 -Refreshing native plugins compatible for Editor in 15.25 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.3 MB to 49.2 MB. -Total: 6.171600 ms (FindLiveObjects: 0.203600 ms CreateObjectMapping: 0.132900 ms MarkObjects: 5.789700 ms DeleteObjects: 0.044600 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 -Refreshing native plugins compatible for Editor in 14.67 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.3 MB to 49.2 MB. -Total: 7.046200 ms (FindLiveObjects: 0.198100 ms CreateObjectMapping: 0.109000 ms MarkObjects: 6.696900 ms DeleteObjects: 0.041400 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 -Refreshing native plugins compatible for Editor in 15.25 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.3 MB to 49.2 MB. -Total: 7.991500 ms (FindLiveObjects: 0.199400 ms CreateObjectMapping: 0.119800 ms MarkObjects: 7.630300 ms DeleteObjects: 0.041000 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 -Refreshing native plugins compatible for Editor in 15.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.3 MB to 49.2 MB. -Total: 8.284700 ms (FindLiveObjects: 0.199700 ms CreateObjectMapping: 0.122300 ms MarkObjects: 7.920900 ms DeleteObjects: 0.041000 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 -Refreshing native plugins compatible for Editor in 14.41 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.3 MB to 49.2 MB. -Total: 6.128800 ms (FindLiveObjects: 0.211700 ms CreateObjectMapping: 0.147800 ms MarkObjects: 5.730100 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 -Refreshing native plugins compatible for Editor in 14.82 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.3 MB to 49.2 MB. -Total: 6.504900 ms (FindLiveObjects: 0.200100 ms CreateObjectMapping: 0.138800 ms MarkObjects: 6.118500 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 -Refreshing native plugins compatible for Editor in 15.07 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.3 MB to 49.2 MB. -Total: 6.710200 ms (FindLiveObjects: 0.225600 ms CreateObjectMapping: 0.150000 ms MarkObjects: 6.294300 ms DeleteObjects: 0.039300 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 -Refreshing native plugins compatible for Editor in 14.69 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.3 MB to 49.2 MB. -Total: 7.361000 ms (FindLiveObjects: 0.269900 ms CreateObjectMapping: 0.169300 ms MarkObjects: 6.874100 ms DeleteObjects: 0.046200 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 -Refreshing native plugins compatible for Editor in 15.23 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.3 MB to 49.2 MB. -Total: 7.572400 ms (FindLiveObjects: 0.201300 ms CreateObjectMapping: 0.119500 ms MarkObjects: 7.209300 ms DeleteObjects: 0.041200 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 -Refreshing native plugins compatible for Editor in 16.11 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.3 MB to 49.2 MB. -Total: 6.229000 ms (FindLiveObjects: 0.224100 ms CreateObjectMapping: 0.154000 ms MarkObjects: 5.808100 ms DeleteObjects: 0.041600 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 -Refreshing native plugins compatible for Editor in 14.74 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.3 MB to 49.2 MB. -Total: 6.030200 ms (FindLiveObjects: 0.201300 ms CreateObjectMapping: 0.118200 ms MarkObjects: 5.665000 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 -Refreshing native plugins compatible for Editor in 19.03 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.3 MB to 49.3 MB. -Total: 6.418500 ms (FindLiveObjects: 0.210000 ms CreateObjectMapping: 0.150300 ms MarkObjects: 6.006400 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 -Refreshing native plugins compatible for Editor in 14.58 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.3 MB to 49.3 MB. -Total: 6.181300 ms (FindLiveObjects: 0.202400 ms CreateObjectMapping: 0.127600 ms MarkObjects: 5.813900 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 -Refreshing native plugins compatible for Editor in 14.53 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.3 MB to 49.3 MB. -Total: 6.678900 ms (FindLiveObjects: 0.212900 ms CreateObjectMapping: 0.152700 ms MarkObjects: 6.272200 ms DeleteObjects: 0.040200 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 -Refreshing native plugins compatible for Editor in 14.84 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.3 MB to 49.3 MB. -Total: 6.287100 ms (FindLiveObjects: 0.198800 ms CreateObjectMapping: 0.143100 ms MarkObjects: 5.903200 ms DeleteObjects: 0.041000 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 -Refreshing native plugins compatible for Editor in 14.11 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.3 MB to 49.3 MB. -Total: 6.491800 ms (FindLiveObjects: 0.201800 ms CreateObjectMapping: 0.125900 ms MarkObjects: 6.115700 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 -Refreshing native plugins compatible for Editor in 15.80 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.3 MB to 49.3 MB. -Total: 6.910000 ms (FindLiveObjects: 0.198200 ms CreateObjectMapping: 0.133700 ms MarkObjects: 6.535800 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 -Refreshing native plugins compatible for Editor in 15.04 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.3 MB to 49.3 MB. -Total: 6.283300 ms (FindLiveObjects: 0.205700 ms CreateObjectMapping: 0.117900 ms MarkObjects: 5.919900 ms DeleteObjects: 0.038800 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 -Refreshing native plugins compatible for Editor in 14.09 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.3 MB to 49.3 MB. -Total: 6.012700 ms (FindLiveObjects: 0.219000 ms CreateObjectMapping: 0.153300 ms MarkObjects: 5.598800 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 -Refreshing native plugins compatible for Editor in 15.51 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.3 MB to 49.3 MB. -Total: 6.871800 ms (FindLiveObjects: 0.212900 ms CreateObjectMapping: 0.271200 ms MarkObjects: 6.345000 ms DeleteObjects: 0.041600 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 -Refreshing native plugins compatible for Editor in 18.45 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3031. -Memory consumption went from 49.3 MB to 49.3 MB. -Total: 6.423600 ms (FindLiveObjects: 0.212400 ms CreateObjectMapping: 0.137100 ms MarkObjects: 6.031500 ms DeleteObjects: 0.041400 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.005900 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.680 seconds -Domain Reload Profiling: - ReloadAssembly (1681ms) - BeginReloadAssembly (165ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (44ms) - EndReloadAssembly (1415ms) - LoadAssemblies (111ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (243ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (82ms) - SetupLoadedEditorAssemblies (945ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (25ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (62ms) - ProcessInitializeOnLoadAttributes (713ms) - ProcessInitializeOnLoadMethodAttributes (141ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.20 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: 3034. -Memory consumption went from 100.1 MB to 100.1 MB. -Total: 6.621800 ms (FindLiveObjects: 0.228700 ms CreateObjectMapping: 0.167500 ms MarkObjects: 6.164300 ms DeleteObjects: 0.059800 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 -Refreshing native plugins compatible for Editor in 16.26 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3034. -Memory consumption went from 49.4 MB to 49.4 MB. -Total: 6.274900 ms (FindLiveObjects: 0.234900 ms CreateObjectMapping: 0.185400 ms MarkObjects: 5.809800 ms DeleteObjects: 0.043700 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 -Refreshing native plugins compatible for Editor in 36.87 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3034. -Memory consumption went from 49.3 MB to 49.3 MB. -Total: 7.785000 ms (FindLiveObjects: 0.223500 ms CreateObjectMapping: 0.151800 ms MarkObjects: 7.362700 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 -Refreshing native plugins compatible for Editor in 17.98 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3034. -Memory consumption went from 49.3 MB to 49.3 MB. -Total: 6.808700 ms (FindLiveObjects: 0.205600 ms CreateObjectMapping: 0.131200 ms MarkObjects: 6.427900 ms DeleteObjects: 0.043100 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 -Refreshing native plugins compatible for Editor in 18.47 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3034. -Memory consumption went from 49.3 MB to 49.3 MB. -Total: 6.793800 ms (FindLiveObjects: 0.228700 ms CreateObjectMapping: 0.158600 ms MarkObjects: 6.267900 ms DeleteObjects: 0.136900 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 -Refreshing native plugins compatible for Editor in 17.45 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3034. -Memory consumption went from 49.3 MB to 49.3 MB. -Total: 6.986200 ms (FindLiveObjects: 0.209500 ms CreateObjectMapping: 0.146400 ms MarkObjects: 6.581700 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 -Refreshing native plugins compatible for Editor in 20.09 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3034. -Memory consumption went from 49.3 MB to 49.3 MB. -Total: 8.144000 ms (FindLiveObjects: 0.370400 ms CreateObjectMapping: 0.223000 ms MarkObjects: 7.491500 ms DeleteObjects: 0.057700 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 -Refreshing native plugins compatible for Editor in 18.04 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3034. -Memory consumption went from 49.3 MB to 49.3 MB. -Total: 7.990300 ms (FindLiveObjects: 0.206900 ms CreateObjectMapping: 0.143000 ms MarkObjects: 7.593000 ms DeleteObjects: 0.046300 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 -Refreshing native plugins compatible for Editor in 19.50 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3034. -Memory consumption went from 49.3 MB to 49.3 MB. -Total: 6.605400 ms (FindLiveObjects: 0.202300 ms CreateObjectMapping: 0.227600 ms MarkObjects: 6.132100 ms DeleteObjects: 0.042500 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 -Refreshing native plugins compatible for Editor in 18.50 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3034. -Memory consumption went from 49.3 MB to 49.3 MB. -Total: 6.865100 ms (FindLiveObjects: 0.215300 ms CreateObjectMapping: 0.160400 ms MarkObjects: 6.446500 ms DeleteObjects: 0.041800 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 -Refreshing native plugins compatible for Editor in 16.79 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3034. -Memory consumption went from 49.3 MB to 49.3 MB. -Total: 6.223700 ms (FindLiveObjects: 0.227900 ms CreateObjectMapping: 0.171300 ms MarkObjects: 5.777800 ms DeleteObjects: 0.045700 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 -Refreshing native plugins compatible for Editor in 16.23 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3034. -Memory consumption went from 49.3 MB to 49.3 MB. -Total: 7.648100 ms (FindLiveObjects: 0.205400 ms CreateObjectMapping: 0.141400 ms MarkObjects: 7.258800 ms DeleteObjects: 0.041600 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 -Refreshing native plugins compatible for Editor in 24.60 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3034. -Memory consumption went from 49.3 MB to 49.3 MB. -Total: 272.738600 ms (FindLiveObjects: 0.223700 ms CreateObjectMapping: 0.158200 ms MarkObjects: 272.307800 ms DeleteObjects: 0.047100 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 -Refreshing native plugins compatible for Editor in 16.66 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3034. -Memory consumption went from 49.3 MB to 49.3 MB. -Total: 6.743200 ms (FindLiveObjects: 0.204500 ms CreateObjectMapping: 0.139500 ms MarkObjects: 6.354700 ms DeleteObjects: 0.043400 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 -Refreshing native plugins compatible for Editor in 17.70 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3034. -Memory consumption went from 49.3 MB to 49.3 MB. -Total: 9.524200 ms (FindLiveObjects: 0.214100 ms CreateObjectMapping: 0.187800 ms MarkObjects: 9.076000 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.005554 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.643 seconds -Domain Reload Profiling: - ReloadAssembly (1644ms) - BeginReloadAssembly (155ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - EndReloadAssembly (1365ms) - LoadAssemblies (119ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (233ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (51ms) - SetupLoadedEditorAssemblies (938ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (26ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (57ms) - ProcessInitializeOnLoadAttributes (714ms) - ProcessInitializeOnLoadMethodAttributes (136ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.36 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: 3037. -Memory consumption went from 100.1 MB to 100.1 MB. -Total: 7.617300 ms (FindLiveObjects: 0.217300 ms CreateObjectMapping: 0.127800 ms MarkObjects: 7.226200 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 Import Request. - Time since last request: 2564.036205 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/base/lobby/lobby/Unit/unitJoinTable.prefab using Guid(fab4da13989fdfa4ea8f3dce81b95b84) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '69501f3a1d709894d7fde1c9bad383f5') in 0.105230 seconds -Number of asset objects unloaded after import = 48 -======================================================================== -Received Import Request. - Time since last request: 0.364304 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/base/lobby/lobby/Unit/unitList.prefab using Guid(92858ce573c311a42b3f00c1588e4c10) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5b6109bef9c933b29dd8a10c03311150') in 0.018658 seconds -Number of asset objects unloaded after import = 104 -======================================================================== -Received Import Request. - Time since last request: 0.405493 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: 'c46fbc792b2ad1097cf09960e06db39d') in 0.027566 seconds -Number of asset objects unloaded after import = 330 -======================================================================== -Received Import Request. - Time since last request: 0.825131 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/Unit/unitJoinNone.prefab using Guid(25b9fc77e6fff824ca020ad62fd287a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ffeadfd92574185cbcdf25cfaa7674a6') in 0.014523 seconds -Number of asset objects unloaded after import = 68 -======================================================================== -Received Import Request. - Time since last request: 2.899263 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/base/lobby/lobby/Unit/unitJoin.prefab using Guid(cad44be611c9a2543bd4c59655b9e5bc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7d43134fd6d49f1cc92022a2de993cb1') in 0.019217 seconds -Number of asset objects unloaded after import = 62 -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005805 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.593 seconds -Domain Reload Profiling: - ReloadAssembly (1594ms) - BeginReloadAssembly (157ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (43ms) - EndReloadAssembly (1335ms) - LoadAssemblies (105ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (231ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (48ms) - SetupLoadedEditorAssemblies (928ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (25ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (59ms) - ProcessInitializeOnLoadAttributes (705ms) - ProcessInitializeOnLoadMethodAttributes (136ms) - 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 101 unused Assets / (27.4 KB). Loaded Objects now: 3042. -Memory consumption went from 100.3 MB to 100.3 MB. -Total: 7.912000 ms (FindLiveObjects: 0.216300 ms CreateObjectMapping: 0.145000 ms MarkObjects: 7.486600 ms DeleteObjects: 0.062900 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: 479.533098 seconds. - path: Assets/ART/base/lobby/Lobby.prefab - artifactKey: Guid(751de40dd4c9f3c468de2ffac612c137) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/ART/base/lobby/Lobby.prefab using Guid(751de40dd4c9f3c468de2ffac612c137) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6be98dcabe3116179ed7fd93071dab28') in 0.053363 seconds -Number of asset objects unloaded after import = 103 -======================================================================== -Received Prepare -Refreshing native plugins compatible for Editor in 15.90 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 97 unused Assets / (25.9 KB). Loaded Objects now: 3042. -Memory consumption went from 49.5 MB to 49.5 MB. -Total: 7.259700 ms (FindLiveObjects: 0.211500 ms CreateObjectMapping: 0.144900 ms MarkObjects: 6.836600 ms DeleteObjects: 0.065600 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 -Refreshing native plugins compatible for Editor in 16.05 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3042. -Memory consumption went from 49.5 MB to 49.5 MB. -Total: 7.885700 ms (FindLiveObjects: 0.207700 ms CreateObjectMapping: 0.141700 ms MarkObjects: 7.493100 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 -Refreshing native plugins compatible for Editor in 15.67 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3042. -Memory consumption went from 49.5 MB to 49.5 MB. -Total: 7.059100 ms (FindLiveObjects: 0.202600 ms CreateObjectMapping: 0.142500 ms MarkObjects: 6.670200 ms DeleteObjects: 0.042800 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 -Refreshing native plugins compatible for Editor in 17.67 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3042. -Memory consumption went from 49.5 MB to 49.5 MB. -Total: 7.304800 ms (FindLiveObjects: 0.203700 ms CreateObjectMapping: 0.122600 ms MarkObjects: 6.935900 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 -Refreshing native plugins compatible for Editor in 14.90 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3042. -Memory consumption went from 49.5 MB to 49.5 MB. -Total: 6.488300 ms (FindLiveObjects: 0.199300 ms CreateObjectMapping: 0.127100 ms MarkObjects: 6.116600 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 -Refreshing native plugins compatible for Editor in 15.03 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3042. -Memory consumption went from 49.5 MB to 49.5 MB. -Total: 6.623100 ms (FindLiveObjects: 0.223600 ms CreateObjectMapping: 0.147200 ms MarkObjects: 6.211900 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 -Refreshing native plugins compatible for Editor in 14.46 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3042. -Memory consumption went from 49.5 MB to 49.5 MB. -Total: 7.439900 ms (FindLiveObjects: 0.230700 ms CreateObjectMapping: 0.141000 ms MarkObjects: 7.026500 ms DeleteObjects: 0.040600 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 -Refreshing native plugins compatible for Editor in 15.20 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3042. -Memory consumption went from 49.5 MB to 49.5 MB. -Total: 6.830100 ms (FindLiveObjects: 0.202200 ms CreateObjectMapping: 0.132900 ms MarkObjects: 6.452000 ms DeleteObjects: 0.041900 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 -Refreshing native plugins compatible for Editor in 14.93 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3042. -Memory consumption went from 49.5 MB to 49.5 MB. -Total: 6.802000 ms (FindLiveObjects: 0.200200 ms CreateObjectMapping: 0.121200 ms MarkObjects: 6.436000 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 -Refreshing native plugins compatible for Editor in 14.67 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3042. -Memory consumption went from 49.5 MB to 49.5 MB. -Total: 7.091600 ms (FindLiveObjects: 0.201400 ms CreateObjectMapping: 0.124200 ms MarkObjects: 6.720700 ms DeleteObjects: 0.044700 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 -Refreshing native plugins compatible for Editor in 15.37 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3042. -Memory consumption went from 49.5 MB to 49.5 MB. -Total: 6.353000 ms (FindLiveObjects: 0.201900 ms CreateObjectMapping: 0.131700 ms MarkObjects: 5.977800 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 -Refreshing native plugins compatible for Editor in 15.00 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3042. -Memory consumption went from 49.5 MB to 49.5 MB. -Total: 6.303900 ms (FindLiveObjects: 0.202200 ms CreateObjectMapping: 0.123600 ms MarkObjects: 5.939400 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 Prepare -Refreshing native plugins compatible for Editor in 14.89 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3042. -Memory consumption went from 49.5 MB to 49.5 MB. -Total: 6.637000 ms (FindLiveObjects: 0.201800 ms CreateObjectMapping: 0.126700 ms MarkObjects: 6.267000 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 -Refreshing native plugins compatible for Editor in 15.92 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 96 Unused Serialized files (Serialized files now loaded: 0) -Unloading 96 unused Assets / (25.1 KB). Loaded Objects now: 3042. -Memory consumption went from 49.5 MB to 49.5 MB. -Total: 6.534500 ms (FindLiveObjects: 0.203900 ms CreateObjectMapping: 0.132400 ms MarkObjects: 6.156600 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 Import Request. - Time since last request: 785.988717 seconds. - path: Assets/ART/base/lobby/Lobby.prefab - artifactKey: Guid(751de40dd4c9f3c468de2ffac612c137) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/ART/base/lobby/Lobby.prefab using Guid(751de40dd4c9f3c468de2ffac612c137) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ad7e2733e22fb75ed7a4720f65349eba') in 0.013852 seconds -Number of asset objects unloaded after import = 103 -======================================================================== -Received Import Request. - Time since last request: 32.427532 seconds. - path: Assets/ART/base/common/ViewWait.prefab - artifactKey: Guid(bf571116c33c637459fd4fb3a800c30b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/ART/base/common/ViewWait.prefab using Guid(bf571116c33c637459fd4fb3a800c30b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a80e434a52f2da6fbab71c502c7f2c95') in 0.017206 seconds -Number of asset objects unloaded after import = 24 -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005319 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.69 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.568 seconds -Domain Reload Profiling: - ReloadAssembly (1569ms) - BeginReloadAssembly (157ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (40ms) - EndReloadAssembly (1317ms) - LoadAssemblies (107ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (226ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (46ms) - SetupLoadedEditorAssemblies (916ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (25ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (2ms) - BeforeProcessingInitializeOnLoad (58ms) - ProcessInitializeOnLoadAttributes (693ms) - ProcessInitializeOnLoadMethodAttributes (135ms) - 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 99 unused Assets / (25.7 KB). Loaded Objects now: 3045. -Memory consumption went from 100.3 MB to 100.3 MB. -Total: 6.437400 ms (FindLiveObjects: 0.211800 ms CreateObjectMapping: 0.130600 ms MarkObjects: 6.039500 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.009002 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.503 seconds -Domain Reload Profiling: - ReloadAssembly (1504ms) - BeginReloadAssembly (141ms) + ReloadAssembly (1481ms) + BeginReloadAssembly (138ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (36ms) - EndReloadAssembly (1276ms) - LoadAssemblies (96ms) + EndReloadAssembly (1254ms) + LoadAssemblies (94ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (207ms) + SetupTypeCache (206ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (915ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (887ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (22ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (52ms) - ProcessInitializeOnLoadAttributes (710ms) - ProcessInitializeOnLoadMethodAttributes (127ms) - AfterProcessingInitializeOnLoad (3ms) + BeforeProcessingInitializeOnLoad (54ms) + ProcessInitializeOnLoadAttributes (677ms) + ProcessInitializeOnLoadMethodAttributes (129ms) + AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) + AwakeInstancesAfterBackupRestoration (6ms) 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.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.0 KB). Loaded Objects now: 3048. -Memory consumption went from 100.3 MB to 100.3 MB. -Total: 6.433300 ms (FindLiveObjects: 0.205100 ms CreateObjectMapping: 0.121100 ms MarkObjects: 6.067700 ms DeleteObjects: 0.038400 ms) +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) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -2192,61 +248,53 @@ 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: 1777.372267 seconds. - path: Assets/ART/base/lobby/Lobby.prefab - artifactKey: Guid(751de40dd4c9f3c468de2ffac612c137) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/ART/base/lobby/Lobby.prefab using Guid(751de40dd4c9f3c468de2ffac612c137) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '40d3a86970075279741ee99377656a57') in 0.037166 seconds -Number of asset objects unloaded after import = 103 -======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.005267 seconds. +Registered in 0.005248 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.32 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.572 seconds +- Completed reload, in 1.548 seconds Domain Reload Profiling: - ReloadAssembly (1572ms) - BeginReloadAssembly (155ms) + ReloadAssembly (1549ms) + BeginReloadAssembly (147ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) + DisableScriptedObjects (7ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - EndReloadAssembly (1321ms) - LoadAssemblies (107ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1310ms) + LoadAssemblies (100ms) RebuildTransferFunctionScriptingTraits (0ms) SetupTypeCache (223ms) ReleaseScriptCaches (1ms) RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (927ms) + SetupLoadedEditorAssemblies (920ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (26ms) - SetLoadedEditorAssemblies (1ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (58ms) - ProcessInitializeOnLoadAttributes (709ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (706ms) ProcessInitializeOnLoadMethodAttributes (130ms) 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. +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 99 unused Assets / (25.9 KB). Loaded Objects now: 3051. -Memory consumption went from 100.3 MB to 100.3 MB. -Total: 6.537600 ms (FindLiveObjects: 0.205800 ms CreateObjectMapping: 0.131300 ms MarkObjects: 6.154500 ms DeleteObjects: 0.045000 ms) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3036. +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) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -2262,25 +310,257 @@ 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: 1955.423809 seconds. - path: Assets/Scripts/VerCheck.cs - artifactKey: Guid(1f07c38cc7956b5489312497f1b51eac) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/Scripts/VerCheck.cs using Guid(1f07c38cc7956b5489312497f1b51eac) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5b9281e339f78608dacebd62aeae41e0') in 0.026665 seconds -Number of asset objects unloaded after import = 0 -======================================================================== -Received Import Request. - Time since last request: 23.967133 seconds. - path: Assets/Scripts/VerCheck.cs - artifactKey: Guid(1f07c38cc7956b5489312497f1b51eac) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/Scripts/VerCheck.cs using Guid(1f07c38cc7956b5489312497f1b51eac) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '17be3e6795cb0eb508e2d6310787d857') in 0.002363 seconds -Number of asset objects unloaded after import = 0 +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005276 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.521 seconds +Domain Reload Profiling: + ReloadAssembly (1522ms) + BeginReloadAssembly (143ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1287ms) + LoadAssemblies (98ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (217ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (905ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (693ms) + ProcessInitializeOnLoadMethodAttributes (129ms) + 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: 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) + +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.005510 seconds. +Registered in 0.005393 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 (140ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1263ms) + LoadAssemblies (94ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (208ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (891ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (685ms) + 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.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) + +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.005093 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.509 seconds +Domain Reload Profiling: + ReloadAssembly (1510ms) + BeginReloadAssembly (142ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1280ms) + LoadAssemblies (98ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (208ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (906ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (694ms) + ProcessInitializeOnLoadMethodAttributes (130ms) + 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 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) + +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.005205 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.521 seconds +Domain Reload Profiling: + ReloadAssembly (1521ms) + BeginReloadAssembly (142ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + EndReloadAssembly (1290ms) + LoadAssemblies (99ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (213ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (914ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + 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 @@ -2291,40 +571,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.484 seconds +- Completed reload, in 1.517 seconds Domain Reload Profiling: - ReloadAssembly (1485ms) - BeginReloadAssembly (142ms) + ReloadAssembly (1518ms) + BeginReloadAssembly (144ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - EndReloadAssembly (1253ms) - LoadAssemblies (98ms) + CreateAndSetChildDomain (35ms) + EndReloadAssembly (1282ms) + LoadAssemblies (100ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (207ms) + SetupTypeCache (212ms) ReleaseScriptCaches (1ms) RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (883ms) + SetupLoadedEditorAssemblies (904ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) + InitializePlatformSupportModulesInManaged (24ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (52ms) - ProcessInitializeOnLoadAttributes (677ms) - ProcessInitializeOnLoadMethodAttributes (127ms) + 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.12 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.0 KB). Loaded Objects now: 3054. -Memory consumption went from 100.3 MB to 100.3 MB. -Total: 6.637300 ms (FindLiveObjects: 0.246900 ms CreateObjectMapping: 0.141200 ms MarkObjects: 6.206800 ms DeleteObjects: 0.041500 ms) +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 -> @@ -2342,40 +622,102 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.006381 seconds. +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.31 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.519 seconds Domain Reload Profiling: - ReloadAssembly (1557ms) - BeginReloadAssembly (156ms) + ReloadAssembly (1520ms) + BeginReloadAssembly (141ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - EndReloadAssembly (1307ms) - LoadAssemblies (109ms) + CreateAndSetChildDomain (34ms) + EndReloadAssembly (1289ms) + LoadAssemblies (98ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (221ms) + SetupTypeCache (208ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (912ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (916ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (23ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (58ms) - ProcessInitializeOnLoadAttributes (699ms) - ProcessInitializeOnLoadMethodAttributes (128ms) + 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) + ProcessInitializeOnLoadMethodAttributes (131ms) AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) @@ -2385,8 +727,8 @@ Refreshing native plugins compatible for Editor in 1.16 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.3 MB to 100.3 MB. -Total: 6.525100 ms (FindLiveObjects: 0.207500 ms CreateObjectMapping: 0.137100 ms MarkObjects: 6.136800 ms DeleteObjects: 0.042700 ms) +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) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -2402,33 +744,9 @@ 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: 532.073985 seconds. - path: Assets/ART/extend/poker/shengsidu/ui - artifactKey: Guid(7f43aa906c2d1d343b181b4c383e2a78) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/ART/extend/poker/shengsidu/ui using Guid(7f43aa906c2d1d343b181b4c383e2a78) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2357855823e234111b80647ef6906bda') in 0.022766 seconds -Number of asset objects unloaded after import = 0 -======================================================================== -Received Import Request. - Time since last request: 431.033528 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: '5bb083cba19d5c0df45ff87eafff371e') in 0.057313 seconds -Number of asset objects unloaded after import = 334 -======================================================================== -Received Import Request. - Time since last request: 5874.700922 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: 'edb8768a60b635567628f8130b6f44b4') in 0.194623 seconds -Number of asset objects unloaded after import = 3 -======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.005246 seconds. +Registered in 0.005374 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory is not a mono symbol file Native extension for WindowsStandalone target not found @@ -2439,153 +757,29 @@ 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.707 seconds +- Completed reload, in 1.574 seconds Domain Reload Profiling: - ReloadAssembly (1708ms) - BeginReloadAssembly (214ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (74ms) - EndReloadAssembly (1392ms) - LoadAssemblies (127ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (258ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (45ms) - SetupLoadedEditorAssemblies (957ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (25ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (57ms) - ProcessInitializeOnLoadAttributes (726ms) - ProcessInitializeOnLoadMethodAttributes (145ms) - 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 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 101 unused Assets / (27.4 KB). Loaded Objects now: 3066. -Memory consumption went from 104.7 MB to 104.7 MB. -Total: 6.907900 ms (FindLiveObjects: 0.215300 ms CreateObjectMapping: 0.125700 ms MarkObjects: 6.505700 ms DeleteObjects: 0.059700 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.006415 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.602 seconds -Domain Reload Profiling: - ReloadAssembly (1603ms) - BeginReloadAssembly (170ms) + ReloadAssembly (1575ms) + BeginReloadAssembly (141ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (40ms) - EndReloadAssembly (1337ms) - LoadAssemblies (121ms) + CreateAndSetChildDomain (34ms) + EndReloadAssembly (1309ms) + LoadAssemblies (108ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (225ms) + SetupTypeCache (218ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (48ms) - SetupLoadedEditorAssemblies (930ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (918ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (24ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (59ms) - ProcessInitializeOnLoadAttributes (702ms) - ProcessInitializeOnLoadMethodAttributes (140ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 2.87 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 104.7 MB to 104.7 MB. -Total: 6.371900 ms (FindLiveObjects: 0.215600 ms CreateObjectMapping: 0.126800 ms MarkObjects: 5.984700 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.005052 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.37 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.566 seconds -Domain Reload Profiling: - ReloadAssembly (1566ms) - BeginReloadAssembly (154ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - EndReloadAssembly (1316ms) - LoadAssemblies (110ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (223ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (47ms) - SetupLoadedEditorAssemblies (915ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (25ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (61ms) - ProcessInitializeOnLoadAttributes (689ms) - ProcessInitializeOnLoadMethodAttributes (135ms) + BeforeProcessingInitializeOnLoad (54ms) + ProcessInitializeOnLoadAttributes (707ms) + ProcessInitializeOnLoadMethodAttributes (129ms) AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) @@ -2594,9 +788,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 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3072. -Memory consumption went from 104.7 MB to 104.7 MB. -Total: 6.217100 ms (FindLiveObjects: 0.211900 ms CreateObjectMapping: 0.115000 ms MarkObjects: 5.852900 ms DeleteObjects: 0.036300 ms) +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) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -2612,90 +806,436 @@ 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: 2078.242325 seconds. - path: Assets/ART/base/prefab/ViewShop.prefab - artifactKey: Guid(a391abe0b2329be4aa5ac47e69f7b432) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/ART/base/prefab/ViewShop.prefab using Guid(a391abe0b2329be4aa5ac47e69f7b432) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd2517218df41d37fe919c941b05b8fd6') in 0.050335 seconds -Number of asset objects unloaded after import = 76 +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005779 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 (146ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1280ms) + LoadAssemblies (101ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (210ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (911ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (0ms) + 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 Import Request. - Time since last request: 2.190473 seconds. - path: Assets/ART/base/prefab/ViewWallet.prefab - artifactKey: Guid(56f5dcb5989703b43a9d98d3b4820d2f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/ART/base/prefab/ViewWallet.prefab using Guid(56f5dcb5989703b43a9d98d3b4820d2f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '07904b2a3e3d44d440e50c1ff90e8930') in 0.022573 seconds -Number of asset objects unloaded after import = 216 +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) + 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) + +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: 2.086225 seconds. - path: Assets/ART/base/prefab/CommonUISprite.prefab - artifactKey: Guid(2a2b91d060c34c845871de7a94fa57b8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/ART/base/prefab/CommonUISprite.prefab using Guid(2a2b91d060c34c845871de7a94fa57b8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4f8c0581aa60d86426ca7b98da1e9075') in 0.013874 seconds -Number of asset objects unloaded after import = 15 +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005312 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.552 seconds +Domain Reload Profiling: + ReloadAssembly (1552ms) + BeginReloadAssembly (144ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + EndReloadAssembly (1317ms) + LoadAssemblies (100ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (219ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (935ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (717ms) + ProcessInitializeOnLoadMethodAttributes (129ms) + 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. +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) + +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: 2.181911 seconds. - path: Assets/ART/base/prefab/ViewCreateUnit.prefab - artifactKey: Guid(0e77461c3d35390459acb2de23424f4a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/ART/base/prefab/ViewCreateUnit.prefab using Guid(0e77461c3d35390459acb2de23424f4a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '46e1afac324b10ac075c72677367237e') in 0.028660 seconds -Number of asset objects unloaded after import = 269 +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005893 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. +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 +Domain Reload Profiling: + ReloadAssembly (1530ms) + BeginReloadAssembly (143ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + EndReloadAssembly (1297ms) + LoadAssemblies (100ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (216ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (921ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (54ms) + ProcessInitializeOnLoadAttributes (705ms) + ProcessInitializeOnLoadMethodAttributes (135ms) + 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 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) + +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: 7.514691 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: '3b48a912ff1ee4135ed51b2178da24f6') in 0.015415 seconds -Number of asset objects unloaded after import = 129 +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005380 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. +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 (139ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + EndReloadAssembly (1279ms) + LoadAssemblies (98ms) + 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 Import Request. - Time since last request: 52.124738 seconds. - path: Assets/ART/base/prefab/ViewGameGroup.prefab - artifactKey: Guid(8db8c11b897d9054c8867d0fd0eca5bf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/ART/base/prefab/ViewGameGroup.prefab using Guid(8db8c11b897d9054c8867d0fd0eca5bf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5308a67a7ad79f98af7b8c94abb0ce80') in 0.038645 seconds -Number of asset objects unloaded after import = 766 +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) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (707ms) + ProcessInitializeOnLoadMethodAttributes (130ms) + AfterProcessingInitializeOnLoad (2ms) + 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 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) + +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: 10.770034 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: 'df3e77698fa2da5f5abf9c809e74229b') in 0.016328 seconds -Number of asset objects unloaded after import = 129 -======================================================================== -Received Import Request. - Time since last request: 3.943736 seconds. - path: Assets/ART/base/prefab/GameUIText.prefab - artifactKey: Guid(0697deb3d409f89488096c769de941c4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/ART/base/prefab/GameUIText.prefab using Guid(0697deb3d409f89488096c769de941c4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3c42967be4524e099fd1490050a6d27a') in 0.014446 seconds -Number of asset objects unloaded after import = 6 -======================================================================== -Received Import Request. - Time since last request: 1.188901 seconds. - path: Assets/ART/base/prefab/GameCardSprite.prefab - artifactKey: Guid(ec2ca48bc0e5eaa4fa968976d6519d05) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/ART/base/prefab/GameCardSprite.prefab using Guid(ec2ca48bc0e5eaa4fa968976d6519d05) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'de98e5dd00e139e9a7dfdee81a5200d0') in 0.064259 seconds -Number of asset objects unloaded after import = 218 -======================================================================== -Received Import Request. - Time since last request: 60.015020 seconds. - path: Assets/ART/base/prefab/ViewOther.prefab - artifactKey: Guid(fbcef562e0e06fe47b911129044d0b65) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/ART/base/prefab/ViewOther.prefab using Guid(fbcef562e0e06fe47b911129044d0b65) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dc9b58c60b107cb94505c8b0193a4839') in 0.020695 seconds -Number of asset objects unloaded after import = 355 -======================================================================== -Received Import Request. - Time since last request: 0.860367 seconds. - path: Assets/ART/base/prefab/ViewSetting.prefab - artifactKey: Guid(156666f1d2f379848b10df6abba2f0fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Number of updated assets reloaded before import = 0 -Start importing Assets/ART/base/prefab/ViewSetting.prefab using Guid(156666f1d2f379848b10df6abba2f0fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'eec8b484544355f1c650e83a5d76103b') in 0.011765 seconds -Number of asset objects unloaded after import = 27 +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005183 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.543 seconds +Domain Reload Profiling: + ReloadAssembly (1543ms) + BeginReloadAssembly (147ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1308ms) + LoadAssemblies (101ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (211ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (924ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (711ms) + ProcessInitializeOnLoadMethodAttributes (131ms) + 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: 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) + +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 -> diff --git a/wb_unity_pro/UserSettings/Layouts/default-2021.dwlt b/wb_unity_pro/UserSettings/Layouts/default-2021.dwlt index 52fe3d7..1d5e698 100644 --- a/wb_unity_pro/UserSettings/Layouts/default-2021.dwlt +++ b/wb_unity_pro/UserSettings/Layouts/default-2021.dwlt @@ -19,7 +19,7 @@ MonoBehaviour: width: 2500 height: 1333 m_ShowMode: 4 - m_Title: Hierarchy + m_Title: Console m_RootView: {fileID: 2} m_MinSize: {x: 875, y: 350} m_MaxSize: {x: 10000, y: 10000} @@ -119,7 +119,7 @@ MonoBehaviour: m_MinSize: {x: 400, y: 200} m_MaxSize: {x: 32384, y: 16192} vertical: 0 - controlID: 81 + controlID: 195 --- !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: 92 + controlID: 123 --- !u!114 &7 MonoBehaviour: m_ObjectHideFlags: 52 @@ -169,7 +169,7 @@ MonoBehaviour: m_MinSize: {x: 200, y: 100} m_MaxSize: {x: 16192, y: 8096} vertical: 0 - controlID: 93 + controlID: 124 --- !u!114 &8 MonoBehaviour: m_ObjectHideFlags: 52 @@ -250,7 +250,7 @@ MonoBehaviour: m_MinSize: {x: 300, y: 100} m_MaxSize: {x: 24288, y: 8096} vertical: 0 - controlID: 170 + controlID: 165 --- !u!114 &11 MonoBehaviour: m_ObjectHideFlags: 52 @@ -482,9 +482,9 @@ MonoBehaviour: m_SceneHierarchy: m_TreeViewState: scrollPos: {x: 0, y: 0} - m_SelectedIDs: 04700200 - m_LastClickedID: 159748 - m_ExpandedIDs: e81ffdfff41ffdffe06f0200047002001e700200287002004070020094700200ac700200 + m_SelectedIDs: 2631ffff + m_LastClickedID: 0 + m_ExpandedIDs: 3831ffff8c31ffff9c31ffffac31ffff2a32ffff3432ffff3e32ffff6832ffff1053ffff1a53ffff2453ffff4e53ffff2cfbffffe254000036550000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -725,7 +725,7 @@ MonoBehaviour: collapsed: 0 displayed: 1 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: -101, y: -1} + snapOffsetDelta: {x: -101, y: -26} snapCorner: 3 id: Tool Settings index: 0 @@ -758,7 +758,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 25} + snapOffsetDelta: {x: 0, y: 0} snapCorner: 1 id: unity-search-toolbar index: 1 @@ -769,7 +769,7 @@ MonoBehaviour: collapsed: 0 displayed: 1 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 25} + snapOffsetDelta: {x: 0, y: 0} snapCorner: 0 id: unity-transform-toolbar index: 0 @@ -802,7 +802,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 25} + snapOffsetDelta: {x: 0, y: 0} snapCorner: 0 id: Scene View/Light Settings index: 0 @@ -813,7 +813,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 25} + snapOffsetDelta: {x: 0, y: 0} snapCorner: 0 id: Scene View/Camera index: 1 @@ -824,7 +824,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 25} + snapOffsetDelta: {x: 0, y: 0} snapCorner: 0 id: Scene View/Cloth Constraints index: 2 @@ -835,7 +835,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 25} + snapOffsetDelta: {x: 0, y: 0} snapCorner: 0 id: Scene View/Cloth Collisions index: 3 @@ -846,7 +846,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 25} + snapOffsetDelta: {x: 0, y: 0} snapCorner: 0 id: Scene View/Navmesh Display index: 5 @@ -857,7 +857,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 25} + snapOffsetDelta: {x: 0, y: 0} snapCorner: 0 id: Scene View/Agent Display index: 7 @@ -868,7 +868,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 25} + snapOffsetDelta: {x: 0, y: 0} snapCorner: 0 id: Scene View/Obstacle Display index: 9 @@ -879,7 +879,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 25} + snapOffsetDelta: {x: 0, y: 0} snapCorner: 0 id: Scene View/Occlusion Culling index: 4 @@ -890,7 +890,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 25} + snapOffsetDelta: {x: 0, y: 0} snapCorner: 0 id: Scene View/Physics Debugger index: 6 @@ -901,7 +901,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 25} + snapOffsetDelta: {x: 0, y: 0} snapCorner: 0 id: Scene View/Scene Visibility index: 8 @@ -912,7 +912,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 25} + snapOffsetDelta: {x: 0, y: 0} snapCorner: 0 id: Scene View/Particles index: 10 @@ -956,7 +956,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 25} + snapOffsetDelta: {x: 0, y: 0} snapCorner: 0 id: Scene View/Open Tile Palette index: 2 @@ -967,7 +967,7 @@ MonoBehaviour: collapsed: 0 displayed: 0 snapOffset: {x: 0, y: 0} - snapOffsetDelta: {x: 0, y: 25} + snapOffsetDelta: {x: 0, y: 0} snapCorner: 0 id: Scene View/Tilemap Focus index: 3 @@ -975,17 +975,17 @@ MonoBehaviour: m_OverlaysVisible: 1 m_WindowGUID: e07c16a66c31ae440bdbc5a34c43feb6 m_Gizmos: 1 - m_OverrideSceneCullingMask: 0 - m_SceneIsLit: 0 + m_OverrideSceneCullingMask: 6917529027641081856 + m_SceneIsLit: 1 m_SceneLighting: 1 m_2DMode: 1 m_isRotationLocked: 0 m_PlayAudio: 0 m_AudioPlay: 0 m_Position: - m_Target: {x: 230.9297, y: 2003.0482, z: 1.9848838} + m_Target: {x: 1314.0447, y: 1667.7003, z: -2.5761037} speed: 2 - m_Value: {x: 233.36331, y: 2001.0342, z: 1.8556515} + m_Value: {x: 1314.0447, y: 1667.7003, z: -2.5761037} m_RenderMode: 0 m_CameraMode: drawMode: 0 @@ -997,7 +997,7 @@ MonoBehaviour: m_SceneViewState: m_AlwaysRefresh: 0 showFog: 1 - showSkybox: 0 + showSkybox: 1 showFlares: 1 showImageEffects: 1 showParticleSystems: 1 @@ -1036,9 +1036,9 @@ MonoBehaviour: speed: 2 m_Value: {x: 0, y: 0, z: 0, w: 1} m_Size: - m_Target: 274.26123 + m_Target: 1653.084 speed: 2 - m_Value: 287.18454 + m_Value: 1653.084 m_Ortho: m_Target: 1 speed: 2 @@ -1113,14 +1113,14 @@ MonoBehaviour: m_LastFolders: - Assets/ART/base/prefab m_LastFoldersGridSize: 16 - m_LastProjectPath: D:\UnityProject\dezhou\dezhou_client\wb_unity_pro + m_LastProjectPath: D:\UnityProject\dezhouNew\dezhou_client\wb_unity_pro m_LockTracker: m_IsLocked: 0 m_FolderTreeState: - scrollPos: {x: 0, y: 120} - m_SelectedIDs: 20560000 - m_LastClickedID: 22048 - m_ExpandedIDs: 00000000d4550000d6550000d8550000da550000dc550000de550000e0550000e4550000e6550000e85500000e560000125600001456000000ca9a3bffffff7f + scrollPos: {x: 0, y: 192} + m_SelectedIDs: 0a560000 + m_LastClickedID: 22026 + m_ExpandedIDs: 00000000d4550000d6550000d8550000da550000dc550000de550000e0550000e2550000e4550000e6550000e8550000ea55000000ca9a3bffffff7f m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -1148,7 +1148,7 @@ MonoBehaviour: scrollPos: {x: 0, y: 0} m_SelectedIDs: m_LastClickedID: 0 - m_ExpandedIDs: 00000000d4550000d6550000d8550000da550000dc550000de550000e0550000e2550000e4550000e6550000e8550000 + m_ExpandedIDs: 00000000d4550000d6550000d8550000da550000dc550000de550000e0550000e2550000e4550000e6550000e8550000ea550000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: