diff --git a/lua_probject/base_project/Game/View/FilterView.lua b/lua_probject/base_project/Game/View/FilterView.lua index 3fc4ff7..999eb64 100644 --- a/lua_probject/base_project/Game/View/FilterView.lua +++ b/lua_probject/base_project/Game/View/FilterView.lua @@ -35,20 +35,26 @@ end function M:SetList(v) for index, value in ipairs(self.list) do value.goTitle:SetActive(false) - value.goItem:SetActive(false) + value.rectTs:SetActive(false) + value.rectRank:SetActive(false) end for index, value in ipairs(v) do if index > #self.list then - local tempCount = #self.list + 1 + local tempCount = index 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 + self.list[tempCount].rectTs = itemTs:GetComponent(typeof(UnityEngine.RectTransform)) + self.list[tempCount].rectRank = itemRank:GetComponent(typeof(UnityEngine.RectTransform)) + local gridRankGrid = self.list[tempCount].rectRank:Find("grid") + gridRankGrid = gridRankGrid:GetComponent(typeof(UnityEngine.UI.GridLayoutGroup)) + local vecGridSize = gridRankGrid.cellSize + vecGridSize.x = 175 + gridRankGrid.cellSize = vecGridSize + self.list[tempCount].rectTitle = title:GetComponent(typeof(UnityEngine.RectTransform)) title = title.transform:Find("textTitle") self.list[tempCount].textTitle = title:GetComponent(typeof(UnityEngine.UI.Text)) self.list[tempCount].TS = {} @@ -62,70 +68,143 @@ function M:SetList(v) self.list[tempCount].Rank.textTitle = subTitle self.list[tempCount].Rank.list = {} end - self:ShowData(self.list[index], value) - self.list[index].goTitle:SetActive(true) - self.lsit[index].goItem:SetActive(true) + self:ShowData(index, self.list[index], value) + self.list[index].rectTitle.gameObject:SetActive(true) + self.list[index].rectTs.gameObject:SetActive(true) + self.list[index].rectRank.gameObject:SetActive(true) end end -function M:ShowData(val, v) +function M:ShowData(indexTemp, val, v) local data = FilterData[v] val.textTitle.text = data.name local listTs = val.TS.list + val.TS.textTitle.text = data.ts.name + val.Rank.textTitle.text = data.rank.name + + local height = 236.5 for index, value in ipairs(listTs) do - value.goItem:SetActive(false) + value.goItem.gameObject:SetActive(false) end + local vecSize = val.rectTs.sizeDelta -- #data.ts.data + vecSize.y = self:Trunc(#data.ts.data / 3) * 93 + height + val.rectTs.sizeDelta = vecSize for index, value in ipairs(data.ts.data) do if index > #listTs then - local tempItem = val.goTs.transform:Find("grid/btnItem") + local tempItem = val.rectTs: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") + tempTs.Animator = tempTs.goItem.transform:Find("imageShow") + tempTs.Animator = tempTs.Animator:GetComponent(typeof(UnityEngine.Animator)) local btnItem = tempTs.goItem:GetComponent(typeof(UnityEngine.UI.Button)) - LuaUIHelper:AddButtonClick(btnItem, function(val) - self:OnClickItemTS(val) - end, index) - listTs[#listTs + 1] = tempTs + LuaUIHelper:AddButtonClick(btnItem, function(ta) + self:OnClickItem(ta) + end, { indexList = indexTemp, type = data.type, kind = "Ts", index = index }) + listTs[index] = tempTs end - -- listTs[#listTs].textName.text = value - -- listTs[#listTs].goItem:SetActive(true) + listTs[index].textName.text = value.name + listTs[index].goItem.gameObject:SetActive(true) + listTs[index].Animator:Play("stop", -1, 0) end + local listRank = val.Rank.list for index, value in ipairs(listRank) do - value.goItem:SetActive(false) + value.goItem.gameObject:SetActive(false) end - for index, value in ipairs(listRank) do + vecSize = val.rectRank.sizeDelta + vecSize.y = self:Trunc(#data.rank.data / 3) * 93 + height + val.rectRank.sizeDelta = vecSize + for index, value in ipairs(data.rank.data) do if index > #listRank then - local tempItem = val.goTs.transform:Find("grid/btnItem") + local tempItem = val.rectRank: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 + local tempRank = {} + tempRank.goItem = UnityEngine.GameObject.Instantiate(tempItem, tempItem.parent, false) + tempRank.goItem.gameObject:SetActive(true) + tempRank.textName = tempRank.goItem.transform:Find("textName") + tempRank.textName = tempRank.textName:GetComponent(typeof(UnityEngine.UI.Text)) + tempRank.Animator = tempRank.goItem.transform:Find("imageShow") + local rectImageShow = tempRank.Animator:GetComponent(typeof(UnityEngine.RectTransform)) + local vecImageShow = rectImageShow.sizeDelta + vecImageShow.x = 175 + rectImageShow.sizeDelta = vecImageShow + tempRank.Animator = tempRank.Animator:GetComponent(typeof(UnityEngine.Animator)) + local btnItem = tempRank.goItem:GetComponent(typeof(UnityEngine.UI.Button)) + LuaUIHelper:AddButtonClick(btnItem, function(ta) + self:OnClickItem(ta) + end, { indexList = indexTemp, type = data.type, kind = "Rank", index = index }) + listRank[index] = tempRank end - -- listRank[#listRank].textName.text = value - -- listRank[#listRank].goItem:SetActive(true) + listRank[index].textName.text = value.name + listRank[index].goItem.gameObject:SetActive(true) end end -function M:OnClickItemTS(val) - +function M:Trunc(num) + if num >= 0 then + return math.floor(num) + else + return math.ceil(num) + end end -function M:OnClickItemRank(val) - +function M:OnClickItem(val) + -- print("按键值:" .. val.indexList .. "=" .. val.type .. "=" .. val.kind .. "=" .. val.index) + local temp = FilterData[val.type] + if val.kind == "ts" then + for index, value in ipairs(temp.ts.data) do + if val.index == index then + break + end + end + elseif val.kind == "Rank" then + local listRank = self.list[val.indexList].Rank.list + local data = temp.rank.data + for index, value in ipairs(data) do + if val.index == index then + local v = index % 4 + if v == 1 then + value.isShow = not value.isShow + if value.isShow then + listRank[index].Animator:Play("open", -1, 0) + listRank[index + 1].Animator:Play("open", -1, 0) + listRank[index + 2].Animator:Play("open", -1, 0) + listRank[index + 3].Animator:Play("open", -1, 0) + else + listRank[index].Animator:Play("close", -1, 0) + listRank[index + 1].Animator:Play("close", -1, 0) + listRank[index + 2].Animator:Play("close", -1, 0) + listRank[index + 3].Animator:Play("close", -1, 0) + end + else + value.isShow = not value.isShow + v = index - v + print("这是数字" .. v .. "=" .. index) + if value.isShow then + listRank[index].Animator:Play("open", -1, 0) + else + listRank[index].Animator:Play("close", -1, 0) + end + print("什么鬼" .. + tostring(data[v + 2].isShow) .. + tostring(data[v + 3].isShow) .. tostring(data[v + 4].isShow)) + if data[v + 2].isShow and data[v + 3].isShow and data[v + 4].isShow then + data[v + 1].isShow = true + listRank[v + 1].Animator:Play("open", -1, 0) + else + data[v + 1].isShow = false + listRank[v + 1].Animator:Play("close", -1, 0) + end + end + break + end + end + end end return M diff --git a/lua_probject/base_project/Game/View/LobbyNew/FilterData.lua b/lua_probject/base_project/Game/View/LobbyNew/FilterData.lua index e9fe68b..31b250e 100644 --- a/lua_probject/base_project/Game/View/LobbyNew/FilterData.lua +++ b/lua_probject/base_project/Game/View/LobbyNew/FilterData.lua @@ -1,90 +1,61 @@ -local deZhouCard = { - name = "德州扑克", - ts = { - name = "特色玩法", - data = { { name = "强抓" }, { name = "暴击" }, { name = "鱿鱼" }, { name = "AOF" } } - }, - rank = { - name = "级别", - data = { - { name = "微<2" }, - { name = "小 2-9" }, - { name = "中 10-99" }, - { name = "大 100+" }, - { name = "0.1/0.2" }, - { name = "1/2" }, - { name = "5/10" }, - { name = "50/100" }, - { name = "0.25/0.5" }, - { name = "2/4" }, - { name = "10/20" }, - { name = "100/200" }, - { name = "0.5/1.0" }, - { name = "3/6" }, - { name = "20/40" }, - { name = "500/1000" } } - } -} -local duanPaiCard = { - name = "短牌", - ts = { - name = "特色玩法", - data = { { name = "鱿鱼" }, { name = "AOF" } } - }, - rank = { - name = "级别", - data = { - { name = "微 <2" }, - { name = "小 1-9" }, - { name = "中 10-99" }, - { name = "大 100+" }, - { name = "0.1" }, - { name = "1" }, - { name = "10" }, - { name = "100" }, - { name = "0.2" }, - { name = "2" }, - { name = "20" }, - { name = "200" }, - { name = "0.5" }, - { name = "5" }, - { name = "50" }, - { name = "500" } } - } -} - -local aomahaCard = { - name = "奥马哈", - ts = { - name = "特色玩法", - data = { { name = "强抓" }, { name = "暴击" }, { name = "鱿鱼" } } - }, - rank = { - name = "级别", - data = { - { name = "微<2" }, - { name = "小 2-9" }, - { name = "中 10-99" }, - { name = "大 100+" }, - { name = "0.1/0.2" }, - { name = "1/2" }, - { name = "5/10" }, - { name = "50/100" }, - { name = "0.25/0.5" }, - { name = "2/4" }, - { name = "10/20" }, - { name = "100/200" }, - { name = "0.5/1.0" }, - { name = "3/6" }, - { name = "20/40" }, - { name = "500/1000" } } - } -} FilterType = { DeZhou = 1, DuanPai = 2, Aomah = 3, } +local deZhouCard = { + type = FilterType.DeZhou, + name = "德州扑克", + ts = { + name = "特色玩法", + data = { { name = "强抓", isShow = false }, { name = "暴击", isShow = false }, { name = "鱿鱼", isShow = false }, { name = "AOF", isShow = false } } + }, + rank = { + name = "级别", + data = { + { name = "微<2", isShow = false }, { name = "0.1/0.2", isShow = false }, { name = "0.25/0.5", isShow = false }, { name = "0.5/1.0", isShow = false }, + { name = "小 2-9" }, { name = "1/2" }, { name = "2/4" }, { name = "3/6" }, + { name = "中 10-99", isShow = false }, { name = "5/10", isShow = false }, { name = "10/20", isShow = false }, { name = "20/40", isShow = false }, + { name = "大 100+", isShow = false }, { name = "50/100", isShow = false }, { name = "100/200", isShow = false }, { name = "500/1000", isShow = false } } + } +} +local duanPaiCard = { + type = FilterType.DuanPai, + name = "短牌", + ts = { + isShow = true, + name = "特色玩法", + data = { { name = "鱿鱼", isShow = false }, { name = "AOF", isShow = false } } + }, + rank = { + isShow = true, + name = "级别", + data = { + { name = "微 <2", isShow = false }, { name = "0.1", isShow = false }, { name = "0.2", isShow = false }, { name = "0.5", isShow = false }, + { name = "小 1-9", isShow = false }, { name = "1", isShow = false }, { name = "2", isShow = false }, { name = "5", isShow = false }, + { name = "中 10-99", isShow = false }, { name = "10", isShow = false }, { name = "20", isShow = false }, { name = "50", isShow = false }, + { name = "大 100+", isShow = false }, { name = "100", isShow = false }, { name = "200", isShow = false }, { name = "500", isShow = false } } + } +} + +local aomahaCard = { + type = FilterType.Aomah, + name = "奥马哈", + ts = { + isShow = true, + name = "特色玩法", + data = { { name = "强抓", isShow = false }, { name = "暴击", isShow = false }, { name = "鱿鱼", isShow = false } } + }, + rank = { + isShow = true, + name = "级别", + data = { + { name = "微<2", isShow = false }, { name = "0.1/0.2", isShow = false }, { name = "0.25/0.5", isShow = false }, { name = "0.5/1.0", isShow = false }, + { name = "小 2-9", isShow = false }, { name = "1/2", isShow = false }, { name = "2/4", isShow = false }, { name = "3/6", isShow = false }, + { name = "中 10-99", isShow = false }, { name = "5/10", isShow = false }, { name = "10/20", isShow = false }, { name = "20/40", isShow = false }, + { name = "大 100+", isShow = false }, { name = "50/100", isShow = false }, { name = "100/200", isShow = false }, { name = "500/1000", isShow = false } } + } +} FilterData = { [FilterType.DeZhou] = deZhouCard, [FilterType.DuanPai] = duanPaiCard, diff --git a/lua_probject/base_project/Game/View/LobbyNew/UnitMain.lua b/lua_probject/base_project/Game/View/LobbyNew/UnitMain.lua index ccf91e1..4f5aede 100644 --- a/lua_probject/base_project/Game/View/LobbyNew/UnitMain.lua +++ b/lua_probject/base_project/Game/View/LobbyNew/UnitMain.lua @@ -117,7 +117,6 @@ function M:init(view) self.selectTitle = self.enumTitle.Home self:OnShowPage(self.selectTitle) - print("??" .. self.selectTitle) end function M:OnShowPage(val) 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 b39b2fd..43e1cc7 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 c8dfaa2..ac67f80 100644 Binary files a/wb_unity_pro/.vs/wb_unity_pro/CopilotIndices/17.14.1368.60722/SemanticSymbols.db and b/wb_unity_pro/.vs/wb_unity_pro/CopilotIndices/17.14.1368.60722/SemanticSymbols.db differ diff --git a/wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/0b1a0ec4-50d9-4f0b-bc01-9b9e2177de81.vsidx b/wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/0b1a0ec4-50d9-4f0b-bc01-9b9e2177de81.vsidx new file mode 100644 index 0000000..486bf81 Binary files /dev/null and b/wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/0b1a0ec4-50d9-4f0b-bc01-9b9e2177de81.vsidx differ diff --git a/wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/33d71e91-8947-41ff-93e9-25983d54294e.vsidx b/wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/33d71e91-8947-41ff-93e9-25983d54294e.vsidx deleted file mode 100644 index 394bc10..0000000 Binary files a/wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/33d71e91-8947-41ff-93e9-25983d54294e.vsidx and /dev/null differ diff --git a/wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/53b7b2b6-06ed-4158-85d1-3efc7fd068d0.vsidx b/wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/53b7b2b6-06ed-4158-85d1-3efc7fd068d0.vsidx new file mode 100644 index 0000000..e2e6c0d Binary files /dev/null and b/wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/53b7b2b6-06ed-4158-85d1-3efc7fd068d0.vsidx differ diff --git a/wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/6eb34f40-2c84-4db6-83e1-c117116edca3.vsidx b/wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/6eb34f40-2c84-4db6-83e1-c117116edca3.vsidx new file mode 100644 index 0000000..6ec09ef Binary files /dev/null and b/wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/6eb34f40-2c84-4db6-83e1-c117116edca3.vsidx differ diff --git a/wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/c1b22d77-3a56-450f-9140-d8254f228e26.vsidx b/wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/c1b22d77-3a56-450f-9140-d8254f228e26.vsidx new file mode 100644 index 0000000..59de9aa Binary files /dev/null and b/wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/c1b22d77-3a56-450f-9140-d8254f228e26.vsidx differ diff --git a/wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/d73031de-9288-4b0a-9a2c-4c733d2c7eb1.vsidx b/wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/d73031de-9288-4b0a-9a2c-4c733d2c7eb1.vsidx deleted file mode 100644 index 41d53f9..0000000 Binary files a/wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/d73031de-9288-4b0a-9a2c-4c733d2c7eb1.vsidx and /dev/null differ diff --git a/wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/e14af50f-c81f-4297-aa8f-8b205dbb575a.vsidx b/wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/e14af50f-c81f-4297-aa8f-8b205dbb575a.vsidx deleted file mode 100644 index 7127f81..0000000 Binary files a/wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/e14af50f-c81f-4297-aa8f-8b205dbb575a.vsidx and /dev/null differ diff --git a/wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/f65d381d-cee0-4b49-a8dc-eca51e2a1e5c.vsidx b/wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/f65d381d-cee0-4b49-a8dc-eca51e2a1e5c.vsidx deleted file mode 100644 index dd2c0ac..0000000 Binary files a/wb_unity_pro/.vs/wb_unity_pro/FileContentIndex/f65d381d-cee0-4b49-a8dc-eca51e2a1e5c.vsidx and /dev/null differ diff --git a/wb_unity_pro/.vs/wb_unity_pro/v17/DocumentLayout.backup.json b/wb_unity_pro/.vs/wb_unity_pro/v17/DocumentLayout.backup.json index 790246c..139048c 100644 --- a/wb_unity_pro/.vs/wb_unity_pro/v17/DocumentLayout.backup.json +++ b/wb_unity_pro/.vs/wb_unity_pro/v17/DocumentLayout.backup.json @@ -2,29 +2,29 @@ "Version": 1, "WorkspaceRootPath": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\", "Documents": [ + { + "AbsoluteMoniker": "D:0:0:{D75A4DC2-9F64-A98D-0D87-0D117969F0D9}|Assembly-CSharp-Editor.csproj|d:\\unityproject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\editor\\customsettings.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", + "RelativeMoniker": "D:0:0:{D75A4DC2-9F64-A98D-0D87-0D117969F0D9}|Assembly-CSharp-Editor.csproj|solutionrelative:assets\\scripts\\editor\\customsettings.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" + }, { "AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\vercheck.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\vercheck.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, - { - "AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\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}", - "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}", - "RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\core\\pageslidermanager.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" + "AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\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:{D75A4DC2-9F64-A98D-0D87-0D117969F0D9}|Assembly-CSharp-Editor.csproj|D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\editor\\customsettings.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", - "RelativeMoniker": "D:0:0:{D75A4DC2-9F64-A98D-0D87-0D117969F0D9}|Assembly-CSharp-Editor.csproj|solutionrelative:assets\\scripts\\editor\\customsettings.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" + "AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\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\\pageslidermanager.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", + "RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\core\\pageslidermanager.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { "AbsoluteMoniker": "D:0:0:{D75A4DC2-9F64-A98D-0D87-0D117969F0D9}|Assembly-CSharp-Editor.csproj|D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\editor\\buildbasewindow.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", @@ -54,11 +54,11 @@ "DocumentGroups": [ { "DockedWidth": 222, - "SelectedChildIndex": 3, + "SelectedChildIndex": 2, "Children": [ { "$type": "Document", - "DocumentIndex": 2, + "DocumentIndex": 4, "Title": "HotupdateWrap.cs", "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Source\\Generate\\HotupdateWrap.cs", "RelativeDocumentMoniker": "Assets\\Source\\Generate\\HotupdateWrap.cs", @@ -66,12 +66,11 @@ "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, + "DocumentIndex": 3, "Title": "HotUpdate.cs", "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\HotUpdate.cs", "RelativeDocumentMoniker": "Assets\\Scripts\\HotUpdate.cs", @@ -79,33 +78,32 @@ "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, + "DocumentIndex": 0, "Title": "CustomSettings.cs", "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Editor\\CustomSettings.cs", "RelativeDocumentMoniker": "Assets\\Scripts\\Editor\\CustomSettings.cs", "ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Editor\\CustomSettings.cs", "RelativeToolTip": "Assets\\Scripts\\Editor\\CustomSettings.cs", - "ViewState": "AgIAAJ4AAAAAAAAAAADgv7cAAAAkAAAAAAAAAA==", + "ViewState": "AgIAAJ4AAAAAAAAAAADgv7IAAAAxAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", - "WhenOpened": "2025-12-12T10:00:55.514Z" + "WhenOpened": "2025-12-12T10:00:55.514Z", + "EditorCaption": "" }, { "$type": "Document", - "DocumentIndex": 0, + "DocumentIndex": 1, "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": "AgIAALQBAAAAAAAAAAAIwM8BAAAtAAAAAAAAAA==", + "ViewState": "AgIAAAAAAAAAAAAAAAAAAEwAAABIAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", - "WhenOpened": "2025-12-11T08:27:32.177Z", - "EditorCaption": "" + "WhenOpened": "2025-12-11T08:27:32.177Z" }, { "$type": "Document", @@ -121,7 +119,7 @@ }, { "$type": "Document", - "DocumentIndex": 4, + "DocumentIndex": 5, "Title": "PageSliderManager.cs", "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\PageSliderManager.cs", "RelativeDocumentMoniker": "Assets\\Scripts\\Core\\PageSliderManager.cs", @@ -175,13 +173,13 @@ }, { "$type": "Document", - "DocumentIndex": 3, + "DocumentIndex": 2, "Title": "LuaUIHelper.cs", "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelper.cs", "RelativeDocumentMoniker": "Assets\\Scripts\\Core\\LuaUIHelper.cs", "ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelper.cs", "RelativeToolTip": "Assets\\Scripts\\Core\\LuaUIHelper.cs", - "ViewState": "AgIAAAAAAAAAAAAAAAAAAIwBAAAAAAAAAAAAAA==", + "ViewState": "AgIAAHEBAAAAAAAAAAAIwJwBAAApAAAAAAAAAA==", "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 3dbb64f..77df93a 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,45 @@ { "Version": 1, - "WorkspaceRootPath": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\", + "WorkspaceRootPath": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\", "Documents": [ { - "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\\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\\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\\dezhounew\\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\\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\\dezhouNew\\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\\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}", + "RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\hotupdate.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" + }, + { + "AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\core\\pageslidermanager.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\core\\pageslidermanager.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { - "AbsoluteMoniker": "D:0:0:{D75A4DC2-9F64-A98D-0D87-0D117969F0D9}|Assembly-CSharp-Editor.csproj|D:\\UnityProject\\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\\dezhouNew\\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\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\editor\\buildbasewindow.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", "RelativeMoniker": "D:0:0:{D75A4DC2-9F64-A98D-0D87-0D117969F0D9}|Assembly-CSharp-Editor.csproj|solutionrelative:assets\\scripts\\editor\\buildbasewindow.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" }, { - "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}", + "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}", "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\\dezhouNew\\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\\dezhou\\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\\dezhouNew\\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\\dezhou\\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\\dezhouNew\\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\\dezhou\\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}" } ], @@ -54,27 +50,28 @@ "DocumentGroups": [ { "DockedWidth": 222, - "SelectedChildIndex": 3, + "SelectedChildIndex": 0, "Children": [ { "$type": "Document", - "DocumentIndex": 2, + "DocumentIndex": 1, "Title": "HotupdateWrap.cs", - "DocumentMoniker": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Source\\Generate\\HotupdateWrap.cs", + "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Source\\Generate\\HotupdateWrap.cs", "RelativeDocumentMoniker": "Assets\\Source\\Generate\\HotupdateWrap.cs", - "ToolTip": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Source\\Generate\\HotupdateWrap.cs", + "ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Source\\Generate\\HotupdateWrap.cs", "RelativeToolTip": "Assets\\Source\\Generate\\HotupdateWrap.cs", "ViewState": "AgIAAAAAAAAAAAAAAAAAAAQAAAANAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", - "WhenOpened": "2025-12-16T12:10:36.126Z" + "WhenOpened": "2025-12-16T12:10:36.126Z", + "EditorCaption": "" }, { "$type": "Document", - "DocumentIndex": 1, + "DocumentIndex": 3, "Title": "HotUpdate.cs", - "DocumentMoniker": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\HotUpdate.cs", + "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\HotUpdate.cs", "RelativeDocumentMoniker": "Assets\\Scripts\\HotUpdate.cs", - "ToolTip": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\HotUpdate.cs", + "ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\HotUpdate.cs", "RelativeToolTip": "Assets\\Scripts\\HotUpdate.cs", "ViewState": "AgIAAJcAAAAAAAAAAAAAwK4AAAAAAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", @@ -82,36 +79,23 @@ }, { "$type": "Document", - "DocumentIndex": 5, - "Title": "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\\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|", - "WhenOpened": "2025-12-12T10:00:55.514Z" - }, - { - "$type": "Document", - "DocumentIndex": 0, + "DocumentIndex": 2, "Title": "VerCheck.cs", - "DocumentMoniker": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\VerCheck.cs", + "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\VerCheck.cs", "RelativeDocumentMoniker": "Assets\\Scripts\\VerCheck.cs", - "ToolTip": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\VerCheck.cs", + "ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\VerCheck.cs", "RelativeToolTip": "Assets\\Scripts\\VerCheck.cs", "ViewState": "AgIAAAAAAAAAAAAAAAAAAEwAAABIAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", - "WhenOpened": "2025-12-11T08:27:32.177Z", - "EditorCaption": "" + "WhenOpened": "2025-12-11T08:27:32.177Z" }, { "$type": "Document", - "DocumentIndex": 6, + "DocumentIndex": 5, "Title": "BuildBaseWindow.cs", - "DocumentMoniker": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Editor\\BuildBaseWindow.cs", + "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Editor\\BuildBaseWindow.cs", "RelativeDocumentMoniker": "Assets\\Scripts\\Editor\\BuildBaseWindow.cs", - "ToolTip": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Editor\\BuildBaseWindow.cs", + "ToolTip": "D:\\UnityProject\\dezhou\\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|", @@ -121,9 +105,9 @@ "$type": "Document", "DocumentIndex": 4, "Title": "PageSliderManager.cs", - "DocumentMoniker": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\PageSliderManager.cs", + "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\PageSliderManager.cs", "RelativeDocumentMoniker": "Assets\\Scripts\\Core\\PageSliderManager.cs", - "ToolTip": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\PageSliderManager.cs", + "ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\PageSliderManager.cs", "RelativeToolTip": "Assets\\Scripts\\Core\\PageSliderManager.cs", "ViewState": "AgIAANIDAAAAAAAAAABIwAUEAAABAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", @@ -131,11 +115,11 @@ }, { "$type": "Document", - "DocumentIndex": 9, + "DocumentIndex": 8, "Title": "LuaUIHelperSprite.cs", - "DocumentMoniker": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelperSprite.cs", + "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelperSprite.cs", "RelativeDocumentMoniker": "Assets\\Scripts\\Core\\LuaUIHelperSprite.cs", - "ToolTip": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelperSprite.cs", + "ToolTip": "D:\\UnityProject\\dezhou\\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|", @@ -149,11 +133,11 @@ "Children": [ { "$type": "Document", - "DocumentIndex": 7, + "DocumentIndex": 6, "Title": "LuaUIHelperText.cs", - "DocumentMoniker": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelperText.cs", + "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelperText.cs", "RelativeDocumentMoniker": "Assets\\Scripts\\Core\\LuaUIHelperText.cs", - "ToolTip": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelperText.cs", + "ToolTip": "D:\\UnityProject\\dezhou\\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|", @@ -161,11 +145,11 @@ }, { "$type": "Document", - "DocumentIndex": 8, + "DocumentIndex": 7, "Title": "LuaNetClient.cs", - "DocumentMoniker": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaNetClient.cs", + "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaNetClient.cs", "RelativeDocumentMoniker": "Assets\\Scripts\\Core\\LuaNetClient.cs", - "ToolTip": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaNetClient.cs", + "ToolTip": "D:\\UnityProject\\dezhou\\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|", @@ -173,24 +157,24 @@ }, { "$type": "Document", - "DocumentIndex": 3, + "DocumentIndex": 0, "Title": "LuaUIHelper.cs", - "DocumentMoniker": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelper.cs", + "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelper.cs", "RelativeDocumentMoniker": "Assets\\Scripts\\Core\\LuaUIHelper.cs", - "ToolTip": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelper.cs", - "RelativeToolTip": "Assets\\Scripts\\Core\\LuaUIHelper.cs", - "ViewState": "AgIAAAAAAAAAAAAAAAAAAIwBAAAAAAAAAAAAAA==", + "ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelper.cs*", + "RelativeToolTip": "Assets\\Scripts\\Core\\LuaUIHelper.cs*", + "ViewState": "AgIAAHEBAAAAAAAAAAAAwIEBAAAwAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "WhenOpened": "2025-11-06T12:57:44.98Z", "EditorCaption": "" }, { "$type": "Document", - "DocumentIndex": 10, + "DocumentIndex": 9, "Title": "GameApplication.cs", - "DocumentMoniker": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\GameApplication.cs", + "DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\GameApplication.cs", "RelativeDocumentMoniker": "Assets\\Scripts\\GameApplication.cs", - "ToolTip": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\GameApplication.cs", + "ToolTip": "D:\\UnityProject\\dezhou\\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/ART/base/lobby/lobby/lobbyHome.prefab b/wb_unity_pro/Assets/ART/base/lobby/lobby/lobbyHome.prefab index 25baa42..c4451d0 100644 --- a/wb_unity_pro/Assets/ART/base/lobby/lobby/lobbyHome.prefab +++ b/wb_unity_pro/Assets/ART/base/lobby/lobby/lobbyHome.prefab @@ -892,7 +892,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: -0.000029329169} + m_AnchoredPosition: {x: 0, y: -0.000079461795} m_SizeDelta: {x: 0, y: 300} m_Pivot: {x: 0, y: 1} --- !u!114 &7145785726216198435 @@ -2511,7 +2511,7 @@ MonoBehaviour: m_HandleRect: {fileID: 7145785727401194534} m_Direction: 2 m_Value: 0 - m_Size: 0.99990183 + m_Size: 1 m_NumberOfSteps: 0 m_OnValueChanged: m_PersistentCalls: @@ -2764,6 +2764,7 @@ GameObject: - component: {fileID: 7093141596172737153} - component: {fileID: 1383831873999962719} - component: {fileID: 8315539672598142969} + - component: {fileID: 2863438006087940829} m_Layer: 5 m_Name: imageShow m_TagString: Untagged @@ -2829,6 +2830,27 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 +--- !u!95 &2863438006087940829 +Animator: + serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7364815244590775259} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: 981a69e23d26fde428f70211d6babd0e, type: 2} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 --- !u!1 &8408660028367513778 GameObject: m_ObjectHideFlags: 0 diff --git a/wb_unity_pro/Assets/ART/base/prefab/ViewFilter.prefab b/wb_unity_pro/Assets/ART/base/prefab/ViewFilter.prefab index 58f1afe..58c3ebc 100644 --- a/wb_unity_pro/Assets/ART/base/prefab/ViewFilter.prefab +++ b/wb_unity_pro/Assets/ART/base/prefab/ViewFilter.prefab @@ -606,7 +606,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Content: {fileID: 8453521027345352587} - m_Horizontal: 1 + m_Horizontal: 0 m_Vertical: 1 m_MovementType: 1 m_Elasticity: 0.1 @@ -1175,7 +1175,7 @@ MonoBehaviour: m_SelectOnDown: {fileID: 0} m_SelectOnLeft: {fileID: 0} m_SelectOnRight: {fileID: 0} - m_Transition: 1 + m_Transition: 0 m_Colors: m_NormalColor: {r: 1, g: 1, b: 1, a: 1} m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} @@ -1211,6 +1211,7 @@ GameObject: - component: {fileID: 8453521026841935651} - component: {fileID: 8453521026841935837} - component: {fileID: 8453521026841935836} + - component: {fileID: 2430331822091728703} m_Layer: 5 m_Name: imageShow m_TagString: Untagged @@ -1276,6 +1277,27 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 +--- !u!95 &2430331822091728703 +Animator: + serializedVersion: 5 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8453521026841935650} + m_Enabled: 1 + m_Avatar: {fileID: 0} + m_Controller: {fileID: 9100000, guid: 981a69e23d26fde428f70211d6babd0e, type: 2} + m_CullingMode: 0 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_StabilizeFeet: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorStateOnDisable: 0 + m_WriteDefaultValuesOnDisable: 0 --- !u!1 &8453521026852755572 GameObject: m_ObjectHideFlags: 0 @@ -1727,7 +1749,7 @@ MonoBehaviour: m_StartCorner: 0 m_StartAxis: 0 m_CellSize: {x: 229, y: 77} - m_Spacing: {x: 20, y: 0} + m_Spacing: {x: 20, y: 16} m_Constraint: 0 m_ConstraintCount: 2 --- !u!1 &8453521027516396209 diff --git a/wb_unity_pro/Assets/ART/ui/texture/animation/btnImage.controller b/wb_unity_pro/Assets/ART/ui/texture/animation/btnImage.controller new file mode 100644 index 0000000..7aee1c2 --- /dev/null +++ b/wb_unity_pro/Assets/ART/ui/texture/animation/btnImage.controller @@ -0,0 +1,130 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1102 &-4042566128739076259 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: stop + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: a17d243b435f85449aa8fa1ae1154eca, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-2185398608985217919 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: close + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: 0e69b995bd50e0f4aa9d3a610c8224ca, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!91 &9100000 +AnimatorController: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: btnImage + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: 8017737070514627443} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 0 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} +--- !u!1102 &2501807129828895552 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: open + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: e5b174e4b97b7de49a2dca456c97c959, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &8017737070514627443 +AnimatorStateMachine: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Base Layer + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: -4042566128739076259} + m_Position: {x: 280, y: 120, z: 0} + - serializedVersion: 1 + m_State: {fileID: 2501807129828895552} + m_Position: {x: 510, y: 120, z: 0} + - serializedVersion: 1 + m_State: {fileID: -2185398608985217919} + m_Position: {x: 510, y: 200, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: -4042566128739076259} diff --git a/wb_unity_pro/Assets/ART/ui/texture/animation/btnImage.controller.meta b/wb_unity_pro/Assets/ART/ui/texture/animation/btnImage.controller.meta new file mode 100644 index 0000000..726fb10 --- /dev/null +++ b/wb_unity_pro/Assets/ART/ui/texture/animation/btnImage.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 981a69e23d26fde428f70211d6babd0e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/wb_unity_pro/Assets/ART/ui/texture/animation/btnImageClose.anim b/wb_unity_pro/Assets/ART/ui/texture/animation/btnImageClose.anim new file mode 100644 index 0000000..03b020b --- /dev/null +++ b/wb_unity_pro/Assets/ART/ui/texture/animation/btnImageClose.anim @@ -0,0 +1,305 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!74 &7400000 +AnimationClip: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: btnImageClose + serializedVersion: 7 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Color.r + path: + classID: 114 + script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Color.g + path: + classID: 114 + script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Color.b + path: + classID: 114 + script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Color.a + path: + classID: 114 + script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_PPtrCurves: [] + m_SampleRate: 60 + m_WrapMode: 0 + m_Bounds: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_ClipBindingConstant: + genericBindings: + - serializedVersion: 2 + path: 0 + attribute: 304273561 + script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + typeID: 114 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 0 + attribute: 2526845255 + script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + typeID: 114 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 0 + attribute: 4215373228 + script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + typeID: 114 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 0 + attribute: 2334886179 + script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + typeID: 114 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 1 + m_OrientationOffsetY: 0 + m_Level: 0 + m_CycleOffset: 0 + m_HasAdditiveReferencePose: 0 + m_LoopTime: 0 + m_LoopBlend: 0 + m_LoopBlendOrientation: 0 + m_LoopBlendPositionY: 0 + m_LoopBlendPositionXZ: 0 + m_KeepOriginalOrientation: 0 + m_KeepOriginalPositionY: 1 + m_KeepOriginalPositionXZ: 0 + m_HeightFromFeet: 0 + m_Mirror: 0 + m_EditorCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Color.r + path: + classID: 114 + script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Color.g + path: + classID: 114 + script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Color.b + path: + classID: 114 + script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Color.a + path: + classID: 114 + script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/wb_unity_pro/Assets/ART/ui/texture/animation/btnImageClose.anim.meta b/wb_unity_pro/Assets/ART/ui/texture/animation/btnImageClose.anim.meta new file mode 100644 index 0000000..b15a036 --- /dev/null +++ b/wb_unity_pro/Assets/ART/ui/texture/animation/btnImageClose.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0e69b995bd50e0f4aa9d3a610c8224ca +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/wb_unity_pro/Assets/ART/ui/texture/animation/btnImageOpen.anim b/wb_unity_pro/Assets/ART/ui/texture/animation/btnImageOpen.anim new file mode 100644 index 0000000..a0241ff --- /dev/null +++ b/wb_unity_pro/Assets/ART/ui/texture/animation/btnImageOpen.anim @@ -0,0 +1,305 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!74 &7400000 +AnimationClip: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: btnImageOpen + serializedVersion: 7 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Color.r + path: + classID: 114 + script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Color.g + path: + classID: 114 + script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Color.b + path: + classID: 114 + script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Color.a + path: + classID: 114 + script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_PPtrCurves: [] + m_SampleRate: 60 + m_WrapMode: 0 + m_Bounds: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_ClipBindingConstant: + genericBindings: + - serializedVersion: 2 + path: 0 + attribute: 304273561 + script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + typeID: 114 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 0 + attribute: 2526845255 + script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + typeID: 114 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 0 + attribute: 4215373228 + script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + typeID: 114 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 0 + attribute: 2334886179 + script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + typeID: 114 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 1 + m_OrientationOffsetY: 0 + m_Level: 0 + m_CycleOffset: 0 + m_HasAdditiveReferencePose: 0 + m_LoopTime: 0 + m_LoopBlend: 0 + m_LoopBlendOrientation: 0 + m_LoopBlendPositionY: 0 + m_LoopBlendPositionXZ: 0 + m_KeepOriginalOrientation: 0 + m_KeepOriginalPositionY: 1 + m_KeepOriginalPositionXZ: 0 + m_HeightFromFeet: 0 + m_Mirror: 0 + m_EditorCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Color.r + path: + classID: 114 + script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Color.g + path: + classID: 114 + script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Color.b + path: + classID: 114 + script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Color.a + path: + classID: 114 + script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/wb_unity_pro/Assets/ART/ui/texture/animation/btnImageOpen.anim.meta b/wb_unity_pro/Assets/ART/ui/texture/animation/btnImageOpen.anim.meta new file mode 100644 index 0000000..bef5006 --- /dev/null +++ b/wb_unity_pro/Assets/ART/ui/texture/animation/btnImageOpen.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e5b174e4b97b7de49a2dca456c97c959 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/wb_unity_pro/Assets/ART/ui/texture/animation/btnImageStop.anim b/wb_unity_pro/Assets/ART/ui/texture/animation/btnImageStop.anim new file mode 100644 index 0000000..9fd1595 --- /dev/null +++ b/wb_unity_pro/Assets/ART/ui/texture/animation/btnImageStop.anim @@ -0,0 +1,305 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!74 &7400000 +AnimationClip: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: btnImageStop + serializedVersion: 7 + m_Legacy: 0 + m_Compressed: 0 + m_UseHighQualityCurve: 1 + m_RotationCurves: [] + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: [] + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Color.r + path: + classID: 114 + script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Color.g + path: + classID: 114 + script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Color.b + path: + classID: 114 + script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Color.a + path: + classID: 114 + script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_PPtrCurves: [] + m_SampleRate: 60 + m_WrapMode: 0 + m_Bounds: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 0, y: 0, z: 0} + m_ClipBindingConstant: + genericBindings: + - serializedVersion: 2 + path: 0 + attribute: 2526845255 + script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + typeID: 114 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 0 + attribute: 4215373228 + script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + typeID: 114 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 0 + attribute: 2334886179 + script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + typeID: 114 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 0 + attribute: 304273561 + script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + typeID: 114 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 1 + m_OrientationOffsetY: 0 + m_Level: 0 + m_CycleOffset: 0 + m_HasAdditiveReferencePose: 0 + m_LoopTime: 0 + m_LoopBlend: 0 + m_LoopBlendOrientation: 0 + m_LoopBlendPositionY: 0 + m_LoopBlendPositionXZ: 0 + m_KeepOriginalOrientation: 0 + m_KeepOriginalPositionY: 1 + m_KeepOriginalPositionXZ: 0 + m_HeightFromFeet: 0 + m_Mirror: 0 + m_EditorCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Color.r + path: + classID: 114 + script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Color.g + path: + classID: 114 + script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Color.b + path: + classID: 114 + script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Color.a + path: + classID: 114 + script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_EulerEditorCurves: [] + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/wb_unity_pro/Assets/ART/ui/texture/animation/btnImageStop.anim.meta b/wb_unity_pro/Assets/ART/ui/texture/animation/btnImageStop.anim.meta new file mode 100644 index 0000000..de959e0 --- /dev/null +++ b/wb_unity_pro/Assets/ART/ui/texture/animation/btnImageStop.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a17d243b435f85449aa8fa1ae1154eca +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/wb_unity_pro/Assets/Scripts/Core/LuaUIHelper.cs b/wb_unity_pro/Assets/Scripts/Core/LuaUIHelper.cs index 5cd08e0..93d4459 100644 --- a/wb_unity_pro/Assets/Scripts/Core/LuaUIHelper.cs +++ b/wb_unity_pro/Assets/Scripts/Core/LuaUIHelper.cs @@ -410,6 +410,15 @@ public class LuaUIHelper : MonoBehaviour func.Call(index); }); } + public void AddButtonClick(Button button, LuaFunction func, LuaTable ta) + { + if (button == null || func == null) return; + + button.onClick.AddListener(() => + { + func.Call(ta); + }); + } public float GetAnimatorAormalizedTime(Animator a, bool boo) { diff --git a/wb_unity_pro/Assets/Scripts/Editor/CustomSettings.cs b/wb_unity_pro/Assets/Scripts/Editor/CustomSettings.cs index 42b3ff8..15fad21 100644 --- a/wb_unity_pro/Assets/Scripts/Editor/CustomSettings.cs +++ b/wb_unity_pro/Assets/Scripts/Editor/CustomSettings.cs @@ -176,6 +176,7 @@ public static class CustomSettings _GT(typeof(UnityEngine.UI.ScrollRect)), _GT(typeof(UnityEngine.UI.InputField)), _GT(typeof(UnityEngine.UI.RawImage)), + _GT(typeof(UnityEngine.UI.GridLayoutGroup)), _GT(typeof(UnityEngine.RectTransform)), _GT(typeof(LuaUIHelper)), _GT(typeof(LuaUIHelperSprite)), diff --git a/wb_unity_pro/Assets/Source/Generate/LuaBinder.cs b/wb_unity_pro/Assets/Source/Generate/LuaBinder.cs index a5449fc..76beea3 100644 --- a/wb_unity_pro/Assets/Source/Generate/LuaBinder.cs +++ b/wb_unity_pro/Assets/Source/Generate/LuaBinder.cs @@ -75,9 +75,11 @@ public static class LuaBinder UnityEngine_UI_ScrollRectWrap.Register(L); UnityEngine_UI_InputFieldWrap.Register(L); UnityEngine_UI_RawImageWrap.Register(L); + UnityEngine_UI_GridLayoutGroupWrap.Register(L); UnityEngine_UI_MaskableGraphicWrap.Register(L); UnityEngine_UI_GraphicWrap.Register(L); UnityEngine_UI_SelectableWrap.Register(L); + UnityEngine_UI_LayoutGroupWrap.Register(L); L.BeginModule("InputField"); L.RegFunction("OnValidateInput", UnityEngine_UI_InputField_OnValidateInput); L.EndModule(); diff --git a/wb_unity_pro/Assets/Source/Generate/LuaUIHelperWrap.cs b/wb_unity_pro/Assets/Source/Generate/LuaUIHelperWrap.cs index e1b5738..4977934 100644 --- a/wb_unity_pro/Assets/Source/Generate/LuaUIHelperWrap.cs +++ b/wb_unity_pro/Assets/Source/Generate/LuaUIHelperWrap.cs @@ -108,12 +108,21 @@ public class LuaUIHelperWrap obj.AddButtonClick(arg0, arg1); return 0; } - else if (count == 4) + else if (count == 4 && TypeChecker.CheckTypes(L, 4)) { LuaUIHelper obj = (LuaUIHelper)ToLua.CheckObject(L, 1); UnityEngine.UI.Button arg0 = (UnityEngine.UI.Button)ToLua.CheckObject(L, 2); LuaFunction arg1 = ToLua.CheckLuaFunction(L, 3); - int arg2 = (int)LuaDLL.luaL_checknumber(L, 4); + int arg2 = (int)LuaDLL.lua_tonumber(L, 4); + obj.AddButtonClick(arg0, arg1, arg2); + return 0; + } + else if (count == 4 && TypeChecker.CheckTypes(L, 4)) + { + LuaUIHelper obj = (LuaUIHelper)ToLua.CheckObject(L, 1); + UnityEngine.UI.Button arg0 = (UnityEngine.UI.Button)ToLua.CheckObject(L, 2); + LuaFunction arg1 = ToLua.CheckLuaFunction(L, 3); + LuaTable arg2 = ToLua.ToLuaTable(L, 4); obj.AddButtonClick(arg0, arg1, arg2); return 0; } diff --git a/wb_unity_pro/Assets/Source/Generate/PageSliderManagerWrap.cs b/wb_unity_pro/Assets/Source/Generate/PageSliderManagerWrap.cs index 7f49d1c..0228e83 100644 --- a/wb_unity_pro/Assets/Source/Generate/PageSliderManagerWrap.cs +++ b/wb_unity_pro/Assets/Source/Generate/PageSliderManagerWrap.cs @@ -11,6 +11,8 @@ public class PageSliderManagerWrap L.RegFunction("OnBeginDrag", OnBeginDrag); L.RegFunction("OnDrag", OnDrag); L.RegFunction("OnEndDrag", OnEndDrag); + L.RegFunction("CheckPointerClick", CheckPointerClick); + L.RegFunction("OnPageClick", OnPageClick); L.RegFunction("GoToPage", GoToPage); L.RegFunction("NextPage", NextPage); L.RegFunction("PreviousPage", PreviousPage); @@ -88,6 +90,40 @@ public class PageSliderManagerWrap } } + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int CheckPointerClick(IntPtr L) + { + try + { + ToLua.CheckArgsCount(L, 2); + PageSliderManager obj = (PageSliderManager)ToLua.CheckObject(L, 1); + UnityEngine.Vector2 arg0 = ToLua.ToVector2(L, 2); + obj.CheckPointerClick(arg0); + return 0; + } + catch (Exception e) + { + return LuaDLL.toluaL_exception(L, e); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int OnPageClick(IntPtr L) + { + try + { + ToLua.CheckArgsCount(L, 2); + PageSliderManager obj = (PageSliderManager)ToLua.CheckObject(L, 1); + int arg0 = (int)LuaDLL.luaL_checknumber(L, 2); + obj.OnPageClick(arg0); + return 0; + } + catch (Exception e) + { + return LuaDLL.toluaL_exception(L, e); + } + } + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] static int GoToPage(IntPtr L) { diff --git a/wb_unity_pro/Assets/Source/Generate/UnityEngine_UI_GridLayoutGroupWrap.cs b/wb_unity_pro/Assets/Source/Generate/UnityEngine_UI_GridLayoutGroupWrap.cs new file mode 100644 index 0000000..7a24c0c --- /dev/null +++ b/wb_unity_pro/Assets/Source/Generate/UnityEngine_UI_GridLayoutGroupWrap.cs @@ -0,0 +1,335 @@ +//this source code was auto-generated by tolua#, do not modify it +using System; +using LuaInterface; + +public class UnityEngine_UI_GridLayoutGroupWrap +{ + public static void Register(LuaState L) + { + L.BeginClass(typeof(UnityEngine.UI.GridLayoutGroup), typeof(UnityEngine.UI.LayoutGroup)); + L.RegFunction("CalculateLayoutInputHorizontal", CalculateLayoutInputHorizontal); + L.RegFunction("CalculateLayoutInputVertical", CalculateLayoutInputVertical); + L.RegFunction("SetLayoutHorizontal", SetLayoutHorizontal); + L.RegFunction("SetLayoutVertical", SetLayoutVertical); + L.RegFunction("__eq", op_Equality); + L.RegFunction("__tostring", ToLua.op_ToString); + L.RegVar("startCorner", get_startCorner, set_startCorner); + L.RegVar("startAxis", get_startAxis, set_startAxis); + L.RegVar("cellSize", get_cellSize, set_cellSize); + L.RegVar("spacing", get_spacing, set_spacing); + L.RegVar("constraint", get_constraint, set_constraint); + L.RegVar("constraintCount", get_constraintCount, set_constraintCount); + L.EndClass(); + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int CalculateLayoutInputHorizontal(IntPtr L) + { + try + { + ToLua.CheckArgsCount(L, 1); + UnityEngine.UI.GridLayoutGroup obj = (UnityEngine.UI.GridLayoutGroup)ToLua.CheckObject(L, 1); + obj.CalculateLayoutInputHorizontal(); + return 0; + } + catch (Exception e) + { + return LuaDLL.toluaL_exception(L, e); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int CalculateLayoutInputVertical(IntPtr L) + { + try + { + ToLua.CheckArgsCount(L, 1); + UnityEngine.UI.GridLayoutGroup obj = (UnityEngine.UI.GridLayoutGroup)ToLua.CheckObject(L, 1); + obj.CalculateLayoutInputVertical(); + return 0; + } + catch (Exception e) + { + return LuaDLL.toluaL_exception(L, e); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int SetLayoutHorizontal(IntPtr L) + { + try + { + ToLua.CheckArgsCount(L, 1); + UnityEngine.UI.GridLayoutGroup obj = (UnityEngine.UI.GridLayoutGroup)ToLua.CheckObject(L, 1); + obj.SetLayoutHorizontal(); + return 0; + } + catch (Exception e) + { + return LuaDLL.toluaL_exception(L, e); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int SetLayoutVertical(IntPtr L) + { + try + { + ToLua.CheckArgsCount(L, 1); + UnityEngine.UI.GridLayoutGroup obj = (UnityEngine.UI.GridLayoutGroup)ToLua.CheckObject(L, 1); + obj.SetLayoutVertical(); + return 0; + } + catch (Exception e) + { + return LuaDLL.toluaL_exception(L, e); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int op_Equality(IntPtr L) + { + try + { + ToLua.CheckArgsCount(L, 2); + UnityEngine.Object arg0 = (UnityEngine.Object)ToLua.ToObject(L, 1); + UnityEngine.Object arg1 = (UnityEngine.Object)ToLua.ToObject(L, 2); + bool o = arg0 == arg1; + LuaDLL.lua_pushboolean(L, o); + return 1; + } + catch (Exception e) + { + return LuaDLL.toluaL_exception(L, e); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int get_startCorner(IntPtr L) + { + object o = null; + + try + { + o = ToLua.ToObject(L, 1); + UnityEngine.UI.GridLayoutGroup obj = (UnityEngine.UI.GridLayoutGroup)o; + UnityEngine.UI.GridLayoutGroup.Corner ret = obj.startCorner; + ToLua.Push(L, ret); + return 1; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e, o, "attempt to index startCorner on a nil value"); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int get_startAxis(IntPtr L) + { + object o = null; + + try + { + o = ToLua.ToObject(L, 1); + UnityEngine.UI.GridLayoutGroup obj = (UnityEngine.UI.GridLayoutGroup)o; + UnityEngine.UI.GridLayoutGroup.Axis ret = obj.startAxis; + ToLua.Push(L, ret); + return 1; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e, o, "attempt to index startAxis on a nil value"); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int get_cellSize(IntPtr L) + { + object o = null; + + try + { + o = ToLua.ToObject(L, 1); + UnityEngine.UI.GridLayoutGroup obj = (UnityEngine.UI.GridLayoutGroup)o; + UnityEngine.Vector2 ret = obj.cellSize; + ToLua.Push(L, ret); + return 1; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e, o, "attempt to index cellSize on a nil value"); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int get_spacing(IntPtr L) + { + object o = null; + + try + { + o = ToLua.ToObject(L, 1); + UnityEngine.UI.GridLayoutGroup obj = (UnityEngine.UI.GridLayoutGroup)o; + UnityEngine.Vector2 ret = obj.spacing; + ToLua.Push(L, ret); + return 1; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e, o, "attempt to index spacing on a nil value"); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int get_constraint(IntPtr L) + { + object o = null; + + try + { + o = ToLua.ToObject(L, 1); + UnityEngine.UI.GridLayoutGroup obj = (UnityEngine.UI.GridLayoutGroup)o; + UnityEngine.UI.GridLayoutGroup.Constraint ret = obj.constraint; + ToLua.Push(L, ret); + return 1; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e, o, "attempt to index constraint on a nil value"); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int get_constraintCount(IntPtr L) + { + object o = null; + + try + { + o = ToLua.ToObject(L, 1); + UnityEngine.UI.GridLayoutGroup obj = (UnityEngine.UI.GridLayoutGroup)o; + int ret = obj.constraintCount; + LuaDLL.lua_pushinteger(L, ret); + return 1; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e, o, "attempt to index constraintCount on a nil value"); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int set_startCorner(IntPtr L) + { + object o = null; + + try + { + o = ToLua.ToObject(L, 1); + UnityEngine.UI.GridLayoutGroup obj = (UnityEngine.UI.GridLayoutGroup)o; + UnityEngine.UI.GridLayoutGroup.Corner arg0 = (UnityEngine.UI.GridLayoutGroup.Corner)ToLua.CheckObject(L, 2, typeof(UnityEngine.UI.GridLayoutGroup.Corner)); + obj.startCorner = arg0; + return 0; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e, o, "attempt to index startCorner on a nil value"); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int set_startAxis(IntPtr L) + { + object o = null; + + try + { + o = ToLua.ToObject(L, 1); + UnityEngine.UI.GridLayoutGroup obj = (UnityEngine.UI.GridLayoutGroup)o; + UnityEngine.UI.GridLayoutGroup.Axis arg0 = (UnityEngine.UI.GridLayoutGroup.Axis)ToLua.CheckObject(L, 2, typeof(UnityEngine.UI.GridLayoutGroup.Axis)); + obj.startAxis = arg0; + return 0; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e, o, "attempt to index startAxis on a nil value"); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int set_cellSize(IntPtr L) + { + object o = null; + + try + { + o = ToLua.ToObject(L, 1); + UnityEngine.UI.GridLayoutGroup obj = (UnityEngine.UI.GridLayoutGroup)o; + UnityEngine.Vector2 arg0 = ToLua.ToVector2(L, 2); + obj.cellSize = arg0; + return 0; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e, o, "attempt to index cellSize on a nil value"); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int set_spacing(IntPtr L) + { + object o = null; + + try + { + o = ToLua.ToObject(L, 1); + UnityEngine.UI.GridLayoutGroup obj = (UnityEngine.UI.GridLayoutGroup)o; + UnityEngine.Vector2 arg0 = ToLua.ToVector2(L, 2); + obj.spacing = arg0; + return 0; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e, o, "attempt to index spacing on a nil value"); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int set_constraint(IntPtr L) + { + object o = null; + + try + { + o = ToLua.ToObject(L, 1); + UnityEngine.UI.GridLayoutGroup obj = (UnityEngine.UI.GridLayoutGroup)o; + UnityEngine.UI.GridLayoutGroup.Constraint arg0 = (UnityEngine.UI.GridLayoutGroup.Constraint)ToLua.CheckObject(L, 2, typeof(UnityEngine.UI.GridLayoutGroup.Constraint)); + obj.constraint = arg0; + return 0; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e, o, "attempt to index constraint on a nil value"); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int set_constraintCount(IntPtr L) + { + object o = null; + + try + { + o = ToLua.ToObject(L, 1); + UnityEngine.UI.GridLayoutGroup obj = (UnityEngine.UI.GridLayoutGroup)o; + int arg0 = (int)LuaDLL.luaL_checknumber(L, 2); + obj.constraintCount = arg0; + return 0; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e, o, "attempt to index constraintCount on a nil value"); + } + } +} + diff --git a/wb_unity_pro/Assets/Source/Generate/UnityEngine_UI_GridLayoutGroupWrap.cs.meta b/wb_unity_pro/Assets/Source/Generate/UnityEngine_UI_GridLayoutGroupWrap.cs.meta new file mode 100644 index 0000000..1d07738 --- /dev/null +++ b/wb_unity_pro/Assets/Source/Generate/UnityEngine_UI_GridLayoutGroupWrap.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 7a5002f024f7095448ccc687f5613b22 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/wb_unity_pro/Assets/Source/Generate/UnityEngine_UI_LayoutGroupWrap.cs b/wb_unity_pro/Assets/Source/Generate/UnityEngine_UI_LayoutGroupWrap.cs new file mode 100644 index 0000000..64ffe9e --- /dev/null +++ b/wb_unity_pro/Assets/Source/Generate/UnityEngine_UI_LayoutGroupWrap.cs @@ -0,0 +1,319 @@ +//this source code was auto-generated by tolua#, do not modify it +using System; +using LuaInterface; + +public class UnityEngine_UI_LayoutGroupWrap +{ + public static void Register(LuaState L) + { + L.BeginClass(typeof(UnityEngine.UI.LayoutGroup), typeof(UnityEngine.EventSystems.UIBehaviour)); + L.RegFunction("CalculateLayoutInputHorizontal", CalculateLayoutInputHorizontal); + L.RegFunction("CalculateLayoutInputVertical", CalculateLayoutInputVertical); + L.RegFunction("SetLayoutHorizontal", SetLayoutHorizontal); + L.RegFunction("SetLayoutVertical", SetLayoutVertical); + L.RegFunction("__eq", op_Equality); + L.RegFunction("__tostring", ToLua.op_ToString); + L.RegVar("padding", get_padding, set_padding); + L.RegVar("childAlignment", get_childAlignment, set_childAlignment); + L.RegVar("minWidth", get_minWidth, null); + L.RegVar("preferredWidth", get_preferredWidth, null); + L.RegVar("flexibleWidth", get_flexibleWidth, null); + L.RegVar("minHeight", get_minHeight, null); + L.RegVar("preferredHeight", get_preferredHeight, null); + L.RegVar("flexibleHeight", get_flexibleHeight, null); + L.RegVar("layoutPriority", get_layoutPriority, null); + L.EndClass(); + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int CalculateLayoutInputHorizontal(IntPtr L) + { + try + { + ToLua.CheckArgsCount(L, 1); + UnityEngine.UI.LayoutGroup obj = (UnityEngine.UI.LayoutGroup)ToLua.CheckObject(L, 1); + obj.CalculateLayoutInputHorizontal(); + return 0; + } + catch (Exception e) + { + return LuaDLL.toluaL_exception(L, e); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int CalculateLayoutInputVertical(IntPtr L) + { + try + { + ToLua.CheckArgsCount(L, 1); + UnityEngine.UI.LayoutGroup obj = (UnityEngine.UI.LayoutGroup)ToLua.CheckObject(L, 1); + obj.CalculateLayoutInputVertical(); + return 0; + } + catch (Exception e) + { + return LuaDLL.toluaL_exception(L, e); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int SetLayoutHorizontal(IntPtr L) + { + try + { + ToLua.CheckArgsCount(L, 1); + UnityEngine.UI.LayoutGroup obj = (UnityEngine.UI.LayoutGroup)ToLua.CheckObject(L, 1); + obj.SetLayoutHorizontal(); + return 0; + } + catch (Exception e) + { + return LuaDLL.toluaL_exception(L, e); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int SetLayoutVertical(IntPtr L) + { + try + { + ToLua.CheckArgsCount(L, 1); + UnityEngine.UI.LayoutGroup obj = (UnityEngine.UI.LayoutGroup)ToLua.CheckObject(L, 1); + obj.SetLayoutVertical(); + return 0; + } + catch (Exception e) + { + return LuaDLL.toluaL_exception(L, e); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int op_Equality(IntPtr L) + { + try + { + ToLua.CheckArgsCount(L, 2); + UnityEngine.Object arg0 = (UnityEngine.Object)ToLua.ToObject(L, 1); + UnityEngine.Object arg1 = (UnityEngine.Object)ToLua.ToObject(L, 2); + bool o = arg0 == arg1; + LuaDLL.lua_pushboolean(L, o); + return 1; + } + catch (Exception e) + { + return LuaDLL.toluaL_exception(L, e); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int get_padding(IntPtr L) + { + object o = null; + + try + { + o = ToLua.ToObject(L, 1); + UnityEngine.UI.LayoutGroup obj = (UnityEngine.UI.LayoutGroup)o; + UnityEngine.RectOffset ret = obj.padding; + ToLua.PushObject(L, ret); + return 1; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e, o, "attempt to index padding on a nil value"); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int get_childAlignment(IntPtr L) + { + object o = null; + + try + { + o = ToLua.ToObject(L, 1); + UnityEngine.UI.LayoutGroup obj = (UnityEngine.UI.LayoutGroup)o; + UnityEngine.TextAnchor ret = obj.childAlignment; + ToLua.Push(L, ret); + return 1; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e, o, "attempt to index childAlignment on a nil value"); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int get_minWidth(IntPtr L) + { + object o = null; + + try + { + o = ToLua.ToObject(L, 1); + UnityEngine.UI.LayoutGroup obj = (UnityEngine.UI.LayoutGroup)o; + float ret = obj.minWidth; + LuaDLL.lua_pushnumber(L, ret); + return 1; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e, o, "attempt to index minWidth on a nil value"); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int get_preferredWidth(IntPtr L) + { + object o = null; + + try + { + o = ToLua.ToObject(L, 1); + UnityEngine.UI.LayoutGroup obj = (UnityEngine.UI.LayoutGroup)o; + float ret = obj.preferredWidth; + LuaDLL.lua_pushnumber(L, ret); + return 1; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e, o, "attempt to index preferredWidth on a nil value"); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int get_flexibleWidth(IntPtr L) + { + object o = null; + + try + { + o = ToLua.ToObject(L, 1); + UnityEngine.UI.LayoutGroup obj = (UnityEngine.UI.LayoutGroup)o; + float ret = obj.flexibleWidth; + LuaDLL.lua_pushnumber(L, ret); + return 1; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e, o, "attempt to index flexibleWidth on a nil value"); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int get_minHeight(IntPtr L) + { + object o = null; + + try + { + o = ToLua.ToObject(L, 1); + UnityEngine.UI.LayoutGroup obj = (UnityEngine.UI.LayoutGroup)o; + float ret = obj.minHeight; + LuaDLL.lua_pushnumber(L, ret); + return 1; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e, o, "attempt to index minHeight on a nil value"); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int get_preferredHeight(IntPtr L) + { + object o = null; + + try + { + o = ToLua.ToObject(L, 1); + UnityEngine.UI.LayoutGroup obj = (UnityEngine.UI.LayoutGroup)o; + float ret = obj.preferredHeight; + LuaDLL.lua_pushnumber(L, ret); + return 1; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e, o, "attempt to index preferredHeight on a nil value"); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int get_flexibleHeight(IntPtr L) + { + object o = null; + + try + { + o = ToLua.ToObject(L, 1); + UnityEngine.UI.LayoutGroup obj = (UnityEngine.UI.LayoutGroup)o; + float ret = obj.flexibleHeight; + LuaDLL.lua_pushnumber(L, ret); + return 1; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e, o, "attempt to index flexibleHeight on a nil value"); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int get_layoutPriority(IntPtr L) + { + object o = null; + + try + { + o = ToLua.ToObject(L, 1); + UnityEngine.UI.LayoutGroup obj = (UnityEngine.UI.LayoutGroup)o; + int ret = obj.layoutPriority; + LuaDLL.lua_pushinteger(L, ret); + return 1; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e, o, "attempt to index layoutPriority on a nil value"); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int set_padding(IntPtr L) + { + object o = null; + + try + { + o = ToLua.ToObject(L, 1); + UnityEngine.UI.LayoutGroup obj = (UnityEngine.UI.LayoutGroup)o; + UnityEngine.RectOffset arg0 = (UnityEngine.RectOffset)ToLua.CheckObject(L, 2); + obj.padding = arg0; + return 0; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e, o, "attempt to index padding on a nil value"); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int set_childAlignment(IntPtr L) + { + object o = null; + + try + { + o = ToLua.ToObject(L, 1); + UnityEngine.UI.LayoutGroup obj = (UnityEngine.UI.LayoutGroup)o; + UnityEngine.TextAnchor arg0 = (UnityEngine.TextAnchor)ToLua.CheckObject(L, 2, typeof(UnityEngine.TextAnchor)); + obj.childAlignment = arg0; + return 0; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e, o, "attempt to index childAlignment on a nil value"); + } + } +} + diff --git a/wb_unity_pro/Assets/Source/Generate/UnityEngine_UI_LayoutGroupWrap.cs.meta b/wb_unity_pro/Assets/Source/Generate/UnityEngine_UI_LayoutGroupWrap.cs.meta new file mode 100644 index 0000000..5ecb602 --- /dev/null +++ b/wb_unity_pro/Assets/Source/Generate/UnityEngine_UI_LayoutGroupWrap.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 3d70e424f3fe6304dbb6d51b118256c0 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/wb_unity_pro/Logs/AssetImportWorker0-prev.log b/wb_unity_pro/Logs/AssetImportWorker0-prev.log index 6fd5a9a..7754a5c 100644 --- a/wb_unity_pro/Logs/AssetImportWorker0-prev.log +++ b/wb_unity_pro/Logs/AssetImportWorker0-prev.log @@ -15,7 +15,7 @@ D:/UnityProject/dezhouNew/dezhou_client/wb_unity_pro -logFile Logs/AssetImportWorker0.log -srvPort -58385 +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 @@ -47,13 +47,13 @@ D:/UnityProject/dezhouNew/dezhou_client/wb_unity_pro "memorysetup-temp-allocator-size-cloud-worker=32768" "memorysetup-temp-allocator-size-gi-baking-worker=262144" "memorysetup-temp-allocator-size-gfx=262144" -Player connection [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 [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 [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]... +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 65.81 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 @@ -69,97 +69,86 @@ 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:56188 +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.002932 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 -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. +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 0.898 seconds +- Completed reload, in 0.923 seconds Domain Reload Profiling: - ReloadAssembly (899ms) - BeginReloadAssembly (95ms) + ReloadAssembly (923ms) + BeginReloadAssembly (101ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (1ms) - EndReloadAssembly (711ms) - LoadAssemblies (94ms) + EndReloadAssembly (725ms) + LoadAssemblies (100ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (120ms) + SetupTypeCache (127ms) ReleaseScriptCaches (0ms) - RebuildScriptCaches (31ms) - SetupLoadedEditorAssemblies (519ms) + RebuildScriptCaches (33ms) + SetupLoadedEditorAssemblies (520ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (320ms) + InitializePlatformSupportModulesInManaged (308ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (50ms) - BeforeProcessingInitializeOnLoad (1ms) - ProcessInitializeOnLoadAttributes (101ms) - ProcessInitializeOnLoadMethodAttributes (46ms) + RefreshPlugins (54ms) + BeforeProcessingInitializeOnLoad (2ms) + ProcessInitializeOnLoadAttributes (107ms) + ProcessInitializeOnLoadMethodAttributes (49ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (0ms) Platform modules already initialized, skipping Registering precompiled user dll's ... -Registered in 0.005411 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.10 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.584 seconds +- Completed reload, in 1.726 seconds Domain Reload Profiling: - ReloadAssembly (1585ms) - BeginReloadAssembly (133ms) + ReloadAssembly (1727ms) + BeginReloadAssembly (168ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (21ms) - EndReloadAssembly (1357ms) - LoadAssemblies (100ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (1450ms) + LoadAssemblies (117ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (220ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (53ms) - SetupLoadedEditorAssemblies (965ms) + SetupTypeCache (246ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (57ms) + SetupLoadedEditorAssemblies (1017ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (1ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (63ms) - ProcessInitializeOnLoadAttributes (729ms) - ProcessInitializeOnLoadMethodAttributes (145ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (763ms) + ProcessInitializeOnLoadMethodAttributes (157ms) AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) @@ -168,12 +157,12 @@ Platform modules already initialized, skipping ======================================================================== Worker process is ready to serve import requests Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds -Refreshing native plugins compatible for Editor in 1.03 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 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) +Unloading 107 unused Assets / (49.5 KB). Loaded Objects now: 3027. +Memory consumption went from 100.6 MB to 100.6 MB. +Total: 7.641200 ms (FindLiveObjects: 0.233700 ms CreateObjectMapping: 0.178500 ms MarkObjects: 7.085900 ms DeleteObjects: 0.142000 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -190,66 +179,173 @@ AssetImportParameters requested are different than current active one (requested 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) + 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/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 +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.009118 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 Native extension for iOS target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.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.560 seconds +- Completed reload, in 1.480 seconds Domain Reload Profiling: - ReloadAssembly (1561ms) - BeginReloadAssembly (146ms) + ReloadAssembly (1481ms) + BeginReloadAssembly (138ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (37ms) - EndReloadAssembly (1322ms) - LoadAssemblies (99ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1254ms) + LoadAssemblies (94ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (209ms) + SetupTypeCache (206ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (953ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (887ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (22ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (57ms) - ProcessInitializeOnLoadAttributes (731ms) - ProcessInitializeOnLoadMethodAttributes (139ms) + BeforeProcessingInitializeOnLoad (54ms) + ProcessInitializeOnLoadAttributes (677ms) + ProcessInitializeOnLoadMethodAttributes (129ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 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 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-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.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.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.548 seconds +Domain Reload Profiling: + ReloadAssembly (1549ms) + BeginReloadAssembly (147ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1310ms) + LoadAssemblies (100ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (223ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (920ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + 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.07 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3036. +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 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-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.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) @@ -258,9 +354,71 @@ 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: 3030. +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.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: 7.470900 ms (FindLiveObjects: 0.252800 ms CreateObjectMapping: 0.175300 ms MarkObjects: 6.994700 ms DeleteObjects: 0.047100 ms) +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 -> @@ -277,12 +435,52 @@ AssetImportParameters requested are different than current active one (requested custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare -Refreshing native plugins compatible for Editor in 15.35 ms, found 3 plugins. +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. -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) +[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 -> @@ -299,12 +497,734 @@ AssetImportParameters requested are different than current active one (requested custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare -Refreshing native plugins compatible for Editor in 16.24 ms, found 3 plugins. +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. -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) +[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 +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.517 seconds +Domain Reload Profiling: + ReloadAssembly (1518ms) + BeginReloadAssembly (144ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + EndReloadAssembly (1282ms) + LoadAssemblies (100ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (212ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (904ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (693ms) + ProcessInitializeOnLoadMethodAttributes (128ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3051. +Memory consumption went from 100.1 MB to 100.1 MB. +Total: 6.373900 ms (FindLiveObjects: 0.211200 ms CreateObjectMapping: 0.136900 ms MarkObjects: 5.983900 ms DeleteObjects: 0.040500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005756 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.519 seconds +Domain Reload Profiling: + ReloadAssembly (1520ms) + BeginReloadAssembly (141ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + EndReloadAssembly (1289ms) + LoadAssemblies (98ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (208ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (916ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (704ms) + ProcessInitializeOnLoadMethodAttributes (130ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.15 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3054. +Memory consumption went from 100.1 MB to 100.1 MB. +Total: 6.434300 ms (FindLiveObjects: 0.211600 ms CreateObjectMapping: 0.134900 ms MarkObjects: 6.039100 ms DeleteObjects: 0.047500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005075 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.14 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.516 seconds +Domain Reload Profiling: + ReloadAssembly (1516ms) + BeginReloadAssembly (139ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + EndReloadAssembly (1288ms) + LoadAssemblies (96ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (208ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (916ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (700ms) + ProcessInitializeOnLoadMethodAttributes (131ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.16 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3057. +Memory consumption went from 100.1 MB to 100.1 MB. +Total: 6.465300 ms (FindLiveObjects: 0.212100 ms CreateObjectMapping: 0.132400 ms MarkObjects: 6.079100 ms DeleteObjects: 0.040500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-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.005374 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.574 seconds +Domain Reload Profiling: + ReloadAssembly (1575ms) + BeginReloadAssembly (141ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + EndReloadAssembly (1309ms) + LoadAssemblies (108ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (218ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (918ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (54ms) + ProcessInitializeOnLoadAttributes (707ms) + ProcessInitializeOnLoadMethodAttributes (129ms) + 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: 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 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-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.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 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 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 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 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 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 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 -> diff --git a/wb_unity_pro/Logs/AssetImportWorker0.log b/wb_unity_pro/Logs/AssetImportWorker0.log index 7754a5c..0d5c029 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/dezhouNew/dezhou_client/wb_unity_pro +D:/UnityProject/dezhou/dezhou_client/wb_unity_pro -logFile Logs/AssetImportWorker0.log -srvPort -52133 -Successfully changed project path to: D:/UnityProject/dezhouNew/dezhou_client/wb_unity_pro -D:/UnityProject/dezhouNew/dezhou_client/wb_unity_pro +64742 +Successfully changed project path to: D:/UnityProject/dezhou/dezhou_client/wb_unity_pro +D:/UnityProject/dezhou/dezhou_client/wb_unity_pro [UnityMemory] Configuration Parameters - Can be set up in boot.config "memorysetup-bucket-allocator-granularity=16" "memorysetup-bucket-allocator-bucket-count=8" @@ -47,17 +47,17 @@ D:/UnityProject/dezhouNew/dezhou_client/wb_unity_pro "memorysetup-temp-allocator-size-cloud-worker=32768" "memorysetup-temp-allocator-size-gi-baking-worker=262144" "memorysetup-temp-allocator-size-gfx=262144" -Player connection [1320] Host "[IP] 192.168.0.6 [Port] 0 [Flags] 2 [Guid] 2623418301 [EditorId] 2623418301 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-7R8JEQQ) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... +Player connection [12812] Host "[IP] 192.168.0.6 [Port] 0 [Flags] 2 [Guid] 4204833285 [EditorId] 4204833285 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-7R8JEQQ) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... -Player connection [1320] Host "[IP] 192.168.0.6 [Port] 0 [Flags] 2 [Guid] 2623418301 [EditorId] 2623418301 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-7R8JEQQ) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... +Player connection [12812] Host "[IP] 192.168.0.6 [Port] 0 [Flags] 2 [Guid] 4204833285 [EditorId] 4204833285 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-7R8JEQQ) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... AS: AutoStreaming module initializing. [Physics::Module] Initialized MultithreadedJobDispatcher with {0} workers. -Refreshing native plugins compatible for Editor in 68.20 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 60.53 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2021.3.45f2c1 (8058fe21db2f) [Subsystems] Discovering subsystems at path D:/Program Files/Editor/2021.3.45f2c1/Editor/Data/Resources/UnitySubsystems -[Subsystems] Discovering subsystems at path D:/UnityProject/dezhouNew/dezhou_client/wb_unity_pro/Assets +[Subsystems] Discovering subsystems at path D:/UnityProject/dezhou/dezhou_client/wb_unity_pro/Assets GfxDevice: creating device client; threaded=0; jobified=0 Direct3D: Version: Direct3D 11.0 [level 11.1] @@ -69,87 +69,87 @@ Initialize mono Mono path[0] = 'D:/Program Files/Editor/2021.3.45f2c1/Editor/Data/Managed' Mono path[1] = 'D:/Program Files/Editor/2021.3.45f2c1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' Mono config path = 'D:/Program Files/Editor/2021.3.45f2c1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56252 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56060 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... Register platform support module: D:/Program Files/Editor/2021.3.45f2c1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll Register platform support module: D:/Program Files/Editor/2021.3.45f2c1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll Register platform support module: D:/Program Files/Editor/2021.3.45f2c1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.003035 seconds. +Registered in 0.002733 seconds. Native extension for WindowsStandalone target not found [usbmuxd] Start listen thread [usbmuxd] Listen thread started Native extension for iOS target not found Native extension for Android target not found -Android Extension - Scanning For ADB Devices 229 ms -Refreshing native plugins compatible for Editor in 53.46 ms, found 3 plugins. +Android Extension - Scanning For ADB Devices 228 ms +Refreshing native plugins compatible for Editor in 47.42 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.923 seconds +- Completed reload, in 0.859 seconds Domain Reload Profiling: - ReloadAssembly (923ms) - BeginReloadAssembly (101ms) + ReloadAssembly (859ms) + BeginReloadAssembly (90ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (1ms) - EndReloadAssembly (725ms) - LoadAssemblies (100ms) + EndReloadAssembly (681ms) + LoadAssemblies (90ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (127ms) + SetupTypeCache (113ms) ReleaseScriptCaches (0ms) - RebuildScriptCaches (33ms) - SetupLoadedEditorAssemblies (520ms) + RebuildScriptCaches (29ms) + SetupLoadedEditorAssemblies (499ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (308ms) + InitializePlatformSupportModulesInManaged (304ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (54ms) - BeforeProcessingInitializeOnLoad (2ms) - ProcessInitializeOnLoadAttributes (107ms) - ProcessInitializeOnLoadMethodAttributes (49ms) + RefreshPlugins (47ms) + BeforeProcessingInitializeOnLoad (1ms) + ProcessInitializeOnLoadAttributes (101ms) + ProcessInitializeOnLoadMethodAttributes (46ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (0ms) Platform modules already initialized, skipping Registering precompiled user dll's ... -Registered in 0.006131 seconds. +Registered in 0.005465 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory is not a mono symbol file Native extension for WindowsStandalone target not found Native extension for iOS target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Package Manager log level set to [2] [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] Cannot connect to Unity Package Manager local server Mono: successfully reloaded assembly -- Completed reload, in 1.726 seconds +- Completed reload, in 1.531 seconds Domain Reload Profiling: - ReloadAssembly (1727ms) - BeginReloadAssembly (168ms) + ReloadAssembly (1532ms) + BeginReloadAssembly (125ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (1450ms) - LoadAssemblies (117ms) + CreateAndSetChildDomain (20ms) + EndReloadAssembly (1321ms) + LoadAssemblies (94ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (246ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (57ms) - SetupLoadedEditorAssemblies (1017ms) + SetupTypeCache (208ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (53ms) + SetupLoadedEditorAssemblies (947ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (25ms) + InitializePlatformSupportModulesInManaged (22ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (763ms) - ProcessInitializeOnLoadMethodAttributes (157ms) - AfterProcessingInitializeOnLoad (3ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (718ms) + ProcessInitializeOnLoadMethodAttributes (143ms) + AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (7ms) @@ -157,12 +157,384 @@ Platform modules already initialized, skipping ======================================================================== Worker process is ready to serve import requests Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds -Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2636 Unused Serialized files (Serialized files now loaded: 0) Unloading 107 unused Assets / (49.5 KB). Loaded Objects now: 3027. -Memory consumption went from 100.6 MB to 100.6 MB. -Total: 7.641200 ms (FindLiveObjects: 0.233700 ms CreateObjectMapping: 0.178500 ms MarkObjects: 7.085900 ms DeleteObjects: 0.142000 ms) +Memory consumption went from 100.5 MB to 100.5 MB. +Total: 7.058200 ms (FindLiveObjects: 0.224200 ms CreateObjectMapping: 0.192200 ms MarkObjects: 6.548500 ms DeleteObjects: 0.091800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005111 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.05 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.500 seconds +Domain Reload Profiling: + ReloadAssembly (1501ms) + BeginReloadAssembly (141ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1273ms) + LoadAssemblies (94ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (198ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (923ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (709ms) + ProcessInitializeOnLoadMethodAttributes (133ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3030. +Memory consumption went from 99.9 MB to 99.8 MB. +Total: 6.494700 ms (FindLiveObjects: 0.292600 ms CreateObjectMapping: 0.173100 ms MarkObjects: 5.984600 ms DeleteObjects: 0.043000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005737 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.547 seconds +Domain Reload Profiling: + ReloadAssembly (1548ms) + BeginReloadAssembly (145ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1313ms) + LoadAssemblies (100ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (214ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (930ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (712ms) + ProcessInitializeOnLoadMethodAttributes (131ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3033. +Memory consumption went from 99.9 MB to 99.9 MB. +Total: 7.148700 ms (FindLiveObjects: 0.209700 ms CreateObjectMapping: 0.126100 ms MarkObjects: 6.765900 ms DeleteObjects: 0.046100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005012 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.525 seconds +Domain Reload Profiling: + ReloadAssembly (1526ms) + BeginReloadAssembly (146ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1288ms) + LoadAssemblies (98ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (215ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (909ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (695ms) + ProcessInitializeOnLoadMethodAttributes (128ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3036. +Memory consumption went from 99.9 MB to 99.9 MB. +Total: 6.969300 ms (FindLiveObjects: 0.210200 ms CreateObjectMapping: 0.129800 ms MarkObjects: 6.582900 ms DeleteObjects: 0.044900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005054 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.20 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.593 seconds +Domain Reload Profiling: + ReloadAssembly (1594ms) + BeginReloadAssembly (166ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + EndReloadAssembly (1334ms) + LoadAssemblies (110ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (219ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (941ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (719ms) + ProcessInitializeOnLoadMethodAttributes (136ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3039. +Memory consumption went from 99.9 MB to 99.9 MB. +Total: 6.162700 ms (FindLiveObjects: 0.205400 ms CreateObjectMapping: 0.133200 ms MarkObjects: 5.785500 ms DeleteObjects: 0.037600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005184 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.06 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.472 seconds +Domain Reload Profiling: + ReloadAssembly (1472ms) + BeginReloadAssembly (136ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + EndReloadAssembly (1250ms) + LoadAssemblies (94ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (202ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (892ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (692ms) + ProcessInitializeOnLoadMethodAttributes (122ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.05 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3042. +Memory consumption went from 99.9 MB to 99.9 MB. +Total: 7.589900 ms (FindLiveObjects: 0.201300 ms CreateObjectMapping: 0.112900 ms MarkObjects: 7.237800 ms DeleteObjects: 0.037200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005104 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.452 seconds +Domain Reload Profiling: + ReloadAssembly (1452ms) + BeginReloadAssembly (138ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + EndReloadAssembly (1229ms) + LoadAssemblies (95ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (200ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (876ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (677ms) + ProcessInitializeOnLoadMethodAttributes (120ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.05 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3045. +Memory consumption went from 100.0 MB to 100.0 MB. +Total: 6.313400 ms (FindLiveObjects: 0.201100 ms CreateObjectMapping: 0.108700 ms MarkObjects: 5.968700 ms DeleteObjects: 0.034000 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -179,60 +551,76 @@ AssetImportParameters requested are different than current active one (requested custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - Time since last request: 64051.297337 seconds. - path: Assets/ART/base/prefab/ViewFilter.prefab - artifactKey: Guid(395c889d500a77847af945ea7e9607f2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) + Time since last request: 74055.328843 seconds. + path: Assets/Scripts/Core + artifactKey: Guid(951f8ae4a35e6124daa36e10acb6954f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Number of updated assets reloaded before import = 0 -Start importing Assets/ART/base/prefab/ViewFilter.prefab using Guid(395c889d500a77847af945ea7e9607f2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2710840b0f75d795eb7a6bb0838b8e3f') in 0.088265 seconds -Number of asset objects unloaded after import = 103 +Start importing Assets/Scripts/Core using Guid(951f8ae4a35e6124daa36e10acb6954f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ef88a7aff232d5c9278c2b69fe17a3ea') in 0.020727 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 1.025634 seconds. + path: Assets/Scripts/Core/LuaUIHelper.cs + artifactKey: Guid(9c51290b0e141d544b5b2da1ef2845c3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Scripts/Core/LuaUIHelper.cs using Guid(9c51290b0e141d544b5b2da1ef2845c3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f37b67522cd08883573585857931b29c') in 0.047497 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 104.027789 seconds. + path: Assets/Scripts/Core/LuaUIHelper.cs + artifactKey: Guid(9c51290b0e141d544b5b2da1ef2845c3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Scripts/Core/LuaUIHelper.cs using Guid(9c51290b0e141d544b5b2da1ef2845c3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '27473e30d02878e7b4a29568317490e4') in 0.002068 seconds +Number of asset objects unloaded after import = 0 ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.005016 seconds. +Registered in 0.005182 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory is not a mono symbol file Native extension for WindowsStandalone target not found Native extension for iOS target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.06 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] Cannot connect to Unity Package Manager local server Mono: successfully reloaded assembly -- Completed reload, in 1.480 seconds +- Completed reload, in 1.476 seconds Domain Reload Profiling: - ReloadAssembly (1481ms) - BeginReloadAssembly (138ms) + ReloadAssembly (1477ms) + BeginReloadAssembly (141ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - EndReloadAssembly (1254ms) - LoadAssemblies (94ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1249ms) + LoadAssemblies (95ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (206ms) + SetupTypeCache (204ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (887ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (894ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) + InitializePlatformSupportModulesInManaged (21ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (54ms) - ProcessInitializeOnLoadAttributes (677ms) - ProcessInitializeOnLoadMethodAttributes (129ms) - AfterProcessingInitializeOnLoad (2ms) + BeforeProcessingInitializeOnLoad (51ms) + ProcessInitializeOnLoadAttributes (695ms) + ProcessInitializeOnLoadMethodAttributes (122ms) + AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) + AwakeInstancesAfterBackupRestoration (7ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.19 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 101 unused Assets / (27.3 KB). Loaded Objects now: 3033. -Memory consumption went from 100.1 MB to 100.0 MB. -Total: 6.430700 ms (FindLiveObjects: 0.194700 ms CreateObjectMapping: 0.122000 ms MarkObjects: 6.066600 ms DeleteObjects: 0.046700 ms) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3048. +Memory consumption went from 100.0 MB to 100.0 MB. +Total: 6.516000 ms (FindLiveObjects: 0.203000 ms CreateObjectMapping: 0.116500 ms MarkObjects: 6.158800 ms DeleteObjects: 0.037100 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -250,40 +638,164 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.005248 seconds. +Registered in 0.005006 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory is not a mono symbol file Native extension for WindowsStandalone target not found Native extension for iOS target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.27 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] Cannot connect to Unity Package Manager local server Mono: successfully reloaded assembly -- Completed reload, in 1.548 seconds +- Completed reload, in 1.522 seconds Domain Reload Profiling: - ReloadAssembly (1549ms) - BeginReloadAssembly (147ms) + ReloadAssembly (1523ms) + BeginReloadAssembly (138ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) + DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - EndReloadAssembly (1310ms) - LoadAssemblies (100ms) + CreateAndSetChildDomain (35ms) + EndReloadAssembly (1296ms) + LoadAssemblies (95ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (223ms) + SetupTypeCache (208ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (920ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (936ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) + InitializePlatformSupportModulesInManaged (21ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (56ms) - ProcessInitializeOnLoadAttributes (706ms) - ProcessInitializeOnLoadMethodAttributes (130ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (733ms) + ProcessInitializeOnLoadMethodAttributes (125ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.19 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3051. +Memory consumption went from 100.0 MB to 100.0 MB. +Total: 6.879000 ms (FindLiveObjects: 0.215300 ms CreateObjectMapping: 0.137500 ms MarkObjects: 6.473600 ms DeleteObjects: 0.051200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005202 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.471 seconds +Domain Reload Profiling: + ReloadAssembly (1472ms) + BeginReloadAssembly (138ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + EndReloadAssembly (1245ms) + LoadAssemblies (95ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (200ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (890ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (52ms) + ProcessInitializeOnLoadAttributes (690ms) + ProcessInitializeOnLoadMethodAttributes (123ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.05 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3054. +Memory consumption went from 100.0 MB to 100.0 MB. +Total: 6.421500 ms (FindLiveObjects: 0.197200 ms CreateObjectMapping: 0.113800 ms MarkObjects: 6.073100 ms DeleteObjects: 0.036700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005019 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.521 seconds +Domain Reload Profiling: + ReloadAssembly (1521ms) + BeginReloadAssembly (141ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + EndReloadAssembly (1288ms) + LoadAssemblies (99ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (213ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (909ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (54ms) + ProcessInitializeOnLoadAttributes (701ms) + ProcessInitializeOnLoadMethodAttributes (128ms) AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) @@ -292,9 +804,9 @@ Platform modules already initialized, skipping Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3036. +Unloading 98 unused Assets / (25.2 KB). Loaded Objects now: 3057. Memory consumption went from 100.1 MB to 100.0 MB. -Total: 6.447300 ms (FindLiveObjects: 0.214300 ms CreateObjectMapping: 0.133300 ms MarkObjects: 6.050300 ms DeleteObjects: 0.048500 ms) +Total: 6.242300 ms (FindLiveObjects: 0.215100 ms CreateObjectMapping: 0.136000 ms MarkObjects: 5.849400 ms DeleteObjects: 0.040500 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -312,40 +824,164 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.005276 seconds. +Registered in 0.005139 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory is not a mono symbol file Native extension for WindowsStandalone target not found Native extension for iOS target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.14 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] Cannot connect to Unity Package Manager local server Mono: successfully reloaded assembly -- Completed reload, in 1.521 seconds +- Completed reload, in 1.523 seconds Domain Reload Profiling: - ReloadAssembly (1522ms) - BeginReloadAssembly (143ms) + ReloadAssembly (1524ms) + BeginReloadAssembly (145ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) + CreateAndSetChildDomain (35ms) EndReloadAssembly (1287ms) - LoadAssemblies (98ms) + LoadAssemblies (100ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (217ms) + SetupTypeCache (210ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (905ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (915ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (701ms) + ProcessInitializeOnLoadMethodAttributes (127ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3060. +Memory consumption went from 100.1 MB to 100.0 MB. +Total: 6.657500 ms (FindLiveObjects: 0.220000 ms CreateObjectMapping: 0.149700 ms MarkObjects: 6.242100 ms DeleteObjects: 0.044400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005208 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.481 seconds +Domain Reload Profiling: + ReloadAssembly (1482ms) + BeginReloadAssembly (138ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + EndReloadAssembly (1256ms) + LoadAssemblies (96ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (200ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (901ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (698ms) + ProcessInitializeOnLoadMethodAttributes (125ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.05 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3063. +Memory consumption went from 100.1 MB to 100.0 MB. +Total: 6.492500 ms (FindLiveObjects: 0.207200 ms CreateObjectMapping: 0.143200 ms MarkObjects: 6.102800 ms DeleteObjects: 0.038300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005228 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.554 seconds +Domain Reload Profiling: + ReloadAssembly (1555ms) + BeginReloadAssembly (144ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + EndReloadAssembly (1318ms) + LoadAssemblies (101ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (225ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (925ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (1ms) + SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (55ms) - ProcessInitializeOnLoadAttributes (693ms) - ProcessInitializeOnLoadMethodAttributes (129ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (708ms) + ProcessInitializeOnLoadMethodAttributes (130ms) AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) @@ -354,9 +990,9 @@ Platform modules already initialized, skipping Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3039. -Memory consumption went from 100.1 MB to 100.0 MB. -Total: 7.581000 ms (FindLiveObjects: 0.207800 ms CreateObjectMapping: 0.130300 ms MarkObjects: 7.201000 ms DeleteObjects: 0.040800 ms) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3066. +Memory consumption went from 100.1 MB to 100.1 MB. +Total: 6.658800 ms (FindLiveObjects: 0.212500 ms CreateObjectMapping: 0.123800 ms MarkObjects: 6.270200 ms DeleteObjects: 0.051200 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -374,7 +1010,2029 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.005393 seconds. +Registered in 0.005045 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.471 seconds +Domain Reload Profiling: + ReloadAssembly (1471ms) + BeginReloadAssembly (136ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + EndReloadAssembly (1247ms) + LoadAssemblies (93ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (199ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (892ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (52ms) + ProcessInitializeOnLoadAttributes (691ms) + ProcessInitializeOnLoadMethodAttributes (122ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.06 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3069. +Memory consumption went from 100.1 MB to 100.1 MB. +Total: 6.519700 ms (FindLiveObjects: 0.202400 ms CreateObjectMapping: 0.111400 ms MarkObjects: 6.167300 ms DeleteObjects: 0.037800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 1345.842815 seconds. + path: Assets/ART/base/lobby/lobby + artifactKey: Guid(dbdc7b99fd32e024a8f078b75f6735fb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/base/lobby/lobby using Guid(dbdc7b99fd32e024a8f078b75f6735fb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b7c77f37366fb640edd542fcc7b33393') in 0.017754 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 1.219530 seconds. + path: Assets/ART/base/lobby/lobby/lobbyHome.prefab + artifactKey: Guid(5a943469abb94f94fa1f6fac4a63c8f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/base/lobby/lobby/lobbyHome.prefab using Guid(5a943469abb94f94fa1f6fac4a63c8f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '87470e1ef1835d5f95c3fbdf9f13d44c') in 0.051595 seconds +Number of asset objects unloaded after import = 157 +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005497 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.26 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.476 seconds +Domain Reload Profiling: + ReloadAssembly (1477ms) + BeginReloadAssembly (144ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1244ms) + LoadAssemblies (98ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (206ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (879ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (670ms) + ProcessInitializeOnLoadMethodAttributes (127ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.06 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 101 unused Assets / (27.4 KB). Loaded Objects now: 3075. +Memory consumption went from 100.2 MB to 100.2 MB. +Total: 6.451100 ms (FindLiveObjects: 0.209900 ms CreateObjectMapping: 0.123100 ms MarkObjects: 6.066500 ms DeleteObjects: 0.050500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005321 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.554 seconds +Domain Reload Profiling: + ReloadAssembly (1555ms) + BeginReloadAssembly (149ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1309ms) + LoadAssemblies (103ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (229ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (908ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (686ms) + ProcessInitializeOnLoadMethodAttributes (134ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3078. +Memory consumption went from 100.2 MB to 100.2 MB. +Total: 6.931500 ms (FindLiveObjects: 0.215700 ms CreateObjectMapping: 0.135200 ms MarkObjects: 6.528900 ms DeleteObjects: 0.050100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005339 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.518 seconds +Domain Reload Profiling: + ReloadAssembly (1519ms) + BeginReloadAssembly (147ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1269ms) + LoadAssemblies (103ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (228ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (876ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (669ms) + ProcessInitializeOnLoadMethodAttributes (126ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3081. +Memory consumption went from 100.2 MB to 100.2 MB. +Total: 6.405600 ms (FindLiveObjects: 0.208600 ms CreateObjectMapping: 0.123200 ms MarkObjects: 6.035300 ms DeleteObjects: 0.037800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 1724.454346 seconds. + path: Assets/ART/ui/texture/animation + artifactKey: Guid(9d2076bd2222bc74b9de8d6139479b2c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/animation using Guid(9d2076bd2222bc74b9de8d6139479b2c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b12f7288fdc6abe2c60f436fc813cfcd') in 0.020886 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 2.371214 seconds. + path: Assets/ART/ui/texture/animation/cardinformation.txt + artifactKey: Guid(9641dccae295aa744a2b44281a8208e8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/animation/cardinformation.txt using Guid(9641dccae295aa744a2b44281a8208e8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7563fe27e9aa8dddd35aa259a6e27a2b') in 0.057818 seconds +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 87.520924 seconds. + path: Assets/ART/ui/texture/animation/btnShow.anim + artifactKey: Guid(e5b174e4b97b7de49a2dca456c97c959) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/animation/btnShow.anim using Guid(e5b174e4b97b7de49a2dca456c97c959) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5dc21462f213e61a119e7e1b9f863d26') in 0.012899 seconds +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 10.122127 seconds. + path: Assets/ART/ui/texture/animation/btnImage.anim + artifactKey: Guid(e5b174e4b97b7de49a2dca456c97c959) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/animation/btnImage.anim using Guid(e5b174e4b97b7de49a2dca456c97c959) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a3e8ce1861177090d0932b6a1ae6f4a8') in 0.009789 seconds +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 28.176298 seconds. + path: Assets/ART/ui/texture/animation/btnImageOpen.anim + artifactKey: Guid(e5b174e4b97b7de49a2dca456c97c959) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/animation/btnImageOpen.anim using Guid(e5b174e4b97b7de49a2dca456c97c959) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8f9530feb7fa3cf9fda52d2b09bd9b78') in 0.009920 seconds +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 19.831096 seconds. + path: Assets/ART/ui/texture/animation/btnImageOpen 1.anim + artifactKey: Guid(0e69b995bd50e0f4aa9d3a610c8224ca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/animation/btnImageOpen 1.anim using Guid(0e69b995bd50e0f4aa9d3a610c8224ca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9da14195e7248c5e6be7ee647b9d9f01') in 0.009998 seconds +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 5.483606 seconds. + path: Assets/ART/ui/texture/animation/btnImageClose.anim + artifactKey: Guid(0e69b995bd50e0f4aa9d3a610c8224ca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/animation/btnImageClose.anim using Guid(0e69b995bd50e0f4aa9d3a610c8224ca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '94c1ed490c7d8474723447104225e69f') in 0.010723 seconds +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 11.622440 seconds. + path: Assets/ART/ui/texture/animation/btnImageOpen.anim + artifactKey: Guid(e5b174e4b97b7de49a2dca456c97c959) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/animation/btnImageOpen.anim using Guid(e5b174e4b97b7de49a2dca456c97c959) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '24e4107629ef5ae8a253c49724a36f96') in 0.003254 seconds +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 1.005403 seconds. + path: Assets/ART/ui/texture/animation/btnImageOpen 1.anim + artifactKey: Guid(a17d243b435f85449aa8fa1ae1154eca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/animation/btnImageOpen 1.anim using Guid(a17d243b435f85449aa8fa1ae1154eca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd46c5e2f03594265f934ac71dcf1b5eb') in 0.002425 seconds +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 4.783652 seconds. + path: Assets/ART/ui/texture/animation/btnImageStop.anim + artifactKey: Guid(a17d243b435f85449aa8fa1ae1154eca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/animation/btnImageStop.anim using Guid(a17d243b435f85449aa8fa1ae1154eca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '98944893cd1e1202e6c012c3478b4702') in 0.009635 seconds +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 7.375401 seconds. + path: Assets/ART/ui/texture/animation/btnImageStop.anim + artifactKey: Guid(a17d243b435f85449aa8fa1ae1154eca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/animation/btnImageStop.anim using Guid(a17d243b435f85449aa8fa1ae1154eca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bec89c9547fb1c0f78c7b09cbdc59682') in 0.002969 seconds +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 2.813095 seconds. + path: Assets/ART/ui/texture/animation/btnImageClose.anim + artifactKey: Guid(0e69b995bd50e0f4aa9d3a610c8224ca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/animation/btnImageClose.anim using Guid(0e69b995bd50e0f4aa9d3a610c8224ca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fd8bd25013dc39a60b4151e22fd458c3') in 0.003041 seconds +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 17.296425 seconds. + path: Assets/ART/ui/texture/animation/btnImage.controller + artifactKey: Guid(981a69e23d26fde428f70211d6babd0e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/animation/btnImage.controller using Guid(981a69e23d26fde428f70211d6babd0e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '56164089457d1e2d44c0dfcbe294abd8') in 0.005475 seconds +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 56.033901 seconds. + path: Assets/ART/ui/texture/animation/btnImage.controller + artifactKey: Guid(981a69e23d26fde428f70211d6babd0e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/animation/btnImage.controller using Guid(981a69e23d26fde428f70211d6babd0e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c63c7fb655f088f477747ba89536f50e') in 0.003820 seconds +Number of asset objects unloaded after import = 8 +======================================================================== +Received Import Request. + Time since last request: 231.713743 seconds. + path: Assets/ART/base/prefab/ViewFilter.prefab + artifactKey: Guid(395c889d500a77847af945ea7e9607f2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/base/prefab/ViewFilter.prefab using Guid(395c889d500a77847af945ea7e9607f2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c5d0b44f7ebd58d93bcecaee54e1c8fc') in 0.099902 seconds +Number of asset objects unloaded after import = 103 +======================================================================== +Received Import Request. + Time since last request: 234.031446 seconds. + path: Assets/ART/ui/texture/animation/login_btnopen.anim + artifactKey: Guid(cfec0b88445a86644a7863e0cb501157) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/animation/login_btnopen.anim using Guid(cfec0b88445a86644a7863e0cb501157) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f752de6d327f73d38a2eb74d2e2b9f87') in 0.021565 seconds +Number of asset objects unloaded after import = 1 +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005376 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.97 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.662 seconds +Domain Reload Profiling: + ReloadAssembly (1663ms) + BeginReloadAssembly (172ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + EndReloadAssembly (1395ms) + LoadAssemblies (109ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (256ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (956ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (37ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (716ms) + ProcessInitializeOnLoadMethodAttributes (138ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 101 unused Assets / (27.4 KB). Loaded Objects now: 3084. +Memory consumption went from 100.2 MB to 100.2 MB. +Total: 7.099100 ms (FindLiveObjects: 0.226700 ms CreateObjectMapping: 0.160800 ms MarkObjects: 6.646000 ms DeleteObjects: 0.064100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005252 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.15 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.532 seconds +Domain Reload Profiling: + ReloadAssembly (1533ms) + BeginReloadAssembly (151ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + EndReloadAssembly (1287ms) + LoadAssemblies (110ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (215ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (902ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (683ms) + ProcessInitializeOnLoadMethodAttributes (131ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3087. +Memory consumption went from 100.2 MB to 100.2 MB. +Total: 6.815600 ms (FindLiveObjects: 0.215200 ms CreateObjectMapping: 0.127400 ms MarkObjects: 6.427600 ms DeleteObjects: 0.044200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 1259.939387 seconds. + path: Assets/ART/base/prefab/ViewFilter.prefab + artifactKey: Guid(395c889d500a77847af945ea7e9607f2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/base/prefab/ViewFilter.prefab using Guid(395c889d500a77847af945ea7e9607f2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1e35994aa917cbd12c8441ba12d3371d') in 0.044210 seconds +Number of asset objects unloaded after import = 104 +======================================================================== +Received Import Request. + Time since last request: 13.712586 seconds. + path: Assets/ART/base/lobby/lobby/lobbyHome.prefab + artifactKey: Guid(5a943469abb94f94fa1f6fac4a63c8f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/base/lobby/lobby/lobbyHome.prefab using Guid(5a943469abb94f94fa1f6fac4a63c8f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9be151e328f160643edeec2660511bc0') in 0.010457 seconds +Number of asset objects unloaded after import = 158 +======================================================================== +Received Import Request. + Time since last request: 11.498443 seconds. + path: Assets/ART/ui/texture/animation/imageShow.controller + artifactKey: Guid(a77c42034a9b1c34d914815329be7871) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/animation/imageShow.controller using Guid(a77c42034a9b1c34d914815329be7871) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '08dae6da2c4fb40348866db288295bb9') in 0.011616 seconds +Number of asset objects unloaded after import = 4 +======================================================================== +Received Import Request. + Time since last request: 1.874704 seconds. + path: Assets/ART/ui/texture/animation/createcard_tagstop.anim + artifactKey: Guid(028a79e09dfd663469ed49c3763fe279) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/animation/createcard_tagstop.anim using Guid(028a79e09dfd663469ed49c3763fe279) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6fe0e68dfca19837a32f5a96098ace47') in 0.019840 seconds +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 74.035601 seconds. + path: Assets/ART/ui/texture/animation/main_btncircle.controller + artifactKey: Guid(3d06c6180fdee4b4f934170a2ae76e29) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/animation/main_btncircle.controller using Guid(3d06c6180fdee4b4f934170a2ae76e29) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4dbdee98ec17620abbdbba2fe64aca10') in 0.028248 seconds +Number of asset objects unloaded after import = 6 +======================================================================== +Received Import Request. + Time since last request: 0.394686 seconds. + path: Assets/ART/ui/texture/animation/createcard_tagclose.anim + artifactKey: Guid(ddb798d7e13eb74419cf7133f2a34739) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/ui/texture/animation/createcard_tagclose.anim using Guid(ddb798d7e13eb74419cf7133f2a34739) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '60588583041acbafbb88ac77aa30dc81') in 0.018911 seconds +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 157.207901 seconds. + path: Assets/ART/base/login/ViewLogin.prefab + artifactKey: Guid(67398339c5f969f41b81d36a55b0d29b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/ART/base/login/ViewLogin.prefab using Guid(67398339c5f969f41b81d36a55b0d29b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c34f423776b0b71c389461f58ff2b243') in 0.196885 seconds +Number of asset objects unloaded after import = 449 +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005578 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.27 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.531 seconds +Domain Reload Profiling: + ReloadAssembly (1532ms) + BeginReloadAssembly (151ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1287ms) + LoadAssemblies (103ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (219ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (900ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (681ms) + ProcessInitializeOnLoadMethodAttributes (135ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 101 unused Assets / (27.4 KB). Loaded Objects now: 3090. +Memory consumption went from 100.3 MB to 100.3 MB. +Total: 6.556800 ms (FindLiveObjects: 0.233800 ms CreateObjectMapping: 0.132100 ms MarkObjects: 6.117000 ms DeleteObjects: 0.072500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005175 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.629 seconds +Domain Reload Profiling: + ReloadAssembly (1630ms) + BeginReloadAssembly (148ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1388ms) + LoadAssemblies (101ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (220ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (982ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (99ms) + ProcessInitializeOnLoadAttributes (719ms) + ProcessInitializeOnLoadMethodAttributes (134ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3093. +Memory consumption went from 100.3 MB to 100.3 MB. +Total: 7.500600 ms (FindLiveObjects: 0.221700 ms CreateObjectMapping: 0.136200 ms MarkObjects: 7.095800 ms DeleteObjects: 0.045600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005768 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.535 seconds +Domain Reload Profiling: + ReloadAssembly (1536ms) + BeginReloadAssembly (145ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1298ms) + LoadAssemblies (101ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (216ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (907ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (689ms) + ProcessInitializeOnLoadMethodAttributes (134ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3096. +Memory consumption went from 100.3 MB to 100.3 MB. +Total: 6.604600 ms (FindLiveObjects: 0.217200 ms CreateObjectMapping: 0.143200 ms MarkObjects: 6.202400 ms DeleteObjects: 0.040800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006168 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.543 seconds +Domain Reload Profiling: + ReloadAssembly (1544ms) + BeginReloadAssembly (147ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1303ms) + LoadAssemblies (103ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (238ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (899ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (683ms) + ProcessInitializeOnLoadMethodAttributes (132ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3099. +Memory consumption went from 100.3 MB to 100.3 MB. +Total: 8.992800 ms (FindLiveObjects: 0.216200 ms CreateObjectMapping: 0.127300 ms MarkObjects: 8.597300 ms DeleteObjects: 0.050700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005655 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.19 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.565 seconds +Domain Reload Profiling: + ReloadAssembly (1565ms) + BeginReloadAssembly (158ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1314ms) + LoadAssemblies (112ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (229ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (917ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (697ms) + ProcessInitializeOnLoadMethodAttributes (135ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3102. +Memory consumption went from 100.3 MB to 100.3 MB. +Total: 7.016500 ms (FindLiveObjects: 0.221800 ms CreateObjectMapping: 0.149200 ms MarkObjects: 6.598700 ms DeleteObjects: 0.045100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 1087.127903 seconds. + path: Assets/Scripts/Editor + artifactKey: Guid(366b9ae7fb2fd3f42a61204c03c8d57d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Scripts/Editor using Guid(366b9ae7fb2fd3f42a61204c03c8d57d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9f30e8df159e3d1eabf5013d4b7f24c9') in 0.019140 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 1.818689 seconds. + path: Assets/Scripts/Editor/CustomSettings.cs + artifactKey: Guid(d68e81cfa02de7e44a2ff558bdc3ac89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Scripts/Editor/CustomSettings.cs using Guid(d68e81cfa02de7e44a2ff558bdc3ac89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '54208a16bd6a7bf24d19af95162752dd') in 0.009984 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 35.000700 seconds. + path: Assets/Scripts/Editor/CustomSettings.cs + artifactKey: Guid(d68e81cfa02de7e44a2ff558bdc3ac89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Number of updated assets reloaded before import = 0 +Start importing Assets/Scripts/Editor/CustomSettings.cs using Guid(d68e81cfa02de7e44a2ff558bdc3ac89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6793df3f0b4c756bf627efa3f71e02d3') in 0.002379 seconds +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005366 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.534 seconds +Domain Reload Profiling: + ReloadAssembly (1535ms) + BeginReloadAssembly (147ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1297ms) + LoadAssemblies (100ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (215ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (923ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (698ms) + ProcessInitializeOnLoadMethodAttributes (145ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3105. +Memory consumption went from 100.3 MB to 100.3 MB. +Total: 6.411900 ms (FindLiveObjects: 0.219700 ms CreateObjectMapping: 0.154000 ms MarkObjects: 5.995700 ms DeleteObjects: 0.041700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.037276 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.522 seconds +Domain Reload Profiling: + ReloadAssembly (1522ms) + BeginReloadAssembly (146ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1285ms) + LoadAssemblies (98ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (207ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (918ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (709ms) + ProcessInitializeOnLoadMethodAttributes (130ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3110. +Memory consumption went from 100.4 MB to 100.4 MB. +Total: 7.327800 ms (FindLiveObjects: 0.218500 ms CreateObjectMapping: 0.124500 ms MarkObjects: 6.935700 ms DeleteObjects: 0.047900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005098 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.527 seconds +Domain Reload Profiling: + ReloadAssembly (1527ms) + BeginReloadAssembly (148ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1284ms) + LoadAssemblies (102ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (218ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (897ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (23ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (681ms) + ProcessInitializeOnLoadMethodAttributes (133ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3113. +Memory consumption went from 100.4 MB to 100.4 MB. +Total: 6.642300 ms (FindLiveObjects: 0.223000 ms CreateObjectMapping: 0.146300 ms MarkObjects: 6.225100 ms DeleteObjects: 0.046600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005716 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.26 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.537 seconds +Domain Reload Profiling: + ReloadAssembly (1538ms) + BeginReloadAssembly (145ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1298ms) + LoadAssemblies (101ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (222ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (907ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (685ms) + ProcessInitializeOnLoadMethodAttributes (134ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3116. +Memory consumption went from 100.4 MB to 100.4 MB. +Total: 7.851200 ms (FindLiveObjects: 0.223100 ms CreateObjectMapping: 0.134400 ms MarkObjects: 7.437400 ms DeleteObjects: 0.054600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005352 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.478 seconds +Domain Reload Profiling: + ReloadAssembly (1479ms) + BeginReloadAssembly (144ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + EndReloadAssembly (1244ms) + LoadAssemblies (98ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (202ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (883ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (675ms) + ProcessInitializeOnLoadMethodAttributes (126ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3119. +Memory consumption went from 100.4 MB to 100.4 MB. +Total: 6.489200 ms (FindLiveObjects: 0.217000 ms CreateObjectMapping: 0.130100 ms MarkObjects: 6.101600 ms DeleteObjects: 0.039500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005188 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.493 seconds +Domain Reload Profiling: + ReloadAssembly (1494ms) + BeginReloadAssembly (141ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + EndReloadAssembly (1263ms) + LoadAssemblies (98ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (206ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (898ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (691ms) + ProcessInitializeOnLoadMethodAttributes (126ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3122. +Memory consumption went from 100.4 MB to 100.4 MB. +Total: 6.595100 ms (FindLiveObjects: 0.232300 ms CreateObjectMapping: 0.150300 ms MarkObjects: 6.168600 ms DeleteObjects: 0.042900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006138 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.54 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.565 seconds +Domain Reload Profiling: + ReloadAssembly (1565ms) + BeginReloadAssembly (151ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1295ms) + LoadAssemblies (105ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (218ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (907ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (686ms) + ProcessInitializeOnLoadMethodAttributes (132ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3125. +Memory consumption went from 100.4 MB to 100.4 MB. +Total: 8.019300 ms (FindLiveObjects: 0.308400 ms CreateObjectMapping: 0.156200 ms MarkObjects: 7.505600 ms DeleteObjects: 0.047800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006048 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.20 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.554 seconds +Domain Reload Profiling: + ReloadAssembly (1555ms) + BeginReloadAssembly (149ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1310ms) + LoadAssemblies (102ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (223ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (912ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (688ms) + ProcessInitializeOnLoadMethodAttributes (134ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.07 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3128. +Memory consumption went from 100.4 MB to 100.4 MB. +Total: 7.166900 ms (FindLiveObjects: 0.228300 ms CreateObjectMapping: 0.138800 ms MarkObjects: 6.752100 ms DeleteObjects: 0.045900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.007216 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.575 seconds +Domain Reload Profiling: + ReloadAssembly (1576ms) + BeginReloadAssembly (148ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1329ms) + LoadAssemblies (107ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (223ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (924ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (705ms) + ProcessInitializeOnLoadMethodAttributes (133ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3131. +Memory consumption went from 100.4 MB to 100.4 MB. +Total: 6.924800 ms (FindLiveObjects: 0.347100 ms CreateObjectMapping: 0.138700 ms MarkObjects: 6.384200 ms DeleteObjects: 0.053300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005354 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.15 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.636 seconds +Domain Reload Profiling: + ReloadAssembly (1637ms) + BeginReloadAssembly (177ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + EndReloadAssembly (1354ms) + LoadAssemblies (123ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (268ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (906ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (688ms) + ProcessInitializeOnLoadMethodAttributes (131ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.19 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3134. +Memory consumption went from 100.5 MB to 100.4 MB. +Total: 7.138200 ms (FindLiveObjects: 0.238000 ms CreateObjectMapping: 0.151800 ms MarkObjects: 6.698700 ms DeleteObjects: 0.048000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005555 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.537 seconds +Domain Reload Profiling: + ReloadAssembly (1538ms) + BeginReloadAssembly (146ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1297ms) + LoadAssemblies (103ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (219ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (904ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (682ms) + ProcessInitializeOnLoadMethodAttributes (134ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.18 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3137. +Memory consumption went from 100.5 MB to 100.4 MB. +Total: 6.593400 ms (FindLiveObjects: 0.228900 ms CreateObjectMapping: 0.133400 ms MarkObjects: 6.099600 ms DeleteObjects: 0.130300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010099 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.16 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.553 seconds +Domain Reload Profiling: + ReloadAssembly (1554ms) + BeginReloadAssembly (145ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1312ms) + LoadAssemblies (101ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (223ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (919ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (697ms) + ProcessInitializeOnLoadMethodAttributes (135ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3140. +Memory consumption went from 100.5 MB to 100.5 MB. +Total: 6.849400 ms (FindLiveObjects: 0.228500 ms CreateObjectMapping: 0.150900 ms MarkObjects: 6.421400 ms DeleteObjects: 0.047300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005601 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.563 seconds +Domain Reload Profiling: + ReloadAssembly (1564ms) + BeginReloadAssembly (150ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1316ms) + LoadAssemblies (103ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (216ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (920ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (28ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (692ms) + ProcessInitializeOnLoadMethodAttributes (138ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3143. +Memory consumption went from 100.5 MB to 100.5 MB. +Total: 6.557700 ms (FindLiveObjects: 0.229900 ms CreateObjectMapping: 0.134600 ms MarkObjects: 6.138100 ms DeleteObjects: 0.054000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005203 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.556 seconds +Domain Reload Profiling: + ReloadAssembly (1557ms) + BeginReloadAssembly (147ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1311ms) + LoadAssemblies (103ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (220ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (913ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (689ms) + ProcessInitializeOnLoadMethodAttributes (135ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3146. +Memory consumption went from 100.5 MB to 100.5 MB. +Total: 6.848400 ms (FindLiveObjects: 0.240100 ms CreateObjectMapping: 0.194500 ms MarkObjects: 6.368400 ms DeleteObjects: 0.043900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005611 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.30 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.585 seconds +Domain Reload Profiling: + ReloadAssembly (1586ms) + BeginReloadAssembly (149ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1338ms) + LoadAssemblies (104ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (222ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (56ms) + SetupLoadedEditorAssemblies (923ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (26ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (685ms) + ProcessInitializeOnLoadMethodAttributes (143ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.91 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3149. +Memory consumption went from 100.5 MB to 100.5 MB. +Total: 6.894900 ms (FindLiveObjects: 0.239400 ms CreateObjectMapping: 0.153000 ms MarkObjects: 6.449300 ms DeleteObjects: 0.052200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005140 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.477 seconds +Domain Reload Profiling: + ReloadAssembly (1478ms) + BeginReloadAssembly (142ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1246ms) + LoadAssemblies (98ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (207ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (878ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (22ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (670ms) + ProcessInitializeOnLoadMethodAttributes (127ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.06 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3152. +Memory consumption went from 100.5 MB to 100.5 MB. +Total: 7.534500 ms (FindLiveObjects: 0.221500 ms CreateObjectMapping: 0.131100 ms MarkObjects: 7.139000 ms DeleteObjects: 0.042200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005395 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.27 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.567 seconds +Domain Reload Profiling: + ReloadAssembly (1567ms) + BeginReloadAssembly (152ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1319ms) + LoadAssemblies (106ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (227ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (921ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (29ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (696ms) + ProcessInitializeOnLoadMethodAttributes (135ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3155. +Memory consumption went from 100.5 MB to 100.5 MB. +Total: 7.454100 ms (FindLiveObjects: 0.223800 ms CreateObjectMapping: 0.122900 ms MarkObjects: 7.060400 ms DeleteObjects: 0.045800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005975 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.39 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.542 seconds +Domain Reload Profiling: + ReloadAssembly (1543ms) + BeginReloadAssembly (149ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1298ms) + LoadAssemblies (102ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (232ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (899ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (680ms) + ProcessInitializeOnLoadMethodAttributes (134ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3158. +Memory consumption went from 100.5 MB to 100.5 MB. +Total: 6.558100 ms (FindLiveObjects: 0.230100 ms CreateObjectMapping: 0.168300 ms MarkObjects: 6.093800 ms DeleteObjects: 0.064600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005330 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory is not a mono symbol file Native extension for WindowsStandalone target not found @@ -388,37 +3046,37 @@ Mono: successfully reloaded assembly - Completed reload, in 1.488 seconds Domain Reload Profiling: ReloadAssembly (1489ms) - BeginReloadAssembly (140ms) + BeginReloadAssembly (143ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) + DisableScriptedObjects (7ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (36ms) - EndReloadAssembly (1263ms) - LoadAssemblies (94ms) + EndReloadAssembly (1253ms) + LoadAssemblies (100ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (208ms) + SetupTypeCache (203ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (46ms) - SetupLoadedEditorAssemblies (891ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (888ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) + InitializePlatformSupportModulesInManaged (22ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (57ms) - ProcessInitializeOnLoadAttributes (685ms) - ProcessInitializeOnLoadMethodAttributes (123ms) - AfterProcessingInitializeOnLoad (2ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (674ms) + ProcessInitializeOnLoadMethodAttributes (130ms) + AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (7ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.05 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3042. -Memory consumption went from 100.1 MB to 100.1 MB. -Total: 6.500200 ms (FindLiveObjects: 0.198100 ms CreateObjectMapping: 0.117900 ms MarkObjects: 6.142800 ms DeleteObjects: 0.040300 ms) +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3161. +Memory consumption went from 100.5 MB to 100.5 MB. +Total: 7.560200 ms (FindLiveObjects: 0.223200 ms CreateObjectMapping: 0.127100 ms MarkObjects: 7.160700 ms DeleteObjects: 0.048200 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -436,40 +3094,164 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.005093 seconds. +Registered in 0.005563 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory is not a mono symbol file Native extension for WindowsStandalone target not found Native extension for iOS target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] Cannot connect to Unity Package Manager local server Mono: successfully reloaded assembly -- Completed reload, in 1.509 seconds +- Completed reload, in 1.542 seconds Domain Reload Profiling: - ReloadAssembly (1510ms) - BeginReloadAssembly (142ms) + ReloadAssembly (1542ms) + BeginReloadAssembly (149ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1301ms) + LoadAssemblies (104ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (223ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (907ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (686ms) + ProcessInitializeOnLoadMethodAttributes (134ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3164. +Memory consumption went from 100.6 MB to 100.5 MB. +Total: 6.597900 ms (FindLiveObjects: 0.236100 ms CreateObjectMapping: 0.140900 ms MarkObjects: 6.169700 ms DeleteObjects: 0.050300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005958 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.22 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.563 seconds +Domain Reload Profiling: + ReloadAssembly (1564ms) + BeginReloadAssembly (147ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (37ms) - EndReloadAssembly (1280ms) - LoadAssemblies (98ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1315ms) + LoadAssemblies (103ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (208ms) + SetupTypeCache (218ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (906ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (926ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) + InitializePlatformSupportModulesInManaged (26ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (55ms) - ProcessInitializeOnLoadAttributes (694ms) - ProcessInitializeOnLoadMethodAttributes (130ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (703ms) + ProcessInitializeOnLoadMethodAttributes (134ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.15 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3167. +Memory consumption went from 100.6 MB to 100.5 MB. +Total: 7.145600 ms (FindLiveObjects: 0.253600 ms CreateObjectMapping: 0.140600 ms MarkObjects: 6.708800 ms DeleteObjects: 0.041300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005171 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory is not a mono symbol file +Native extension for WindowsStandalone target not found +Native extension for iOS target not found +Native extension for Android target not found +Refreshing native plugins compatible for Editor in 1.20 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument +[Package Manager] Cannot connect to Unity Package Manager local server +Mono: successfully reloaded assembly +- Completed reload, in 1.556 seconds +Domain Reload Profiling: + ReloadAssembly (1557ms) + BeginReloadAssembly (151ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1312ms) + LoadAssemblies (102ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (220ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (922ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (25ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (686ms) + ProcessInitializeOnLoadMethodAttributes (145ms) AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) @@ -477,10 +3259,10 @@ Domain Reload Profiling: Platform modules already initialized, skipping Refreshing native plugins compatible for Editor in 1.28 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3045. -Memory consumption went from 100.1 MB to 100.1 MB. -Total: 6.499300 ms (FindLiveObjects: 0.221800 ms CreateObjectMapping: 0.141000 ms MarkObjects: 6.090200 ms DeleteObjects: 0.045200 ms) +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3170. +Memory consumption went from 100.6 MB to 100.5 MB. +Total: 7.716000 ms (FindLiveObjects: 0.244100 ms CreateObjectMapping: 0.140500 ms MarkObjects: 7.277000 ms DeleteObjects: 0.053000 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -498,7 +3280,7 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.005205 seconds. +Registered in 0.005509 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory is not a mono symbol file Native extension for WindowsStandalone target not found @@ -509,226 +3291,40 @@ Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] Cannot connect to Unity Package Manager local server Mono: successfully reloaded assembly -- Completed reload, in 1.521 seconds +- Completed reload, in 1.472 seconds Domain Reload Profiling: - ReloadAssembly (1521ms) - BeginReloadAssembly (142ms) + ReloadAssembly (1473ms) + BeginReloadAssembly (140ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (35ms) - EndReloadAssembly (1290ms) - LoadAssemblies (99ms) + EndReloadAssembly (1244ms) + LoadAssemblies (97ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (213ms) + SetupTypeCache (204ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (914ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (880ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) + InitializePlatformSupportModulesInManaged (21ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) BeforeProcessingInitializeOnLoad (55ms) - ProcessInitializeOnLoadAttributes (703ms) - ProcessInitializeOnLoadMethodAttributes (128ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.21 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3048. -Memory consumption went from 100.1 MB to 100.1 MB. -Total: 6.558900 ms (FindLiveObjects: 0.207100 ms CreateObjectMapping: 0.142600 ms MarkObjects: 6.164100 ms DeleteObjects: 0.043600 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005593 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.517 seconds -Domain Reload Profiling: - ReloadAssembly (1518ms) - BeginReloadAssembly (144ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (35ms) - EndReloadAssembly (1282ms) - LoadAssemblies (100ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (212ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (904ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (55ms) - ProcessInitializeOnLoadAttributes (693ms) - ProcessInitializeOnLoadMethodAttributes (128ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3051. -Memory consumption went from 100.1 MB to 100.1 MB. -Total: 6.373900 ms (FindLiveObjects: 0.211200 ms CreateObjectMapping: 0.136900 ms MarkObjects: 5.983900 ms DeleteObjects: 0.040500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005756 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.519 seconds -Domain Reload Profiling: - ReloadAssembly (1520ms) - BeginReloadAssembly (141ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (34ms) - EndReloadAssembly (1289ms) - LoadAssemblies (98ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (208ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (916ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (23ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (55ms) - ProcessInitializeOnLoadAttributes (704ms) - ProcessInitializeOnLoadMethodAttributes (130ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.15 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3054. -Memory consumption went from 100.1 MB to 100.1 MB. -Total: 6.434300 ms (FindLiveObjects: 0.211600 ms CreateObjectMapping: 0.134900 ms MarkObjects: 6.039100 ms DeleteObjects: 0.047500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005075 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory is not a mono symbol file -Native extension for WindowsStandalone target not found -Native extension for iOS target not found -Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.14 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument -[Package Manager] Cannot connect to Unity Package Manager local server -Mono: successfully reloaded assembly -- Completed reload, in 1.516 seconds -Domain Reload Profiling: - ReloadAssembly (1516ms) - BeginReloadAssembly (139ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (35ms) - EndReloadAssembly (1288ms) - LoadAssemblies (96ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (208ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (916ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (25ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (55ms) - ProcessInitializeOnLoadAttributes (700ms) + ProcessInitializeOnLoadAttributes (668ms) ProcessInitializeOnLoadMethodAttributes (131ms) AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (7ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.16 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3057. -Memory consumption went from 100.1 MB to 100.1 MB. -Total: 6.465300 ms (FindLiveObjects: 0.212100 ms CreateObjectMapping: 0.132400 ms MarkObjects: 6.079100 ms DeleteObjects: 0.040500 ms) +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3173. +Memory consumption went from 100.6 MB to 100.6 MB. +Total: 6.667900 ms (FindLiveObjects: 0.251700 ms CreateObjectMapping: 0.138500 ms MarkObjects: 6.237800 ms DeleteObjects: 0.039200 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -746,40 +3342,40 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.005374 seconds. +Registered in 0.006879 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory is not a mono symbol file Native extension for WindowsStandalone target not found Native extension for iOS target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] Cannot connect to Unity Package Manager local server Mono: successfully reloaded assembly -- Completed reload, in 1.574 seconds +- Completed reload, in 1.531 seconds Domain Reload Profiling: - ReloadAssembly (1575ms) - BeginReloadAssembly (141ms) + ReloadAssembly (1532ms) + BeginReloadAssembly (148ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) + DisableScriptedObjects (7ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (34ms) - EndReloadAssembly (1309ms) - LoadAssemblies (108ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1288ms) + LoadAssemblies (99ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (218ms) + SetupTypeCache (216ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (918ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (906ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (24ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (54ms) - ProcessInitializeOnLoadAttributes (707ms) - ProcessInitializeOnLoadMethodAttributes (129ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (687ms) + ProcessInitializeOnLoadMethodAttributes (131ms) AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) @@ -787,10 +3383,10 @@ Domain Reload Profiling: Platform modules already initialized, skipping Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3060. -Memory consumption went from 100.1 MB to 100.1 MB. -Total: 7.281700 ms (FindLiveObjects: 0.213700 ms CreateObjectMapping: 0.132200 ms MarkObjects: 6.888800 ms DeleteObjects: 0.045300 ms) +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3176. +Memory consumption went from 100.6 MB to 100.6 MB. +Total: 7.066600 ms (FindLiveObjects: 0.232600 ms CreateObjectMapping: 0.148900 ms MarkObjects: 6.629400 ms DeleteObjects: 0.054300 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -808,423 +3404,51 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.005779 seconds. +Registered in 0.005477 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory is not a mono symbol file Native extension for WindowsStandalone target not found Native extension for iOS target not found Native extension for Android target not found -Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.35 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. [Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument [Package Manager] Cannot connect to Unity Package Manager local server Mono: successfully reloaded assembly -- Completed reload, in 1.517 seconds +- Completed reload, in 1.556 seconds Domain Reload Profiling: - ReloadAssembly (1518ms) + ReloadAssembly (1556ms) BeginReloadAssembly (146ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (37ms) - EndReloadAssembly (1280ms) - LoadAssemblies (101ms) + EndReloadAssembly (1316ms) + LoadAssemblies (102ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (210ms) - 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 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 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 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 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 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 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) + SetupTypeCache (218ms) ReleaseScriptCaches (1ms) RebuildScriptCaches (47ms) - SetupLoadedEditorAssemblies (924ms) + SetupLoadedEditorAssemblies (927ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (22ms) - SetLoadedEditorAssemblies (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (1ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (56ms) - ProcessInitializeOnLoadAttributes (711ms) - ProcessInitializeOnLoadMethodAttributes (131ms) - AfterProcessingInitializeOnLoad (3ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (703ms) + ProcessInitializeOnLoadMethodAttributes (134ms) + AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (7ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2630 Unused Serialized files (Serialized files now loaded: 0) -Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3081. -Memory consumption went from 100.2 MB to 100.2 MB. -Total: 6.432900 ms (FindLiveObjects: 0.219500 ms CreateObjectMapping: 0.136500 ms MarkObjects: 6.039400 ms DeleteObjects: 0.036600 ms) +Unloading 2632 Unused Serialized files (Serialized files now loaded: 0) +Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3179. +Memory consumption went from 100.6 MB to 100.6 MB. +Total: 6.711400 ms (FindLiveObjects: 0.229400 ms CreateObjectMapping: 0.141300 ms MarkObjects: 6.285400 ms DeleteObjects: 0.054000 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> diff --git a/wb_unity_pro/Logs/shadercompiler-AssetImportWorker0.log b/wb_unity_pro/Logs/shadercompiler-AssetImportWorker0.log index 40b8930..288ca59 100644 --- a/wb_unity_pro/Logs/shadercompiler-AssetImportWorker0.log +++ b/wb_unity_pro/Logs/shadercompiler-AssetImportWorker0.log @@ -1,6 +1,3 @@ Base path: 'D:/Program Files/Editor/2021.3.45f2c1/Editor/Data', plugins path 'D:/Program Files/Editor/2021.3.45f2c1/Editor/Data/PlaybackEngines' Cmd: initializeCompiler -Unhandled exception: Protocol error - failed to read magic number. Error code 0x80000004 (Not connected). (transferred 0/4) - -Quitting shader compiler process diff --git a/wb_unity_pro/Logs/shadercompiler-UnityShaderCompiler.exe1.log b/wb_unity_pro/Logs/shadercompiler-UnityShaderCompiler.exe1.log new file mode 100644 index 0000000..e69de29 diff --git a/wb_unity_pro/Logs/shadercompiler-UnityShaderCompiler.exe2.log b/wb_unity_pro/Logs/shadercompiler-UnityShaderCompiler.exe2.log new file mode 100644 index 0000000..e69de29