diff --git a/fk101/lua_probject/base_project/Game/View/NewGroup/GroupInfoView.lua b/fk101/lua_probject/base_project/Game/View/NewGroup/GroupInfoView.lua
index e81cd348..94afc10b 100644
--- a/fk101/lua_probject/base_project/Game/View/NewGroup/GroupInfoView.lua
+++ b/fk101/lua_probject/base_project/Game/View/NewGroup/GroupInfoView.lua
@@ -777,32 +777,36 @@ end
-- 玩法名字显示
local function __fillGameItem(self, index, item)
- local gameName = ""
+ -- local gameName = ""
if (index == 0) then
- item.icon = 'ui://NewGroup/quyxtb'
- gameName = GetGameName(0)
- item:GetChild("n11").text = gameName
- if self.currentGameItemName == nil then
- item.icon = 'ui://NewGroup/quyxtb-1'
- item:GetChild("n11").text = ""
+ item.icon = 'ui://NewGroup/group_quanbu0'
+ -- gameName = GetGameName(0)
+ if self.currentGameItemName == nil or self.lst_game.selectedIndex == index then
+ item.icon = 'ui://NewGroup/group_quanbu1'
+ -- item:GetChild("n11").text = ""
end
else
local gameId = self.gameIdList[index]
local config = ExtendManager.GetExtendConfig(gameId)
local mode = config:GetGameInfo()
local iconName = mode:GetIconUrl1()
- item.icon = iconName
- gameName = GetGameName(gameId)
- item:GetChild("n11").text = gameName
+ local last = "0"
+ if self.lst_game.selectedIndex == index then
+ last = "1"
+ end
+ printlog("lingmeng __fillGameItem", iconName .. last)
+ item.icon = iconName .. last
+ -- gameName = GetGameName(gameId)
+ -- item:GetChild("n11").text = gameName
end
- if item.icon == self.currentGameItemName then
- item.icon = self.currentGameItemName .. "-1"
- item:GetChild("n11").text = gameName
- if (index == 0) then
- item:GetChild("n11").text = ""
- end
- end
+ -- if item.icon == self.currentGameItemName then
+ -- item.icon = self.currentGameItemName .. "-1"
+ -- -- item:GetChild("n11").text = gameName
+ -- if (index == 0) then
+ -- -- item:GetChild("n11").text = ""
+ -- end
+ -- end
item:GetChild("n22").text = index + 1
end
diff --git a/fk101/lua_probject/extend_project/extend/majiang/changsha/EXGameInfo.lua b/fk101/lua_probject/extend_project/extend/majiang/changsha/EXGameInfo.lua
index 927e50da..9c920c48 100644
--- a/fk101/lua_probject/extend_project/extend/majiang/changsha/EXGameInfo.lua
+++ b/fk101/lua_probject/extend_project/extend/majiang/changsha/EXGameInfo.lua
@@ -4,347 +4,332 @@ local M = EXGameInfo
function EXGameInfo.new(blur_view)
- setmetatable(M, {__index = IGameInfo})
- local self = setmetatable({}, {__index = M})
- self.class = "EXGameInfo"
-
- UIPackage.AddPackage("extend/majiang/changsha/ui/Info_MJ_ChangSha")
- return self
+ setmetatable(M, { __index = IGameInfo })
+ local self = setmetatable({}, { __index = M })
+ self.class = "EXGameInfo"
+
+ UIPackage.AddPackage("extend/majiang/changsha/ui/Info_MJ_ChangSha")
+ return self
end
function M:FillData()
- self._maxPlayer = 4 -- 默认玩家人数
- self._roundChoice = 4 -- 回合选项数
- if oldGameVersion==1 then
+ self._maxPlayer = 4 -- 默认玩家人数
+ self._roundChoice = 4 -- 回合选项数
+ if oldGameVersion == 1 then
self._config = UIPackage.CreateObjectFromURL("ui://Info_MJ_ChangSha/Cgm_create_room")
else
self._config = UIPackage.CreateObjectFromURL("ui://Info_MJ_ChangSha/Cgm_create_room_yueyang")
end
-
- if oldGameVersion==2 then
- self._config:GetController("xipai").selectedIndex=0
-
- self.xipaiValueText=self._config:GetChild('xipaifen')
- self.xipaiValueText.text=1
- self.xipaiValue=1
-
- self.anchouValueText=self._config:GetChild('anchoufen')
- self.anchouValueText.text=1
- self.anchouValue=1
+
+ if oldGameVersion == 2 then
+ self._config:GetController("xipai").selectedIndex = 0
+
+ self.xipaiValueText = self._config:GetChild('xipaifen')
+ self.xipaiValueText.text = 1
+ self.xipaiValue = 1
+
+ self.anchouValueText = self._config:GetChild('anchoufen')
+ self.anchouValueText.text = 1
+ self.anchouValue = 1
local btn_cr = self._config:GetChild('sdsrbtn')
- btn_cr.onClick:Set(
- function()
-
- local gniv = GroupNumberInputView_Game.new(nil, function(num)
-
- local value = limit
- if otype == 1 then
- value = value + ad2d(num)
- elseif otype == - 1 then
- value = value - ad2d(num)
- else
- value = ad2d(num)
- end
-
- if value < 0 then
- ViewUtil.ErrorTip(1,"输入数据异常!")
- end
-
- self.xipaiValueText.text=value/1000
- self.xipaiValue=value/1000
-
- end, 3, nil)
- gniv:Show()
-
-
- end
- )
+ btn_cr.onClick:Set(
+ function()
+ local gniv = GroupNumberInputView_Game.new(nil, function(num)
+ local value = limit
+ if otype == 1 then
+ value = value + ad2d(num)
+ elseif otype == -1 then
+ value = value - ad2d(num)
+ else
+ value = ad2d(num)
+ end
+
+ if value < 0 then
+ ViewUtil.ErrorTip(1, "输入数据异常!")
+ end
+
+ self.xipaiValueText.text = value / 1000
+ self.xipaiValue = value / 1000
+ end, 3, nil)
+ gniv:Show()
+ end
+ )
- local btn_cr2 = self._config:GetChild('anchoubtn')
- btn_cr2.onClick:Set(
- function()
-
- local gniv = GroupNumberInputView_Game.new(nil, function(num)
-
- local value = limit
- if otype == 1 then
- value = value + ad2d(num)
- elseif otype == - 1 then
- value = value - ad2d(num)
- else
- value = ad2d(num)
- end
-
- if value < 0 then
- ViewUtil.ErrorTip(1,"输入数据异常!")
- end
-
- self.anchouValueText.text=value/1000
- self.anchouValue=value/1000
-
- end, 3, nil)
- gniv:Show()
-
-
- end
- )
-
+ local btn_cr2 = self._config:GetChild('anchoubtn')
+ btn_cr2.onClick:Set(
+ function()
+ local gniv = GroupNumberInputView_Game.new(nil, function(num)
+ local value = limit
+ if otype == 1 then
+ value = value + ad2d(num)
+ elseif otype == -1 then
+ value = value - ad2d(num)
+ else
+ value = ad2d(num)
+ end
+
+ if value < 0 then
+ ViewUtil.ErrorTip(1, "输入数据异常!")
+ end
+
+ self.anchouValueText.text = value / 1000
+ self.anchouValue = value / 1000
+ end, 3, nil)
+ gniv:Show()
+ end
+ )
end
-
-end
+end
-local _help_url= "ui://Info_MJ_ChangSha/Com_help"
+local _help_url = "ui://Info_MJ_ChangSha/Com_help"
function M:GetHelpUrl()
- return _help_url
+ return _help_url
end
local _icon_url = "ui://Info_MJ_ChangSha/icon"
function M:GetIconUrl()
- return _icon_url
+ return _icon_url
end
-local _icon_url1 = "ui://Info_MJ_ChangSha/icon1"
+local _icon_url1 = "ui://NewGroup/group_changsha"
function M:GetIconUrl1()
- return _icon_url1
+ return _icon_url1
end
-local _play_list ={} --{"长沙麻将","三人长沙","二人长沙"}
+local _play_list = {} --{"长沙麻将","三人长沙","二人长沙"}
function M:GetPlayList()
- return _play_list
+ return _play_list
end
function M:SelectedConfigData()
- local _config = self._config
- local round = _config:GetController("round").selectedIndex + 1 --== 0 and 1 or 2
- self._maxPlayer = _config:GetController("play_list").selectedIndex+2
+ local _config = self._config
+ local round = _config:GetController("round").selectedIndex + 1 --== 0 and 1 or 2
+ self._maxPlayer = _config:GetController("play_list").selectedIndex + 2
- local zhuangxian = _config:GetChild("btn_zhuangxian").selected and true or false
- -- local piaofen = _config:GetChild("btn_piaofen").selected and true or false
- local zimo = _config:GetChild("btn_zimo").selected and true or false
- local AA = _config:GetController("Cost").selectedIndex
- -- local liuliushun = _config:GetChild("btn_liuliushun").selected and true or false
- -- local queyise = _config:GetChild("btn_queyise").selected and true or false
- -- local banbanhu = _config:GetChild("btn_banbanhu").selected and true or false
- -- local dasixi = _config:GetChild("btn_dasixi").selected and true or false
- local jiejiegao = _config:GetChild("btn_jiejiegao").selected and true or false
- local santong = _config:GetChild("btn_santong").selected and true or false
- local yizhihua = _config:GetChild("btn_yizhihua").selected and true or false
- local zhongtusixi = _config:GetChild("btn_zhongtusixi").selected and true or false
- local zhongtuliuliushun = _config:GetChild("btn_zhongtuliuliushun").selected and true or false
+ local zhuangxian = _config:GetChild("btn_zhuangxian").selected and true or false
+ -- local piaofen = _config:GetChild("btn_piaofen").selected and true or false
+ local zimo = _config:GetChild("btn_zimo").selected and true or false
+ local AA = _config:GetController("Cost").selectedIndex
+ -- local liuliushun = _config:GetChild("btn_liuliushun").selected and true or false
+ -- local queyise = _config:GetChild("btn_queyise").selected and true or false
+ -- local banbanhu = _config:GetChild("btn_banbanhu").selected and true or false
+ -- local dasixi = _config:GetChild("btn_dasixi").selected and true or false
+ local jiejiegao = _config:GetChild("btn_jiejiegao").selected and true or false
+ local santong = _config:GetChild("btn_santong").selected and true or false
+ local yizhihua = _config:GetChild("btn_yizhihua").selected and true or false
+ local zhongtusixi = _config:GetChild("btn_zhongtusixi").selected and true or false
+ local zhongtuliuliushun = _config:GetChild("btn_zhongtuliuliushun").selected and true or false
- local niao_type = _config:GetController("niao").selectedIndex
- local niao_num = _config:GetController("niao_num").selectedIndex
- local niao_db_num = _config:GetController("niao_db_num").selectedIndex
- local niao = niao_type == 1 and (niao_db_num == 0 and 1 or 2) or (niao_type == 0 and (niao_num == 0 and 2 or (niao_num == 1 and 4 or 6)) or 2)
- local piao_niao = _config:GetChild("btn_piao_niao").selected
- local two_pair = _config:GetChild("btn_two_pair").selected
- local no_jiang = _config:GetChild("btn_no_jiang").selected
- local four_win = _config:GetChild("btn_four_win").selected
- local native_hu = _config:GetChild("btn_native_hu").selected
- local queyimen = _config:GetChild("btn_queyimen").selected
- local fengding = _config:GetChild("btn_fengding").selected
- local banyiquan = _config:GetChild("btn_banyiquan").selected
- local menqing = _config:GetChild("btn_menqing").selected
-
- local fengding_score=0
- if _config:GetController("fengding") then
- fengding_score=_config:GetController("fengding").selectedIndex
- end
-
- local piao_niao1=0
+ local niao_type = _config:GetController("niao").selectedIndex
+ local niao_num = _config:GetController("niao_num").selectedIndex
+ local niao_db_num = _config:GetController("niao_db_num").selectedIndex
+ local niao = niao_type == 1 and (niao_db_num == 0 and 1 or 2) or
+ (niao_type == 0 and (niao_num == 0 and 2 or (niao_num == 1 and 4 or 6)) or 2)
+ local piao_niao = _config:GetChild("btn_piao_niao").selected
+ local two_pair = _config:GetChild("btn_two_pair").selected
+ local no_jiang = _config:GetChild("btn_no_jiang").selected
+ local four_win = _config:GetChild("btn_four_win").selected
+ local native_hu = _config:GetChild("btn_native_hu").selected
+ local queyimen = _config:GetChild("btn_queyimen").selected
+ local fengding = _config:GetChild("btn_fengding").selected
+ local banyiquan = _config:GetChild("btn_banyiquan").selected
+ local menqing = _config:GetChild("btn_menqing").selected
+
+ local fengding_score = 0
+ if _config:GetController("fengding") then
+ fengding_score = _config:GetController("fengding").selectedIndex
+ end
+
+ local piao_niao1 = 0
if _config:GetController('piao') then
- piao_niao1=_config:GetController('piao').selectedIndex
- end
- local piao1=false
- local piao2=false
- local piao3=false
- local piao_niao_opt=0
- if piao_niao1==2 then
- piao_niao_opt=_config:GetController("piaofen").selectedIndex
+ piao_niao1 = _config:GetController('piao').selectedIndex
end
-
- local xi_pai=false
- local xi_paifen=0
+ local piao1 = false
+ local piao2 = false
+ local piao3 = false
+ local piao_niao_opt = 0
+ if piao_niao1 == 2 then
+ piao_niao_opt = _config:GetController("piaofen").selectedIndex
+ end
+
+ local xi_pai = false
+ local xi_paifen = 0
if _config:GetChild("xipai") then
- xi_pai=_config:GetChild("xipai").selected
+ xi_pai = _config:GetChild("xipai").selected
end
-
- local niaofen_opt=0
- local niaofen_score=1
- local difen_score=1
- local kai_gong=0
- if oldGameVersion==2 then
- niaofen_opt=_config:GetController("niaoadd").selectedIndex
- niaofen_score= tonumber(_config:GetController("niaodf").selectedPage)
- difen_score= tonumber(_config:GetController("jcdifen").selectedPage)
- kai_gong=_config:GetController("kaigang").selectedIndex
+
+ local niaofen_opt = 0
+ local niaofen_score = 1
+ local difen_score = 1
+ local kai_gong = 0
+ if oldGameVersion == 2 then
+ niaofen_opt = _config:GetController("niaoadd").selectedIndex
+ niaofen_score = tonumber(_config:GetController("niaodf").selectedPage)
+ difen_score = tonumber(_config:GetController("jcdifen").selectedPage)
+ kai_gong = _config:GetController("kaigang").selectedIndex
end
-
----------
- local _data = {}
- _data["opt"] = round
- _data["maxPlayers"] = self._maxPlayer
- _data["zhuangxian"] = zhuangxian
- _data["zimo"] = zimo
- _data["AA"] = AA
- -- _data["piaofen"] = piaofen
- -- _data["liuliushun"] = liuliushun
- -- _data["queyise"] = queyise
- -- _data["banbanhu"] = banbanhu
- -- _data["dasixi"] = dasixi
- _data["jiejiegao"] = jiejiegao
- _data["santong"] = santong
- _data["yizhihua"] = yizhihua
- _data["zhongtusixi"] = zhongtusixi
- _data["zhongtuliuliushun"] = zhongtuliuliushun
+ ---------
+ local _data = {}
+ _data["opt"] = round
+ _data["maxPlayers"] = self._maxPlayer
- _data["niao_type"] = niao_type
-
-
- if oldGameVersion==1 then
+ _data["zhuangxian"] = zhuangxian
+ _data["zimo"] = zimo
+ _data["AA"] = AA
+ -- _data["piaofen"] = piaofen
+ -- _data["liuliushun"] = liuliushun
+ -- _data["queyise"] = queyise
+ -- _data["banbanhu"] = banbanhu
+ -- _data["dasixi"] = dasixi
+ _data["jiejiegao"] = jiejiegao
+ _data["santong"] = santong
+ _data["yizhihua"] = yizhihua
+ _data["zhongtusixi"] = zhongtusixi
+ _data["zhongtuliuliushun"] = zhongtuliuliushun
+
+ _data["niao_type"] = niao_type
+
+
+ if oldGameVersion == 1 then
_data["niao"] = niao
else
_data["niao"] = tonumber(_config:GetController("niao_num").selectedPage)
end
-
-
- if oldGameVersion==1 then
+
+
+ if oldGameVersion == 1 then
_data["piao_niao"] = piao_niao
else
_data["piao_niao"] = piao_niao1
end
- _data["two_pair"] = two_pair
- _data["no_jiang"] = no_jiang
- _data["four_win"] = four_win
- _data["native_hu"] = native_hu
- _data["queyimen"] = queyimen
- _data["fengding"] = fengding
- _data["banyiquan"] = banyiquan
- _data["menqing"] = menqing
+ _data["two_pair"] = two_pair
+ _data["no_jiang"] = no_jiang
+ _data["four_win"] = four_win
+ _data["native_hu"] = native_hu
+ _data["queyimen"] = queyimen
+ _data["fengding"] = fengding
+ _data["banyiquan"] = banyiquan
+ _data["menqing"] = menqing
_data["fengding_score"] = fengding_score
--_data['piao'] = piao
_data['piao1'] = piao1
_data['piao2'] = piao2
_data['piao3'] = piao3
-
- auto_piao=false
- if piao_niao1==2 then
+
+ auto_piao = false
+ if piao_niao1 == 2 then
if piao1 or piao2 or piao3 then
- auto_piao=true
+ auto_piao = true
end
end
-
- if oldGameVersion==2 then
+
+ if oldGameVersion == 2 then
_data['auto_piao'] = auto_piao
end
-
+
_data['xi_pai'] = xi_pai
_data['piao_niao_opt'] = piao_niao_opt
-
- local xi_pai_score=0
- local an_chou_score=0
- if oldGameVersion==2 then
- xi_pai_score=self.xipaiValue
- an_chou_score=self.anchouValue
+
+ local xi_pai_score = 0
+ local an_chou_score = 0
+ if oldGameVersion == 2 then
+ xi_pai_score = self.xipaiValue
+ an_chou_score = self.anchouValue
end
-
- _data['xi_pai_score'] = xi_pai_score*1000
- _data['an_chou_score'] = an_chou_score*1000
-
- if oldGameVersion==2 then
+
+ _data['xi_pai_score'] = xi_pai_score * 1000
+ _data['an_chou_score'] = an_chou_score * 1000
+
+ if oldGameVersion == 2 then
_data['niaofen_opt'] = niaofen_opt
_data['niaofen_score'] = niaofen_score
_data['difen_score'] = difen_score
_data['kai_gong'] = kai_gong
-
end
-
+
pt(_data)
- return _data
-end
-
-
+ return _data
+end
function M:LoadConfigData(data)
pt(data)
- local _config = self._config
- _config:GetController("round").selectedIndex = data.opt - 1 -- == 1 and 0 or 1
- _config:GetController("play_list").selectedIndex = data.maxPlayers-2
+ local _config = self._config
+ _config:GetController("round").selectedIndex = data.opt - 1 -- == 1 and 0 or 1
+ _config:GetController("play_list").selectedIndex = data.maxPlayers - 2
- _config:GetChild("btn_zhuangxian").selected = data.zhuangxian
- _config:GetChild("btn_zimo").selected = data.zimo
- _config:GetController("Cost").selectedIndex = data.AA
- -- _config:GetChild("btn_piaofen").selected = data.piaofen
- -- _config:GetChild("btn_liuliushun").selected = data.liuliushun
- -- _config:GetChild("btn_queyise").selected = data.queyise
- -- _config:GetChild("btn_banbanhu").selected = data.banbanhu
- -- _config:GetChild("btn_dasixi").selected = data.dasixi
- _config:GetChild("btn_jiejiegao").selected = data.jiejiegao
- _config:GetChild("btn_santong").selected = data.santong
- _config:GetChild("btn_yizhihua").selected = data.yizhihua
- _config:GetChild("btn_zhongtusixi").selected = data.zhongtusixi
- _config:GetChild("btn_zhongtuliuliushun").selected = data.zhongtuliuliushun
+ _config:GetChild("btn_zhuangxian").selected = data.zhuangxian
+ _config:GetChild("btn_zimo").selected = data.zimo
+ _config:GetController("Cost").selectedIndex = data.AA
+ -- _config:GetChild("btn_piaofen").selected = data.piaofen
+ -- _config:GetChild("btn_liuliushun").selected = data.liuliushun
+ -- _config:GetChild("btn_queyise").selected = data.queyise
+ -- _config:GetChild("btn_banbanhu").selected = data.banbanhu
+ -- _config:GetChild("btn_dasixi").selected = data.dasixi
+ _config:GetChild("btn_jiejiegao").selected = data.jiejiegao
+ _config:GetChild("btn_santong").selected = data.santong
+ _config:GetChild("btn_yizhihua").selected = data.yizhihua
+ _config:GetChild("btn_zhongtusixi").selected = data.zhongtusixi
+ _config:GetChild("btn_zhongtuliuliushun").selected = data.zhongtuliuliushun
- _config:GetController("niao").selectedIndex = data.niao_type
-
- if oldGameVersion==1 then
- _config:GetController("niao_num").selectedIndex = data.niao_type ~= 0 and 0 or (data.niao == 4 and 1 or (data.niao == 6 and 2 or 0))
+ _config:GetController("niao").selectedIndex = data.niao_type
+
+ if oldGameVersion == 1 then
+ _config:GetController("niao_num").selectedIndex = data.niao_type ~= 0 and 0 or
+ (data.niao == 4 and 1 or (data.niao == 6 and 2 or 0))
else
- _config:GetController("niao_num").selectedIndex=data.niao/2-1
+ _config:GetController("niao_num").selectedIndex = data.niao / 2 - 1
end
- _config:GetController("niao_db_num").selectedIndex = data.niao_type ~= 1 and 0 or (data.niao == 1 and 0 or 1)
- if oldGameVersion==1 then
+ _config:GetController("niao_db_num").selectedIndex = data.niao_type ~= 1 and 0 or (data.niao == 1 and 0 or 1)
+ if oldGameVersion == 1 then
_config:GetChild("btn_piao_niao").selected = data.piao_niao
end
- _config:GetChild("btn_two_pair").selected = data.two_pair
- _config:GetChild("btn_no_jiang").selected = data.no_jiang
- _config:GetChild("btn_four_win").selected = data.four_win
- _config:GetChild("btn_native_hu").selected = data.native_hu
- _config:GetChild("btn_queyimen").selected = data.queyimen
- _config:GetChild("btn_fengding").selected = data.fengding or false
- _config:GetChild("btn_banyiquan").selected = data.banyiquan or false
- _config:GetChild("btn_menqing").selected = data.menqing or false
-
- if _config:GetController("fengding") then
- _config:GetController("fengding").selectedIndex=data.fengding_score
- end
-
- if _config:GetController("piao") then
- _config:GetController("piao").selectedIndex=data.piao_niao
- _config:GetChild('pf1').selected=data.piao1
- _config:GetChild('pf2').selected=data.piao2
- _config:GetChild('pf3').selected=data.piao3
- end
-
- if _config:GetChild("xipai") then
- _config:GetChild("xipai").selected=data.xi_pai
- end
-
- if _config:GetController("piaofen") then
- _config:GetController("piaofen").selectedIndex=data.piao_niao_opt
- end
-
- if oldGameVersion==2 then
- self.xipaiValueText.text=data.xi_pai_score/1000
- self.xipaiValue=data.xi_pai_score/1000
+ _config:GetChild("btn_two_pair").selected = data.two_pair
+ _config:GetChild("btn_no_jiang").selected = data.no_jiang
+ _config:GetChild("btn_four_win").selected = data.four_win
+ _config:GetChild("btn_native_hu").selected = data.native_hu
+ _config:GetChild("btn_queyimen").selected = data.queyimen
+ _config:GetChild("btn_fengding").selected = data.fengding or false
+ _config:GetChild("btn_banyiquan").selected = data.banyiquan or false
+ _config:GetChild("btn_menqing").selected = data.menqing or false
- self.anchouValueText.text=data.an_chou_score/1000
- self.anchouValue=data.an_chou_score/1000
+ if _config:GetController("fengding") then
+ _config:GetController("fengding").selectedIndex = data.fengding_score
end
-
- if oldGameVersion==2 then
- _config:GetController("niaoadd").selectedIndex=data.niaofen_opt or 0
- _config:GetController("niaodf").selectedIndex=data.niaofen_score-1
- _config:GetController("jcdifen").selectedIndex=data.difen_score-1
- _config:GetController("kaigang").selectedIndex=data.kai_gong
+
+ if _config:GetController("piao") then
+ _config:GetController("piao").selectedIndex = data.piao_niao
+ _config:GetChild('pf1').selected = data.piao1
+ _config:GetChild('pf2').selected = data.piao2
+ _config:GetChild('pf3').selected = data.piao3
end
-
- end
-
-return M
-
\ No newline at end of file
+
+ if _config:GetChild("xipai") then
+ _config:GetChild("xipai").selected = data.xi_pai
+ end
+
+ if _config:GetController("piaofen") then
+ _config:GetController("piaofen").selectedIndex = data.piao_niao_opt
+ end
+
+ if oldGameVersion == 2 then
+ self.xipaiValueText.text = data.xi_pai_score / 1000
+ self.xipaiValue = data.xi_pai_score / 1000
+
+ self.anchouValueText.text = data.an_chou_score / 1000
+ self.anchouValue = data.an_chou_score / 1000
+ end
+
+ if oldGameVersion == 2 then
+ _config:GetController("niaoadd").selectedIndex = data.niaofen_opt or 0
+ _config:GetController("niaodf").selectedIndex = data.niaofen_score - 1
+ _config:GetController("jcdifen").selectedIndex = data.difen_score - 1
+ _config:GetController("kaigang").selectedIndex = data.kai_gong
+ end
+end
+
+return M
diff --git a/fk101/lua_probject/extend_project/extend/majiang/hongzhong/EXGameInfo.lua b/fk101/lua_probject/extend_project/extend/majiang/hongzhong/EXGameInfo.lua
index 2ee052c4..30393a59 100644
--- a/fk101/lua_probject/extend_project/extend/majiang/hongzhong/EXGameInfo.lua
+++ b/fk101/lua_probject/extend_project/extend/majiang/hongzhong/EXGameInfo.lua
@@ -3,59 +3,54 @@ local EXGameInfo = {}
local M = EXGameInfo
function EXGameInfo.new(blur_view)
- setmetatable(M, {__index = IGameInfo})
- local self = setmetatable({}, {__index = M})
- self.class = "EXGameInfo"
- UIPackage.AddPackage("extend/majiang/hongzhong/ui/Info_MJ_HongZhong")
- return self
+ setmetatable(M, { __index = IGameInfo })
+ local self = setmetatable({}, { __index = M })
+ self.class = "EXGameInfo"
+ UIPackage.AddPackage("extend/majiang/hongzhong/ui/Info_MJ_HongZhong")
+ return self
end
function M:FillData()
- self._maxPlayer = 4 -- 默认玩家人数
- self._roundChoice = 4 -- 回合选项数
-
- if oldGameVersion==1 then
+ self._maxPlayer = 4 -- 默认玩家人数
+ self._roundChoice = 4 -- 回合选项数
+
+ if oldGameVersion == 1 then
self._config = UIPackage.CreateObjectFromURL("ui://Info_MJ_HongZhong/Cgm_create_room")
else
self._config = UIPackage.CreateObjectFromURL("ui://Info_MJ_HongZhong/Cgm_create_room_yueyang")
end
-
- if oldGameVersion==2 then
- self._config:GetController("xipai").selectedIndex=0
-
- self.xipaiValueText=self._config:GetChild('xipaifen')
- self.xipaiValue=1
- self.anchouValueText=self._config:GetChild('anchoufen')
- self.anchouValueText.text=1
- self.anchouValue=1
-
+ if oldGameVersion == 2 then
+ self._config:GetController("xipai").selectedIndex = 0
+
+ self.xipaiValueText = self._config:GetChild('xipaifen')
+ self.xipaiValue = 1
+
+ self.anchouValueText = self._config:GetChild('anchoufen')
+ self.anchouValueText.text = 1
+ self.anchouValue = 1
+
local btn_cr = self._config:GetChild('sdsrbtn')
btn_cr.onClick:Set(
function()
-
- local gniv = GroupNumberInputView_Game.new(nil, function(num)
-
+ local gniv = GroupNumberInputView_Game.new(nil, function(num)
local value = limit
if otype == 1 then
value = value + ad2d(num)
- elseif otype == - 1 then
+ elseif otype == -1 then
value = value - ad2d(num)
else
value = ad2d(num)
end
-
+
if value < 0 then
- ViewUtil.ErrorTip(1,"输入数据异常!")
+ ViewUtil.ErrorTip(1, "输入数据异常!")
end
-
- self.xipaiValueText.text=value/1000
- self.xipaiValue=value/1000
-
+
+ self.xipaiValueText.text = value / 1000
+ self.xipaiValue = value / 1000
end, 3, nil)
gniv:Show()
-
-
end
)
@@ -64,146 +59,139 @@ function M:FillData()
local btn_cr2 = self._config:GetChild('anchoubtn')
btn_cr2.onClick:Set(
function()
-
- local gniv = GroupNumberInputView_Game.new(nil, function(num)
-
+ local gniv = GroupNumberInputView_Game.new(nil, function(num)
local value = limit
if otype == 1 then
value = value + ad2d(num)
- elseif otype == - 1 then
+ elseif otype == -1 then
value = value - ad2d(num)
else
value = ad2d(num)
end
-
+
if value < 0 then
- ViewUtil.ErrorTip(1,"输入数据异常!")
+ ViewUtil.ErrorTip(1, "输入数据异常!")
end
-
- self.anchouValueText.text=value/1000
- self.anchouValue=value/1000
-
+
+ self.anchouValueText.text = value / 1000
+ self.anchouValue = value / 1000
end, 3, nil)
gniv:Show()
-
-
end
)
-
end
-
-end
+end
-local _help_url= "ui://Info_MJ_HongZhong/Com_help"
+local _help_url = "ui://Info_MJ_HongZhong/Com_help"
function M:GetHelpUrl()
- return _help_url
+ return _help_url
end
local _icon_url = "ui://Info_MJ_HongZhong/icon"
function M:GetIconUrl()
- return _icon_url
+ return _icon_url
end
-local _icon_url1 = "ui://Info_MJ_HongZhong/icon1"
+local _icon_url1 = "ui://NewGroup/group_hongzhong"
function M:GetIconUrl1()
- return _icon_url1
+ return _icon_url1
end
-local _play_list = {}--{"红中麻将","三人红中","二人红中"}
+local _play_list = {} --{"红中麻将","三人红中","二人红中"}
function M:GetPlayList()
- return _play_list
+ return _play_list
end
function M:SelectedConfigData()
- local _config = self._config
- local round = _config:GetController("round").selectedIndex + 1
- local people = _config:GetController("play_list").selectedIndex+2
- local qiangkong = _config:GetChild("btn_qgh").selected and true or false
- local qiangkong_niao = _config:GetChild("btn_qghjm").selected and true or false
- local seven_pair = _config:GetChild("btn_qidui").selected and true or false
- local niao_type = _config:GetController("NiaoType").selectedIndex + 1
- local zha_ma = _config:GetController("zha").selectedIndex + 1
- local wo_niao = _config:GetController("wowoniao").selectedIndex + 1
- local laizi = _config:GetChild("btn_laizi").selected and true or false
- local aa = _config:GetController("Cost").selectedIndex
- -- local zhuangxian = _config:GetChild("btn_zhuangxian").selected and true or false
- local piao_niao = _config:GetChild("btn_piao_niao").selected
- local jiangma = _config:GetController("jiangma").selectedIndex
+ local _config = self._config
+ local round = _config:GetController("round").selectedIndex + 1
+ local people = _config:GetController("play_list").selectedIndex + 2
+ local qiangkong = _config:GetChild("btn_qgh").selected and true or false
+ local qiangkong_niao = _config:GetChild("btn_qghjm").selected and true or false
+ local seven_pair = _config:GetChild("btn_qidui").selected and true or false
+ local niao_type = _config:GetController("NiaoType").selectedIndex + 1
+ local zha_ma = _config:GetController("zha").selectedIndex + 1
+ local wo_niao = _config:GetController("wowoniao").selectedIndex + 1
+ local laizi = _config:GetChild("btn_laizi").selected and true or false
+ local aa = _config:GetController("Cost").selectedIndex
+ -- local zhuangxian = _config:GetChild("btn_zhuangxian").selected and true or false
+ local piao_niao = _config:GetChild("btn_piao_niao").selected
+ local jiangma = _config:GetController("jiangma").selectedIndex
local wuguizhuopaojiabei = _config:GetChild("btn_wuhongzhongzuobaofanbei").selected
-
+
----------
- local piao_niao1=0
+ local piao_niao1 = 0
if _config:GetController('piao') then
- piao_niao1=_config:GetController('piao').selectedIndex
- end
- local piao1=false
- local piao2=false
- local piao3=false
- local piao_niao_opt=0
- if piao_niao1==2 then
- piao_niao_opt=_config:GetController("piaofen").selectedIndex
+ piao_niao1 = _config:GetController('piao').selectedIndex
end
-
-
+ local piao1 = false
+ local piao2 = false
+ local piao3 = false
+ local piao_niao_opt = 0
+ if piao_niao1 == 2 then
+ piao_niao_opt = _config:GetController("piaofen").selectedIndex
+ end
+
+
local laizi4_hu = false
if _config:GetChild("btn_sihongzhong") then
laizi4_hu = _config:GetChild("btn_sihongzhong").selected
end
-
- local hz_hu =false
+
+ local hz_hu = false
if _config:GetChild("btn_wuhongzhong") then
hz_hu = _config:GetChild("btn_wuhongzhong").selected
end
-
- local wuguijiabei =false
+
+ local wuguijiabei = false
if _config:GetChild("btn_wuhongzhongzimo") then
wuguijiabei = _config:GetChild("btn_wuhongzhongzimo").selected
end
-
- local di_fen=false
+
+ local di_fen = false
if _config:GetController('difen') then
- di_fen=_config:GetController('difen').selectedIndex
+ di_fen = _config:GetController('difen').selectedIndex
end
-
- local xi_pai=false
+
+ local xi_pai = false
if _config:GetChild("xipai") then
- xi_pai=_config:GetChild("xipai").selected
+ xi_pai = _config:GetChild("xipai").selected
+ end
+
+ local fengding_score = 0
+ if _config:GetController("fengding") then
+ fengding_score = _config:GetController("fengding").selectedIndex
end
-
- local fengding_score=0
- if _config:GetController("fengding") then
- fengding_score=_config:GetController("fengding").selectedIndex
- end
----------
- local _data = {}
- _data["opt"] = round
- _data["maxPlayers"] = people
- -- _data["maxPlayers"] = 2
- -- _data["zhuangxian"] = zhuangxian
- _data["qidui"] = seven_pair
- _data["qiangkong"] = qiangkong
- _data["qiangkong_niao"] = not qiangkong and false or qiangkong_niao
- _data["niao"] = niao_type
- if oldGameVersion==1 then
+ local _data = {}
+ _data["opt"] = round
+ _data["maxPlayers"] = people
+ -- _data["maxPlayers"] = 2
+ -- _data["zhuangxian"] = zhuangxian
+ _data["qidui"] = seven_pair
+ _data["qiangkong"] = qiangkong
+ _data["qiangkong_niao"] = not qiangkong and false or qiangkong_niao
+ _data["niao"] = niao_type
+ if oldGameVersion == 1 then
_data["niao_opt"] = niao_type == 2 and 1 or (niao_type == 3 and wo_niao or zha_ma)
else
_data["niao_opt"] = niao_type == 2 and 1 or (niao_type == 3 and wo_niao or zha_ma)
end
-
+
_data["niao_opt_score"] = wo_niao
-
-
- _data["laizi8"] = laizi
- _data["AA"] = aa
- if oldGameVersion==1 then
+
+
+ _data["laizi8"] = laizi
+ _data["AA"] = aa
+ if oldGameVersion == 1 then
_data["piao_niao"] = piao_niao
else
_data["piao_niao"] = piao_niao1
end
-
- _data["jiangma"] = jiangma
-
+
+ _data["jiangma"] = jiangma
+
_data['piao1'] = piao1
_data['piao2'] = piao2
_data['piao3'] = piao3
@@ -212,97 +200,95 @@ function M:SelectedConfigData()
_data['wuguijiabei'] = wuguijiabei
_data['di_fen'] = di_fen
_data['xi_pai'] = xi_pai
-
- auto_piao=false
- if piao_niao==2 then
+
+ auto_piao = false
+ if piao_niao == 2 then
if piao1 or piao2 or piao3 then
- auto_piao=true
+ auto_piao = true
end
end
_data['auto_piao'] = auto_piao
_data['piao_niao_opt'] = piao_niao_opt
-
- local xi_pai_score=0
- local an_chou_score=0
- if oldGameVersion==2 then
- xi_pai_score=self.xipaiValue
- an_chou_score=self.anchouValue
+
+ local xi_pai_score = 0
+ local an_chou_score = 0
+ if oldGameVersion == 2 then
+ xi_pai_score = self.xipaiValue
+ an_chou_score = self.anchouValue
end
-
- _data['xi_pai_score'] = xi_pai_score*1000
- _data['an_chou_score'] = an_chou_score*1000
-
+
+ _data['xi_pai_score'] = xi_pai_score * 1000
+ _data['an_chou_score'] = an_chou_score * 1000
+
_data["fengding_score"] = fengding_score
_data["wuguizhuopaojiabei"] = wuguizhuopaojiabei
-
- return _data
-end
+
+ return _data
+end
function M:LoadConfigData(data)
- local _config = self._config
- _config:GetController("round").selectedIndex = data.opt-1
- _config:GetController("play_list").selectedIndex = data.maxPlayers-2
- _config:GetChild("btn_qgh").selected = data.qiangkong
- _config:GetChild("btn_qghjm").selected = data.qiangkong_niao
- _config:GetChild("btn_qidui").selected = data.qidui
- -- _config:GetChild("btn_zhuangxian").selected = data.zhuangxian
- _config:GetController("NiaoType").selectedIndex = data.niao - 1
- if data.niao == 1 then
- _config:GetController("zha").selectedIndex = data.niao_opt - 1
- elseif data.niao == 3 then
- _config:GetController("wowoniao").selectedIndex = data.niao_opt - 1
- end
+ local _config = self._config
+ _config:GetController("round").selectedIndex = data.opt - 1
+ _config:GetController("play_list").selectedIndex = data.maxPlayers - 2
+ _config:GetChild("btn_qgh").selected = data.qiangkong
+ _config:GetChild("btn_qghjm").selected = data.qiangkong_niao
+ _config:GetChild("btn_qidui").selected = data.qidui
+ -- _config:GetChild("btn_zhuangxian").selected = data.zhuangxian
+ _config:GetController("NiaoType").selectedIndex = data.niao - 1
+ if data.niao == 1 then
+ _config:GetController("zha").selectedIndex = data.niao_opt - 1
+ elseif data.niao == 3 then
+ _config:GetController("wowoniao").selectedIndex = data.niao_opt - 1
+ end
_config:GetController("wowoniao").selectedIndex = data.niao_opt_score - 1
-
- _config:GetChild("btn_laizi").selected = data.laizi8
- _config:GetController("Cost").selectedIndex = data.AA or 0
- if oldGameVersion==1 then
+
+ _config:GetChild("btn_laizi").selected = data.laizi8
+ _config:GetController("Cost").selectedIndex = data.AA or 0
+ if oldGameVersion == 1 then
_config:GetChild("btn_piao_niao").selected = data.piao_niao
end
- _config:GetController("jiangma").selectedIndex = data.jiangma
-
-
- if _config:GetController("piao") then
- _config:GetController("piao").selectedIndex=data.piao_niao
- _config:GetChild('pf1').selected=data.piao1
- _config:GetChild('pf2').selected=data.piao2
- _config:GetChild('pf3').selected=data.piao3
- end
-
- if _config:GetChild("btn_sihongzhong") then
- _config:GetChild("btn_sihongzhong").selected=data.laizi4_hu
- _config:GetChild("btn_wuhongzhong").selected=data.hz_hu
- _config:GetChild("btn_wuhongzhongzimo").selected=data.wuguijiabei
- end
-
- if _config:GetController("difen") then
- _config:GetController("difen").selectedIndex=data.di_fen
- end
-
- if _config:GetChild("xipai") then
- _config:GetChild("xipai").selected=data.xi_pai
- end
-
- if _config:GetController("piaofen") then
- _config:GetController("piaofen").selectedIndex=data.piao_niao_opt
- end
-
- if oldGameVersion==2 then
- self.xipaiValueText.text=data.xi_pai_score/1000
- self.xipaiValue=data.xi_pai_score/1000
+ _config:GetController("jiangma").selectedIndex = data.jiangma
- self.anchouValueText.text=data.an_chou_score/1000
- self.anchouValue=data.an_chou_score/1000
+
+ if _config:GetController("piao") then
+ _config:GetController("piao").selectedIndex = data.piao_niao
+ _config:GetChild('pf1').selected = data.piao1
+ _config:GetChild('pf2').selected = data.piao2
+ _config:GetChild('pf3').selected = data.piao3
end
-
- if _config:GetController("fengding") then
- _config:GetController("fengding").selectedIndex=data.fengding_score
+
+ if _config:GetChild("btn_sihongzhong") then
+ _config:GetChild("btn_sihongzhong").selected = data.laizi4_hu
+ _config:GetChild("btn_wuhongzhong").selected = data.hz_hu
+ _config:GetChild("btn_wuhongzhongzimo").selected = data.wuguijiabei
end
-
- _config:GetChild("btn_wuhongzhongzuobaofanbei").selected=data.wuguizhuopaojiabei
-
- end
-
-return M
-
\ No newline at end of file
+
+ if _config:GetController("difen") then
+ _config:GetController("difen").selectedIndex = data.di_fen
+ end
+
+ if _config:GetChild("xipai") then
+ _config:GetChild("xipai").selected = data.xi_pai
+ end
+
+ if _config:GetController("piaofen") then
+ _config:GetController("piaofen").selectedIndex = data.piao_niao_opt
+ end
+
+ if oldGameVersion == 2 then
+ self.xipaiValueText.text = data.xi_pai_score / 1000
+ self.xipaiValue = data.xi_pai_score / 1000
+
+ self.anchouValueText.text = data.an_chou_score / 1000
+ self.anchouValue = data.an_chou_score / 1000
+ end
+
+ if _config:GetController("fengding") then
+ _config:GetController("fengding").selectedIndex = data.fengding_score
+ end
+
+ _config:GetChild("btn_wuhongzhongzuobaofanbei").selected = data.wuguizhuopaojiabei
+end
+
+return M
diff --git a/fk101/lua_probject/extend_project/extend/zipai/changdepaohuzi/EXGameInfo.lua b/fk101/lua_probject/extend_project/extend/zipai/changdepaohuzi/EXGameInfo.lua
index f9256127..0229149a 100644
--- a/fk101/lua_probject/extend_project/extend/zipai/changdepaohuzi/EXGameInfo.lua
+++ b/fk101/lua_probject/extend_project/extend/zipai/changdepaohuzi/EXGameInfo.lua
@@ -3,8 +3,8 @@ local EXGameInfo = {}
local M = EXGameInfo
function EXGameInfo.new(blur_view)
- setmetatable(M, {__index = IGameInfo})
- local self = setmetatable({}, {__index = M})
+ setmetatable(M, { __index = IGameInfo })
+ local self = setmetatable({}, { __index = M })
self.class = 'EXGameInfo'
UIPackage.AddPackage('extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ')
UIPackage.AddPackage('extend/zipai/changdepaohuzi/ui/Info_Poker_ChangdeWHZ')
@@ -12,93 +12,83 @@ function EXGameInfo.new(blur_view)
end
function M:FillData()
- self._maxPlayer = 3 -- 默认玩家人数
+ self._maxPlayer = 3 -- 默认玩家人数
self._roundChoice = 3 -- 回合选项数
self._config = UIPackage.CreateObjectFromURL('ui://Extend_Poker_ChangdeWHZ/Cgm_create_room')
-
- if oldGameVersion ==1 then
- self._config:GetChild("xipai").visible=false
- end
- if oldGameVersion==2 then
- self._config:GetController("xipai").selectedIndex=1
- self.xipaiValueText=self._config:GetChild('xipaifen')
- self.xipaiValueText.text=1
- self.xipaiValue=1
+ if oldGameVersion == 1 then
+ self._config:GetChild("xipai").visible = false
+ end
- self.anchouValueText=self._config:GetChild('anchoufen')
- self.anchouValueText.text=1
- self.anchouValue=1
-
- local btn_cr = self._config:GetChild('sdsrbtn')
- btn_cr.onClick:Set(
- function()
-
- local gniv = GroupNumberInputView_Game.new(nil, function(num)
-
- local value = limit
- if otype == 1 then
- value = value + ad2d(num)
- elseif otype == - 1 then
- value = value - ad2d(num)
- else
- value = ad2d(num)
- end
-
- if value < 0 then
- ViewUtil.ErrorTip(1,"输入数据异常!")
- end
-
- self.xipaiValueText.text=value/1000
- self.xipaiValue=value/1000
-
- end, 3, nil)
- gniv:Show()
-
-
+ if oldGameVersion == 2 then
+ self._config:GetController("xipai").selectedIndex = 1
+ self.xipaiValueText = self._config:GetChild('xipaifen')
+ self.xipaiValueText.text = 1
+ self.xipaiValue = 1
+
+ self.anchouValueText = self._config:GetChild('anchoufen')
+ self.anchouValueText.text = 1
+ self.anchouValue = 1
+
+ local btn_cr = self._config:GetChild('sdsrbtn')
+ btn_cr.onClick:Set(
+ function()
+ local gniv = GroupNumberInputView_Game.new(nil, function(num)
+ local value = limit
+ if otype == 1 then
+ value = value + ad2d(num)
+ elseif otype == -1 then
+ value = value - ad2d(num)
+ else
+ value = ad2d(num)
end
- )
- local btn_cr2 = self._config:GetChild('anchoubtn')
- btn_cr2.onClick:Set(
- function()
-
- local gniv = GroupNumberInputView_Game.new(nil, function(num)
-
- local value = limit
- if otype == 1 then
- value = value + ad2d(num)
- elseif otype == - 1 then
- value = value - ad2d(num)
- else
- value = ad2d(num)
- end
-
- if value < 0 then
- ViewUtil.ErrorTip(1,"输入数据异常!")
- end
-
- self.anchouValueText.text=value/1000
- self.anchouValue=value/1000
-
- end, 3, nil)
- gniv:Show()
-
-
+
+ if value < 0 then
+ ViewUtil.ErrorTip(1, "输入数据异常!")
end
- )
- end
-
-
+
+ self.xipaiValueText.text = value / 1000
+ self.xipaiValue = value / 1000
+ end, 3, nil)
+ gniv:Show()
+ end
+ )
+ local btn_cr2 = self._config:GetChild('anchoubtn')
+ btn_cr2.onClick:Set(
+ function()
+ local gniv = GroupNumberInputView_Game.new(nil, function(num)
+ local value = limit
+ if otype == 1 then
+ value = value + ad2d(num)
+ elseif otype == -1 then
+ value = value - ad2d(num)
+ else
+ value = ad2d(num)
+ end
+
+ if value < 0 then
+ ViewUtil.ErrorTip(1, "输入数据异常!")
+ end
+
+ self.anchouValueText.text = value / 1000
+ self.anchouValue = value / 1000
+ end, 3, nil)
+ gniv:Show()
+ end
+ )
+ end
+
+
local btn_jia = self._config:GetChild('btn_jia')
local btn_jian = self._config:GetChild('btn_jian')
local btn_jia1 = self._config:GetChild('btn_jia1')
local btn_jian1 = self._config:GetChild('btn_jian1')
local btn_jia2 = self._config:GetChild('btn_jia2')
local btn_jian2 = self._config:GetChild('btn_jian2')
- -- local fS=self._config:GetChild('btn_round8'):GetChild("title")
- -- fS.text="1局"
- -- fS=self._config:GetChild('btn_round16'):GetChild("title")
- -- fS.text="8局"
+ -- local fS=self._config:GetChild('btn_round8'):GetChild("title")
+ -- fS.text="1局"
+ -- fS=self._config:GetChild('btn_round16'):GetChild("title")
+ -- fS.text="8局"
btn_jia.onClick:Set(
function()
if self._config:GetController('tun').selectedIndex ~= 5 then
@@ -191,6 +181,7 @@ function M:FillData()
end
)
end
+
local _help_url = 'ui://Info_Poker_ChangdeWHZ/Com_help'
function M:GetHelpUrl()
return _help_url
@@ -201,12 +192,12 @@ function M:GetIconUrl()
return _icon_url
end
-local _icon_url1 = "ui://Info_Poker_ChangdeWHZ/icon1"
+local _icon_url1 = "ui://NewGroup/group_paohuzi"
function M:GetIconUrl1()
return _icon_url1
end
-local _play_list = {"全名堂","红黑点","多红多番"}
+local _play_list = { "全名堂", "红黑点", "多红多番" }
function M:GetPlayList()
return _play_list
end
@@ -214,7 +205,7 @@ end
function M:SelectedConfigData()
local _config = self._config
local wanfa_C = _config:GetController('btn_Controller').selectedIndex
- local round = _config:GetController('round').selectedIndex+1 --== 0 and 1 or 2
+ local round = _config:GetController('round').selectedIndex + 1 --== 0 and 1 or 2
local Cost = _config:GetController('Cost').selectedIndex
local tun = _config:GetController('tun').selectedIndex
local fengding = _config:GetController('fengding').selectedIndex
@@ -232,30 +223,30 @@ function M:SelectedConfigData()
local dihu = _config:GetController('dihu').selectedIndex
local haihu = _config:GetController('haihu').selectedIndex
local renshu = _config:GetController('renshu').selectedIndex == 0 and 2 or 3
- -- local qupai = _config:GetController('qupai').selectedIndex == 1 and true or false
+ -- local qupai = _config:GetController('qupai').selectedIndex == 1 and true or false
local _data = {}
- _data['opt'] = round -- 1 2 8局 16 局
+ _data['opt'] = round -- 1 2 8局 16 局
_data['mode'] = wanfa_C + 1 -- 1 全名堂 2 红黑点 3 多红多番
_data['AA'] = Cost
_data['maxPlayers'] = renshu
if wanfa_C == 0 then
- _data['tun'] = tun -- 充囤 0 1 2 3 4 分别是 1 2 3 4 5
- _data['fengding'] = fengding -- 封顶 0 1 2 全名堂分别是 不封顶 100封顶 200封顶
- _data['tuanyuan'] = tuanyuan -- 大团圆 0 不选 1 选
- _data['hanghangxi'] = hanghangxi -- 行行息 0 不选 1 选
- _data['shuahou'] = shuahou -- 耍猴 0 不选 1 选
- _data['huangfan'] = huangfan -- 黄番 0 不选 1 选
+ _data['tun'] = tun -- 充囤 0 1 2 3 4 分别是 1 2 3 4 5
+ _data['fengding'] = fengding -- 封顶 0 1 2 全名堂分别是 不封顶 100封顶 200封顶
+ _data['tuanyuan'] = tuanyuan -- 大团圆 0 不选 1 选
+ _data['hanghangxi'] = hanghangxi -- 行行息 0 不选 1 选
+ _data['shuahou'] = shuahou -- 耍猴 0 不选 1 选
+ _data['huangfan'] = huangfan -- 黄番 0 不选 1 选
_data['jiaxingxing'] = jiaxingxing -- 假行行 0 不选 1 选
- _data['tinghu'] = tinghu -- 听胡 0 不选 1 选
- _data['siqi'] = siqi -- 四七红 0 不选 1 选
- _data['back'] = back -- 四七红 0 不选 1 选
- _data['yuan'] = yuan -- 四七红 0 不选 1 选
+ _data['tinghu'] = tinghu -- 听胡 0 不选 1 选
+ _data['siqi'] = siqi -- 四七红 0 不选 1 选
+ _data['back'] = back -- 四七红 0 不选 1 选
+ _data['yuan'] = yuan -- 四七红 0 不选 1 选
elseif wanfa_C == 1 then
- _data['tun'] = tun -- 充囤 0 1 2 3 4 5 分别是 0 1 2 3 4 5
- _data['fengding'] = fengding -- 封顶 0 1 2 红黑点分别是 不封顶 单局20封顶 单局 40封顶
- _data['duizifu'] = duizifu -- 对子胡 0 不选 1 选
+ _data['tun'] = tun -- 充囤 0 1 2 3 4 5 分别是 0 1 2 3 4 5
+ _data['fengding'] = fengding -- 封顶 0 1 2 红黑点分别是 不封顶 单局20封顶 单局 40封顶
+ _data['duizifu'] = duizifu -- 对子胡 0 不选 1 选
elseif wanfa_C == 2 then
- _data['tun'] = tun -- 充囤 0 1 2 3 4 5 分别是 0 1 2 3 4 5
+ _data['tun'] = tun -- 充囤 0 1 2 3 4 5 分别是 0 1 2 3 4 5
_data['tianhu'] = tianhu
_data['dihu'] = dihu
_data['haihu'] = haihu
@@ -266,28 +257,28 @@ function M:SelectedConfigData()
if renshu == 2 then
_data['qupai'] = false
end
-
- local xi_pai=false
- if oldGameVersion ==2 then
- if _config:GetChild("xipai") then
- xi_pai = _config:GetChild("xipai").selected
- end
- end
- _data['xi_pai'] = xi_pai
+ local xi_pai = false
+ if oldGameVersion == 2 then
+ if _config:GetChild("xipai") then
+ xi_pai = _config:GetChild("xipai").selected
+ end
+ end
- local xi_pai_score=0
- local an_chou_score=0
+ _data['xi_pai'] = xi_pai
- if oldGameVersion==2 then
- xi_pai_score=self.xipaiValue
- an_chou_score=self.anchouValue
- end
-
- _data['xi_pai_score'] = xi_pai_score*1000
- _data['an_chou_score'] = an_chou_score*1000
+ local xi_pai_score = 0
+ local an_chou_score = 0
- _data['xi_pai'] = xi_pai
+ if oldGameVersion == 2 then
+ xi_pai_score = self.xipaiValue
+ an_chou_score = self.anchouValue
+ end
+
+ _data['xi_pai_score'] = xi_pai_score * 1000
+ _data['an_chou_score'] = an_chou_score * 1000
+
+ _data['xi_pai'] = xi_pai
return _data
end
@@ -325,21 +316,21 @@ function M:LoadConfigData(data)
if data.maxPlayers == 2 then
--_config:GetController('qupai').selectedIndex = data.qupai == true and 1 or 0
end
-
- if _config:GetChild("xipai") then
- _config:GetChild("xipai").selected=data.xi_pai
- end
-
- if oldGameVersion==2 then
- self.xipaiValueText.text=data.xi_pai_score/1000
- self.xipaiValue=data.xi_pai_score/1000
+ if _config:GetChild("xipai") then
+ _config:GetChild("xipai").selected = data.xi_pai
+ end
- self.anchouValueText.text=data.an_chou_score/1000
- self.anchouValue=data.an_chou_score/1000
- end
-
+
+ if oldGameVersion == 2 then
+ self.xipaiValueText.text = data.xi_pai_score / 1000
+ self.xipaiValue = data.xi_pai_score / 1000
+
+ self.anchouValueText.text = data.an_chou_score / 1000
+ self.anchouValue = data.an_chou_score / 1000
+ end
end
+
function M:OnChangeOption(ctype)
IGameInfo.OnChangeOption(self, ctype)
local people = self._config:GetController('renshu')
@@ -350,4 +341,5 @@ function M:OnChangeOption(ctype)
end
)
end
+
return M
diff --git a/fk101/lua_probject/extend_project/extend/zipai/fulushou/EXGameInfo.lua b/fk101/lua_probject/extend_project/extend/zipai/fulushou/EXGameInfo.lua
index 8a7e3e96..e32eab34 100644
--- a/fk101/lua_probject/extend_project/extend/zipai/fulushou/EXGameInfo.lua
+++ b/fk101/lua_probject/extend_project/extend/zipai/fulushou/EXGameInfo.lua
@@ -3,144 +3,133 @@ local EXGameInfo = {}
local M = EXGameInfo
function EXGameInfo.new(blur_view)
- setmetatable(M, {__index = IGameInfo})
- local self = setmetatable({}, {__index = M})
- self.class = 'EXGameInfo'
- UIPackage.AddPackage('extend/zipai/fulushou/ui/Info_Poker_FuLuShou')
- return self
+ setmetatable(M, { __index = IGameInfo })
+ local self = setmetatable({}, { __index = M })
+ self.class = 'EXGameInfo'
+ UIPackage.AddPackage('extend/zipai/fulushou/ui/Info_Poker_FuLuShou')
+ return self
end
function M:FillData()
printlog("jefe fulushou")
- self._maxPlayer = 3 -- 默认玩家人数
- self._roundChoice = 2 -- 回合选项数
- self._config = UIPackage.CreateObjectFromURL('ui://Info_Poker_FuLuShou/Cgm_create_room')
- if oldGameVersion ==1 then
- self._config:GetController("xipai").selectedIndex=0
+ self._maxPlayer = 3 -- 默认玩家人数
+ self._roundChoice = 2 -- 回合选项数
+ self._config = UIPackage.CreateObjectFromURL('ui://Info_Poker_FuLuShou/Cgm_create_room')
+ if oldGameVersion == 1 then
+ self._config:GetController("xipai").selectedIndex = 0
end
-
- if oldGameVersion==2 then
- self._config:GetController("xipai").selectedIndex=1
-
- self.xipaiValueText=self._config:GetChild('xipaifen')
- self.xipaiValueText.text=1
- self.xipaiValue=1
- self.anchouValueText=self._config:GetChild('anchoufen')
- self.anchouValueText.text=1
- self.anchouValue=1
-
+ if oldGameVersion == 2 then
+ self._config:GetController("xipai").selectedIndex = 1
+
+ self.xipaiValueText = self._config:GetChild('xipaifen')
+ self.xipaiValueText.text = 1
+ self.xipaiValue = 1
+
+ self.anchouValueText = self._config:GetChild('anchoufen')
+ self.anchouValueText.text = 1
+ self.anchouValue = 1
+
local btn_cr = self._config:GetChild('sdsrbtn')
- btn_cr.onClick:Set(
- function()
-
- local gniv = GroupNumberInputView_Game.new(nil, function(num)
-
- local value = limit
- if otype == 1 then
- value = value + ad2d(num)
- elseif otype == - 1 then
- value = value - ad2d(num)
- else
- value = ad2d(num)
- end
-
- if value < 0 then
- ViewUtil.ErrorTip(1,"输入数据异常!")
- end
-
- self.xipaiValueText.text=value/1000
- self.xipaiValue=value/1000
-
- end, 3, nil)
- gniv:Show()
-
-
- end
- )
-
-
- local btn_cr2 = self._config:GetChild('anchoubtn')
- btn_cr2.onClick:Set(
+ btn_cr.onClick:Set(
function()
-
- local gniv = GroupNumberInputView_Game.new(nil, function(num)
-
+ local gniv = GroupNumberInputView_Game.new(nil, function(num)
local value = limit
if otype == 1 then
value = value + ad2d(num)
- elseif otype == - 1 then
+ elseif otype == -1 then
value = value - ad2d(num)
else
value = ad2d(num)
end
-
+
if value < 0 then
- ViewUtil.ErrorTip(1,"输入数据异常!")
+ ViewUtil.ErrorTip(1, "输入数据异常!")
end
-
- self.anchouValueText.text=value/1000
- self.anchouValue=value/1000
-
+
+ self.xipaiValueText.text = value / 1000
+ self.xipaiValue = value / 1000
end, 3, nil)
gniv:Show()
-
-
end
)
+
+ local btn_cr2 = self._config:GetChild('anchoubtn')
+ btn_cr2.onClick:Set(
+ function()
+ local gniv = GroupNumberInputView_Game.new(nil, function(num)
+ local value = limit
+ if otype == 1 then
+ value = value + ad2d(num)
+ elseif otype == -1 then
+ value = value - ad2d(num)
+ else
+ value = ad2d(num)
+ end
+
+ if value < 0 then
+ ViewUtil.ErrorTip(1, "输入数据异常!")
+ end
+
+ self.anchouValueText.text = value / 1000
+ self.anchouValue = value / 1000
+ end, 3, nil)
+ gniv:Show()
+ end
+ )
end
-
end
+
local _help_url = 'ui://Info_Poker_FuLuShou/Com_help'
function M:GetHelpUrl()
- return _help_url
+ return _help_url
end
local _icon_url = "ui://Info_Poker_FuLuShou/icon"
function M:GetIconUrl()
- return _icon_url
+ return _icon_url
end
-local _icon_url1 = "ui://Info_Poker_FuLuShou/icon1"
+local _icon_url1 = "ui://NewGroup/group_fulushou"
function M:GetIconUrl1()
- return _icon_url1
+ return _icon_url1
end
--local _play_list = {"三人玩法","二人玩法"}
function M:GetPlayList()
- --return _play_list
+ --return _play_list
end
function M:SelectedConfigData()
- local _config = self._config
- local round = _config:GetController('round').selectedIndex == 0 and 1 or 2
- local renshu = _config:GetController('play_list').selectedIndex +2
-
- local xuan_zhuang=_config:GetController('zhuangjia').selectedIndex
- local piao=_config:GetController('piao').selectedIndex
- local piao1=false
- local piao2=false
- local piao3=false
- local piao4=false
- if piao==3 then
- piao1=_config:GetChild('pf1').selected and true or false
- piao2=_config:GetChild('pf2').selected and true or false
- piao3=_config:GetChild('pf3').selected and true or false
- piao4=_config:GetChild('pf4').selected and true or false
+ local _config = self._config
+ local round = _config:GetController('round').selectedIndex == 0 and 1 or 2
+ local renshu = _config:GetController('play_list').selectedIndex + 2
+
+ local xuan_zhuang = _config:GetController('zhuangjia').selectedIndex
+ local piao = _config:GetController('piao').selectedIndex
+ local piao1 = false
+ local piao2 = false
+ local piao3 = false
+ local piao4 = false
+ if piao == 3 then
+ piao1 = _config:GetChild('pf1').selected and true or false
+ piao2 = _config:GetChild('pf2').selected and true or false
+ piao3 = _config:GetChild('pf3').selected and true or false
+ piao4 = _config:GetChild('pf4').selected and true or false
end
- local fen_diejia=_config:GetController('fen').selectedIndex
-
- local qing_zui_hu=_config:GetController('qinzuihu').selectedIndex
- local gang_zhao_liu_xi=_config:GetChild('gangzhao').selected and true or false
- local special_peng_peng_hu=_config:GetChild('pengpenghu').selected and true or false
-
+ local fen_diejia = _config:GetController('fen').selectedIndex
+
+ local qing_zui_hu = _config:GetController('qinzuihu').selectedIndex
+ local gang_zhao_liu_xi = _config:GetChild('gangzhao').selected and true or false
+ local special_peng_peng_hu = _config:GetChild('pengpenghu').selected and true or false
+
local piao_fen = _config:GetController('piaofen').selectedIndex
-
-
- local _data = {}
- _data['opt'] = round -- 1 2 8局 16 局
- _data['maxPlayers'] = renshu
+
+
+ local _data = {}
+ _data['opt'] = round -- 1 2 8局 16 局
+ _data['maxPlayers'] = renshu
_data['xuan_zhuang'] = xuan_zhuang
_data['piao'] = piao
_data['piao1'] = piao1
@@ -160,42 +149,42 @@ function M:SelectedConfigData()
elseif (piao_fen == 3) then
_data["piao_fen"] = 5
end
-
-
- local xi_pai=false
- if oldGameVersion ==2 then
- if _config:GetChild("xipai") then
+
+
+ local xi_pai = false
+ if oldGameVersion == 2 then
+ if _config:GetChild("xipai") then
xi_pai = _config:GetChild("xipai").selected
end
end
_data['xi_pai'] = xi_pai
-
- local xi_pai_score=0
- local an_chou_score=0
- if oldGameVersion==2 then
- xi_pai_score=self.xipaiValue
- an_chou_score=self.anchouValue
+ local xi_pai_score = 0
+ local an_chou_score = 0
+
+ if oldGameVersion == 2 then
+ xi_pai_score = self.xipaiValue
+ an_chou_score = self.anchouValue
end
-
- _data['xi_pai_score'] = xi_pai_score*1000
- _data['an_chou_score'] = an_chou_score*1000
-
-
- return _data
+
+ _data['xi_pai_score'] = xi_pai_score * 1000
+ _data['an_chou_score'] = an_chou_score * 1000
+
+
+ return _data
end
function M:LoadConfigData(data)
- local _config = self._config
+ local _config = self._config
- _config:GetController('play_list').selectedIndex = data.maxPlayers -2
- _config:GetController('round').selectedIndex = data.opt == 1 and 0 or 1
- _config:GetController('zhuangjia').selectedIndex= data.xuan_zhuang
- _config:GetController('piao').selectedIndex= data.piao
- _config:GetChild('pf1').selected=data.piao1
- _config:GetChild('pf2').selected=data.piao2
- _config:GetChild('pf3').selected=data.piao3
- _config:GetChild('pf4').selected=data.piao4
+ _config:GetController('play_list').selectedIndex = data.maxPlayers - 2
+ _config:GetController('round').selectedIndex = data.opt == 1 and 0 or 1
+ _config:GetController('zhuangjia').selectedIndex = data.xuan_zhuang
+ _config:GetController('piao').selectedIndex = data.piao
+ _config:GetChild('pf1').selected = data.piao1
+ _config:GetChild('pf2').selected = data.piao2
+ _config:GetChild('pf3').selected = data.piao3
+ _config:GetChild('pf4').selected = data.piao4
if (data.piao_fen == 1) then
_config:GetController('piaofen').selectedIndex = 0
@@ -207,37 +196,37 @@ function M:LoadConfigData(data)
_config:GetController('piaofen').selectedIndex = 3
end
-
-
- _config:GetController('fen').selectedIndex= data.fen_diejia
- _config:GetController('qinzuihu').selectedIndex= data.qing_zui_hu
+
+ _config:GetController('fen').selectedIndex = data.fen_diejia
+
+ _config:GetController('qinzuihu').selectedIndex = data.qing_zui_hu
_config:GetChild('gangzhao').selected = data.gang_zhao_liu_xi
- _config:GetChild('pengpenghu').selected= data.special_peng_peng_hu
-
- if _config:GetChild("xipai") then
- _config:GetChild("xipai").selected=data.xi_pai
- end
-
- if oldGameVersion==2 then
- self.xipaiValueText.text=data.xi_pai_score/1000
- self.xipaiValue=data.xi_pai_score/1000
+ _config:GetChild('pengpenghu').selected = data.special_peng_peng_hu
- self.anchouValueText.text=data.an_chou_score/1000
- self.anchouValue=data.an_chou_score/1000
+ if _config:GetChild("xipai") then
+ _config:GetChild("xipai").selected = data.xi_pai
+ end
+
+ if oldGameVersion == 2 then
+ self.xipaiValueText.text = data.xi_pai_score / 1000
+ self.xipaiValue = data.xi_pai_score / 1000
+
+ self.anchouValueText.text = data.an_chou_score / 1000
+ self.anchouValue = data.an_chou_score / 1000
end
-
end
function M:OnChangeOption(ctype)
- IGameInfo.OnChangeOption(self, ctype)
+ IGameInfo.OnChangeOption(self, ctype)
- local play_list = self._config:GetController('play_list')
- play_list.onChanged:Add(
- function()
- self._maxPlayer = play_list.selectedIndex +2
- self:ShowVariablePrice(ctype)
- end
- )
+ local play_list = self._config:GetController('play_list')
+ play_list.onChanged:Add(
+ function()
+ self._maxPlayer = play_list.selectedIndex + 2
+ self:ShowVariablePrice(ctype)
+ end
+ )
end
+
return M
diff --git a/fk101/lua_probject/extend_project/extend/zipai/yueyangwaihuzi/EXGameInfo.lua b/fk101/lua_probject/extend_project/extend/zipai/yueyangwaihuzi/EXGameInfo.lua
index 2e5ef647..c672f533 100644
--- a/fk101/lua_probject/extend_project/extend/zipai/yueyangwaihuzi/EXGameInfo.lua
+++ b/fk101/lua_probject/extend_project/extend/zipai/yueyangwaihuzi/EXGameInfo.lua
@@ -3,134 +3,124 @@ local EXGameInfo = {}
local M = EXGameInfo
function EXGameInfo.new(blur_view)
- setmetatable(M, {__index = IGameInfo})
- local self = setmetatable({}, {__index = M})
- self.class = 'EXGameInfo'
- UIPackage.AddPackage('extend/zipai/yueyangwaihuzi/ui/Info_Poker_YueYangWHZ')
- return self
+ setmetatable(M, { __index = IGameInfo })
+ local self = setmetatable({}, { __index = M })
+ self.class = 'EXGameInfo'
+ UIPackage.AddPackage('extend/zipai/yueyangwaihuzi/ui/Info_Poker_YueYangWHZ')
+ return self
end
function M:FillData()
- self._maxPlayer = 3 -- 默认玩家人数
- self._roundChoice = 2 -- 回合选项数
- self._config = UIPackage.CreateObjectFromURL('ui://Info_Poker_YueYangWHZ/Cgm_create_room')
-
- if oldGameVersion ==1 then
- self._config:GetController("xipai").selectedIndex=0
+ self._maxPlayer = 3 -- 默认玩家人数
+ self._roundChoice = 2 -- 回合选项数
+ self._config = UIPackage.CreateObjectFromURL('ui://Info_Poker_YueYangWHZ/Cgm_create_room')
+
+ if oldGameVersion == 1 then
+ self._config:GetController("xipai").selectedIndex = 0
end
-
- if oldGameVersion==2 then
- self._config:GetController("xipai").selectedIndex=1
-
- self.xipaiValueText=self._config:GetChild('xipaifen')
- self.xipaiValueText.text=1
- self.xipaiValue=1
- self.anchouValueText=self._config:GetChild('anchoufen')
- self.anchouValueText.text=1
- self.anchouValue=1
-
+ if oldGameVersion == 2 then
+ self._config:GetController("xipai").selectedIndex = 1
+
+ self.xipaiValueText = self._config:GetChild('xipaifen')
+ self.xipaiValueText.text = 1
+ self.xipaiValue = 1
+
+ self.anchouValueText = self._config:GetChild('anchoufen')
+ self.anchouValueText.text = 1
+ self.anchouValue = 1
+
local btn_cr = self._config:GetChild('sdsrbtn')
- btn_cr.onClick:Set(
- function()
-
- local gniv = GroupNumberInputView_Game.new(nil, function(num)
-
- local value = limit
- if otype == 1 then
- value = value + ad2d(num)
- elseif otype == - 1 then
- value = value - ad2d(num)
- else
- value = ad2d(num)
- end
-
- if value < 0 then
- ViewUtil.ErrorTip(1,"输入数据异常!")
- end
-
- self.xipaiValueText.text=value/1000
- self.xipaiValue=value/1000
-
- end, 3, nil)
- gniv:Show()
-
-
- end
- )
-
-
- local btn_cr2 = self._config:GetChild('anchoubtn')
- btn_cr2.onClick:Set(
+ btn_cr.onClick:Set(
function()
-
- local gniv = GroupNumberInputView_Game.new(nil, function(num)
-
+ local gniv = GroupNumberInputView_Game.new(nil, function(num)
local value = limit
if otype == 1 then
value = value + ad2d(num)
- elseif otype == - 1 then
+ elseif otype == -1 then
value = value - ad2d(num)
else
value = ad2d(num)
end
-
+
if value < 0 then
- ViewUtil.ErrorTip(1,"输入数据异常!")
+ ViewUtil.ErrorTip(1, "输入数据异常!")
end
-
- self.anchouValueText.text=value/1000
- self.anchouValue=value/1000
-
+
+ self.xipaiValueText.text = value / 1000
+ self.xipaiValue = value / 1000
+ end, 3, nil)
+ gniv:Show()
+ end
+ )
+
+
+ local btn_cr2 = self._config:GetChild('anchoubtn')
+ btn_cr2.onClick:Set(
+ function()
+ local gniv = GroupNumberInputView_Game.new(nil, function(num)
+ local value = limit
+ if otype == 1 then
+ value = value + ad2d(num)
+ elseif otype == -1 then
+ value = value - ad2d(num)
+ else
+ value = ad2d(num)
+ end
+
+ if value < 0 then
+ ViewUtil.ErrorTip(1, "输入数据异常!")
+ end
+
+ self.anchouValueText.text = value / 1000
+ self.anchouValue = value / 1000
end, 3, nil)
gniv:Show()
-
-
end
)
end
-
end
+
local _help_url = 'ui://Info_Poker_YueYangWHZ/Com_help'
function M:GetHelpUrl()
- return _help_url
+ return _help_url
end
local _icon_url = "ui://Info_Poker_YueYangWHZ/icon"
function M:GetIconUrl()
- return _icon_url
+ return _icon_url
end
-local _icon_url1 = "ui://Info_Poker_YueYangWHZ/icon1"
+local _icon_url1 = "ui://NewGroup/group_waihuzi"
function M:GetIconUrl1()
- return _icon_url1
+ return _icon_url1
end
--local _play_list = {"三人玩法","二人玩法"}
function M:GetPlayList()
- --return _play_list
+ --return _play_list
end
function M:SelectedConfigData()
- local _config = self._config
- local round = _config:GetController('round').selectedIndex == 0 and 1 or 2
- local renshu = _config:GetController('play_list').selectedIndex +2
-
- local kawai=_config:GetController('kawai').selectedIndex
- local piao=_config:GetController('piao').selectedIndex
- local first_rand_zhuang=_config:GetChild('suijizhuang').selected and true or false
- local zhuang_di_hu=_config:GetController('zdihu').selectedIndex
- local hao_config=_config:GetController('hao').selectedIndex
- local hao_jiabei=_config:GetController('jiabei').selectedIndex
- local ming_tang=_config:GetController('mingtang').selectedIndex
- local qupai=0
- if renshu==2 then
- qupai=_config:GetController('qupai').selectedIndex
+ local _config = self._config
+ local round = _config:GetController('round').selectedIndex == 0 and 1 or 2
+ local renshu = _config:GetController('play_list').selectedIndex + 2
+
+ local kawai = _config:GetController('kawai').selectedIndex
+ local piao = _config:GetController('piao').selectedIndex
+ local first_rand_zhuang = _config:GetChild('suijizhuang').selected and true or false
+ local zhuang_di_hu = _config:GetController('zdihu').selectedIndex
+ local hao_config = _config:GetController('hao').selectedIndex
+ local hao_jiabei = _config:GetController('jiabei').selectedIndex
+ local ming_tang = _config:GetController('mingtang').selectedIndex
+ local qupai = 0
+ if renshu == 2 then
+ qupai = _config:GetController('qupai').selectedIndex
end
-
- local _data = {}
- _data['opt'] = round -- 1 2 8局 16 局
- _data['maxPlayers'] = renshu
+
+ local _data = {}
+ _data['opt'] = round -- 1 2 8局 16 局
+ _data['maxPlayers'] = renshu
_data['kawai'] = kawai
_data['piao'] = piao
_data['zhuang_di_hu'] = zhuang_di_hu
@@ -139,66 +129,66 @@ function M:SelectedConfigData()
_data['ming_tang'] = ming_tang
_data['first_rand_zhuang'] = first_rand_zhuang
_data['qupai'] = qupai
-
- local xi_pai=false
- if oldGameVersion ==2 then
- if _config:GetChild("xipai") then
+
+ local xi_pai = false
+ if oldGameVersion == 2 then
+ if _config:GetChild("xipai") then
xi_pai = _config:GetChild("xipai").selected
end
end
_data['xi_pai'] = xi_pai
-
- local xi_pai_score=0
- local an_chou_score=0
- if oldGameVersion==2 then
- xi_pai_score=self.xipaiValue
- an_chou_score=self.anchouValue
+ local xi_pai_score = 0
+ local an_chou_score = 0
+
+ if oldGameVersion == 2 then
+ xi_pai_score = self.xipaiValue
+ an_chou_score = self.anchouValue
end
-
- _data['xi_pai_score'] = xi_pai_score*1000
- _data['an_chou_score'] = an_chou_score*1000
-
- return _data
+
+ _data['xi_pai_score'] = xi_pai_score * 1000
+ _data['an_chou_score'] = an_chou_score * 1000
+
+ return _data
end
function M:LoadConfigData(data)
- local _config = self._config
+ local _config = self._config
- _config:GetController('play_list').selectedIndex = data.maxPlayers -2
- _config:GetController('round').selectedIndex = data.opt == 1 and 0 or 1
- _config:GetController('kawai').selectedIndex=data.kawai
- _config:GetController('piao').selectedIndex=data.piao
- _config:GetChild('suijizhuang').selected =data.first_rand_zhuang
- _config:GetController('zdihu').selectedIndex=data.zhuang_di_hu
- _config:GetController('hao').selectedIndex=data.hao_config
- _config:GetController('jiabei').selectedIndex=data.hao_jiabei
- _config:GetController('mingtang').selectedIndex=data.ming_tang
- _config:GetController('qupai').selectedIndex=data.qupai
-
- if _config:GetChild("xipai") then
- _config:GetChild("xipai").selected=data.xi_pai
- end
-
- if oldGameVersion==2 then
- self.xipaiValueText.text=data.xi_pai_score/1000
- self.xipaiValue=data.xi_pai_score/1000
+ _config:GetController('play_list').selectedIndex = data.maxPlayers - 2
+ _config:GetController('round').selectedIndex = data.opt == 1 and 0 or 1
+ _config:GetController('kawai').selectedIndex = data.kawai
+ _config:GetController('piao').selectedIndex = data.piao
+ _config:GetChild('suijizhuang').selected = data.first_rand_zhuang
+ _config:GetController('zdihu').selectedIndex = data.zhuang_di_hu
+ _config:GetController('hao').selectedIndex = data.hao_config
+ _config:GetController('jiabei').selectedIndex = data.hao_jiabei
+ _config:GetController('mingtang').selectedIndex = data.ming_tang
+ _config:GetController('qupai').selectedIndex = data.qupai
- self.anchouValueText.text=data.an_chou_score/1000
- self.anchouValue=data.an_chou_score/1000
+ if _config:GetChild("xipai") then
+ _config:GetChild("xipai").selected = data.xi_pai
+ end
+
+ if oldGameVersion == 2 then
+ self.xipaiValueText.text = data.xi_pai_score / 1000
+ self.xipaiValue = data.xi_pai_score / 1000
+
+ self.anchouValueText.text = data.an_chou_score / 1000
+ self.anchouValue = data.an_chou_score / 1000
end
-
end
function M:OnChangeOption(ctype)
- IGameInfo.OnChangeOption(self, ctype)
+ IGameInfo.OnChangeOption(self, ctype)
- local play_list = self._config:GetController('play_list')
- play_list.onChanged:Add(
- function()
- self._maxPlayer = play_list.selectedIndex +2
- self:ShowVariablePrice(ctype)
- end
- )
+ local play_list = self._config:GetController('play_list')
+ play_list.onChanged:Add(
+ function()
+ self._maxPlayer = play_list.selectedIndex + 2
+ self:ShowVariablePrice(ctype)
+ end
+ )
end
+
return M
diff --git a/fk101/wb_new_ui/.objs/metas/2d9xdj6z/fn7fao.info b/fk101/wb_new_ui/.objs/metas/2d9xdj6z/fn7fao.info
index 2db68bf3..189027fb 100644
--- a/fk101/wb_new_ui/.objs/metas/2d9xdj6z/fn7fao.info
+++ b/fk101/wb_new_ui/.objs/metas/2d9xdj6z/fn7fao.info
@@ -1,7 +1,7 @@
{
"objectStatus": {
- "n28": {
- "collapsed": true
+ "n54_lwcl": {
+ "hidden": true
},
"n125_g8kk": {
"hidden": true
@@ -18,9 +18,6 @@
"n130_naup": {
"hidden": true
},
- "n54_lwcl": {
- "hidden": true
- },
"n50_lwcl": {
"hidden": true
},
diff --git a/fk101/wb_new_ui/assets/Lobby/Main.xml b/fk101/wb_new_ui/assets/Lobby/Main.xml
index a87c4d40..cd30e0e0 100644
--- a/fk101/wb_new_ui/assets/Lobby/Main.xml
+++ b/fk101/wb_new_ui/assets/Lobby/Main.xml
@@ -13,16 +13,6 @@
-
-
-
-
-
-
-
-
-
-
@@ -109,6 +99,17 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/fk101/wb_new_ui/assets/NewGroup/Main_GroupInfo.xml b/fk101/wb_new_ui/assets/NewGroup/Main_GroupInfo.xml
index 299f3249..eaaefd38 100644
--- a/fk101/wb_new_ui/assets/NewGroup/Main_GroupInfo.xml
+++ b/fk101/wb_new_ui/assets/NewGroup/Main_GroupInfo.xml
@@ -1,6 +1,6 @@
-
+
@@ -55,7 +55,7 @@
-
+
@@ -86,7 +86,7 @@
-
+
@@ -99,7 +99,6 @@
-
diff --git a/fk101/wb_new_ui/assets/NewGroup/component/Lst_info/Btn_Game_Type.xml b/fk101/wb_new_ui/assets/NewGroup/component/Lst_info/Btn_Game_Type.xml
index f945f869..9787782d 100644
--- a/fk101/wb_new_ui/assets/NewGroup/component/Lst_info/Btn_Game_Type.xml
+++ b/fk101/wb_new_ui/assets/NewGroup/component/Lst_info/Btn_Game_Type.xml
@@ -1,10 +1,12 @@
-
+
-
-
-
+
+
+
+
+
diff --git a/fk101/wb_new_ui/assets/NewGroup/images/group_changsha0.png b/fk101/wb_new_ui/assets/NewGroup/images/group_changsha0.png
new file mode 100644
index 00000000..a8b08e8d
Binary files /dev/null and b/fk101/wb_new_ui/assets/NewGroup/images/group_changsha0.png differ
diff --git a/fk101/wb_new_ui/assets/NewGroup/images/group_changsha1.png b/fk101/wb_new_ui/assets/NewGroup/images/group_changsha1.png
new file mode 100644
index 00000000..7643e425
Binary files /dev/null and b/fk101/wb_new_ui/assets/NewGroup/images/group_changsha1.png differ
diff --git a/fk101/wb_new_ui/assets/NewGroup/images/group_fulushou0.png b/fk101/wb_new_ui/assets/NewGroup/images/group_fulushou0.png
new file mode 100644
index 00000000..11aabd9f
Binary files /dev/null and b/fk101/wb_new_ui/assets/NewGroup/images/group_fulushou0.png differ
diff --git a/fk101/wb_new_ui/assets/NewGroup/images/group_fulushou1.png b/fk101/wb_new_ui/assets/NewGroup/images/group_fulushou1.png
new file mode 100644
index 00000000..efb16831
Binary files /dev/null and b/fk101/wb_new_ui/assets/NewGroup/images/group_fulushou1.png differ
diff --git a/fk101/wb_new_ui/assets/NewGroup/images/group_hongzhong0.png b/fk101/wb_new_ui/assets/NewGroup/images/group_hongzhong0.png
new file mode 100644
index 00000000..bfee9e6a
Binary files /dev/null and b/fk101/wb_new_ui/assets/NewGroup/images/group_hongzhong0.png differ
diff --git a/fk101/wb_new_ui/assets/NewGroup/images/group_hongzhong1.png b/fk101/wb_new_ui/assets/NewGroup/images/group_hongzhong1.png
new file mode 100644
index 00000000..485dfa76
Binary files /dev/null and b/fk101/wb_new_ui/assets/NewGroup/images/group_hongzhong1.png differ
diff --git a/fk101/wb_new_ui/assets/NewGroup/images/group_paodekuai0.png b/fk101/wb_new_ui/assets/NewGroup/images/group_paodekuai0.png
new file mode 100644
index 00000000..81d80cbb
Binary files /dev/null and b/fk101/wb_new_ui/assets/NewGroup/images/group_paodekuai0.png differ
diff --git a/fk101/wb_new_ui/assets/NewGroup/images/group_paodekuai1.png b/fk101/wb_new_ui/assets/NewGroup/images/group_paodekuai1.png
new file mode 100644
index 00000000..94fd5fd1
Binary files /dev/null and b/fk101/wb_new_ui/assets/NewGroup/images/group_paodekuai1.png differ
diff --git a/fk101/wb_new_ui/assets/NewGroup/images/group_paohuzi0.png b/fk101/wb_new_ui/assets/NewGroup/images/group_paohuzi0.png
new file mode 100644
index 00000000..291f98dc
Binary files /dev/null and b/fk101/wb_new_ui/assets/NewGroup/images/group_paohuzi0.png differ
diff --git a/fk101/wb_new_ui/assets/NewGroup/images/group_paohuzi1.png b/fk101/wb_new_ui/assets/NewGroup/images/group_paohuzi1.png
new file mode 100644
index 00000000..d176072b
Binary files /dev/null and b/fk101/wb_new_ui/assets/NewGroup/images/group_paohuzi1.png differ
diff --git a/fk101/wb_new_ui/assets/NewGroup/images/group_play0.png b/fk101/wb_new_ui/assets/NewGroup/images/group_play0.png
new file mode 100644
index 00000000..4c37b812
Binary files /dev/null and b/fk101/wb_new_ui/assets/NewGroup/images/group_play0.png differ
diff --git a/fk101/wb_new_ui/assets/NewGroup/images/group_play1.png b/fk101/wb_new_ui/assets/NewGroup/images/group_play1.png
new file mode 100644
index 00000000..31a56965
Binary files /dev/null and b/fk101/wb_new_ui/assets/NewGroup/images/group_play1.png differ
diff --git a/fk101/wb_new_ui/assets/NewGroup/images/group_quanbu0.png b/fk101/wb_new_ui/assets/NewGroup/images/group_quanbu0.png
new file mode 100644
index 00000000..6880ac40
Binary files /dev/null and b/fk101/wb_new_ui/assets/NewGroup/images/group_quanbu0.png differ
diff --git a/fk101/wb_new_ui/assets/NewGroup/images/group_quanbu1.png b/fk101/wb_new_ui/assets/NewGroup/images/group_quanbu1.png
new file mode 100644
index 00000000..6f782bec
Binary files /dev/null and b/fk101/wb_new_ui/assets/NewGroup/images/group_quanbu1.png differ
diff --git a/fk101/wb_new_ui/assets/NewGroup/images/group_waihuzi0.png b/fk101/wb_new_ui/assets/NewGroup/images/group_waihuzi0.png
new file mode 100644
index 00000000..fa562e8f
Binary files /dev/null and b/fk101/wb_new_ui/assets/NewGroup/images/group_waihuzi0.png differ
diff --git a/fk101/wb_new_ui/assets/NewGroup/images/group_waihuzi1.png b/fk101/wb_new_ui/assets/NewGroup/images/group_waihuzi1.png
new file mode 100644
index 00000000..b1cc77fd
Binary files /dev/null and b/fk101/wb_new_ui/assets/NewGroup/images/group_waihuzi1.png differ
diff --git a/fk101/wb_new_ui/assets/NewGroup/package.xml b/fk101/wb_new_ui/assets/NewGroup/package.xml
index ff554087..4f3d0cb2 100644
--- a/fk101/wb_new_ui/assets/NewGroup/package.xml
+++ b/fk101/wb_new_ui/assets/NewGroup/package.xml
@@ -824,6 +824,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/fk101/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_fui.bytes b/fk101/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_fui.bytes
index d8058ef8..076bb093 100644
Binary files a/fk101/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_fui.bytes and b/fk101/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_fui.bytes differ
diff --git a/fk101/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0.png b/fk101/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0.png
index e1fd4673..482c920e 100644
Binary files a/fk101/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0.png and b/fk101/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0.png differ
diff --git a/fk101/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_1.png b/fk101/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_1.png
index 68a0402c..f43cb6e9 100644
Binary files a/fk101/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_1.png and b/fk101/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_atlas0_1.png differ
diff --git a/fk101/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_fui.bytes b/fk101/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_fui.bytes
index 5eedad27..f2ac2f68 100644
Binary files a/fk101/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_fui.bytes and b/fk101/wb_unity_pro/Assets/ART/base/newgroup/ui/NewGroup_fui.bytes differ
diff --git a/fk101/wb_unity_pro/Logs/AssetImportWorker0.log b/fk101/wb_unity_pro/Logs/AssetImportWorker0.log
index d557e35a..93419421 100644
--- a/fk101/wb_unity_pro/Logs/AssetImportWorker0.log
+++ b/fk101/wb_unity_pro/Logs/AssetImportWorker0.log
@@ -2683,3 +2683,3290 @@ AssetImportParameters requested are different than current active one (requested
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.003342 seconds.
+Begin MonoManager ReloadAssembly
+Symbol file LoadedFromMemory is not a mono symbol file
+Native extension for WindowsStandalone 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.536 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1537ms)
+ BeginReloadAssembly (139ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (35ms)
+ EndReloadAssembly (1256ms)
+ LoadAssemblies (112ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (231ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (40ms)
+ SetupLoadedEditorAssemblies (838ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (13ms)
+ SetLoadedEditorAssemblies (1ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (48ms)
+ ProcessInitializeOnLoadAttributes (644ms)
+ ProcessInitializeOnLoadMethodAttributes (129ms)
+ AfterProcessingInitializeOnLoad (3ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (17ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.38 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 2831 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3303.
+Memory consumption went from 110.5 MB to 110.5 MB.
+Total: 6.655500 ms (FindLiveObjects: 0.225800 ms CreateObjectMapping: 0.583500 ms MarkObjects: 5.796200 ms DeleteObjects: 0.048800 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-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.003338 seconds.
+Begin MonoManager ReloadAssembly
+Symbol file LoadedFromMemory is not a mono symbol file
+Native extension for WindowsStandalone 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.454 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1454ms)
+ BeginReloadAssembly (143ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (11ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (34ms)
+ EndReloadAssembly (1218ms)
+ LoadAssemblies (92ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (219ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (41ms)
+ SetupLoadedEditorAssemblies (831ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (13ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (47ms)
+ ProcessInitializeOnLoadAttributes (643ms)
+ ProcessInitializeOnLoadMethodAttributes (123ms)
+ AfterProcessingInitializeOnLoad (2ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (16ms)
+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 2831 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3306.
+Memory consumption went from 110.6 MB to 110.5 MB.
+Total: 5.576200 ms (FindLiveObjects: 0.252100 ms CreateObjectMapping: 0.177600 ms MarkObjects: 5.044600 ms DeleteObjects: 0.100000 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-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.003635 seconds.
+Begin MonoManager ReloadAssembly
+Symbol file LoadedFromMemory is not a mono symbol file
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.50 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.430 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1431ms)
+ BeginReloadAssembly (141ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (34ms)
+ EndReloadAssembly (1200ms)
+ LoadAssemblies (95ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (205ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (38ms)
+ SetupLoadedEditorAssemblies (833ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (12ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (2ms)
+ BeforeProcessingInitializeOnLoad (49ms)
+ ProcessInitializeOnLoadAttributes (645ms)
+ ProcessInitializeOnLoadMethodAttributes (122ms)
+ AfterProcessingInitializeOnLoad (3ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (16ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.02 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 2831 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3309.
+Memory consumption went from 110.6 MB to 110.5 MB.
+Total: 6.176600 ms (FindLiveObjects: 0.228000 ms CreateObjectMapping: 0.147600 ms MarkObjects: 5.757300 ms DeleteObjects: 0.042500 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-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.003811 seconds.
+Begin MonoManager ReloadAssembly
+Symbol file LoadedFromMemory is not a mono symbol file
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.432 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1433ms)
+ BeginReloadAssembly (142ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (39ms)
+ EndReloadAssembly (1200ms)
+ LoadAssemblies (89ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (205ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (39ms)
+ SetupLoadedEditorAssemblies (839ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (13ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (48ms)
+ ProcessInitializeOnLoadAttributes (651ms)
+ ProcessInitializeOnLoadMethodAttributes (124ms)
+ AfterProcessingInitializeOnLoad (2ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (16ms)
+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 2831 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3312.
+Memory consumption went from 110.6 MB to 110.5 MB.
+Total: 5.572800 ms (FindLiveObjects: 0.226300 ms CreateObjectMapping: 0.141600 ms MarkObjects: 5.163500 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:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-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.003325 seconds.
+Begin MonoManager ReloadAssembly
+Symbol file LoadedFromMemory is not a mono symbol file
+Native extension for WindowsStandalone 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.443 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1444ms)
+ BeginReloadAssembly (143ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (5ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (33ms)
+ EndReloadAssembly (1204ms)
+ LoadAssemblies (98ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (208ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (46ms)
+ SetupLoadedEditorAssemblies (827ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (13ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (45ms)
+ ProcessInitializeOnLoadAttributes (644ms)
+ ProcessInitializeOnLoadMethodAttributes (122ms)
+ AfterProcessingInitializeOnLoad (2ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (18ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.50 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 2831 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3315.
+Memory consumption went from 110.6 MB to 110.6 MB.
+Total: 6.609900 ms (FindLiveObjects: 0.275500 ms CreateObjectMapping: 0.213600 ms MarkObjects: 6.070800 ms DeleteObjects: 0.048600 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-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.003814 seconds.
+Begin MonoManager ReloadAssembly
+Symbol file LoadedFromMemory is not a mono symbol file
+Native extension for WindowsStandalone 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.416 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1417ms)
+ BeginReloadAssembly (135ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (5ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (33ms)
+ EndReloadAssembly (1192ms)
+ LoadAssemblies (89ms)
+ RebuildTransferFunctionScriptingTraits (1ms)
+ SetupTypeCache (211ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (38ms)
+ SetupLoadedEditorAssemblies (823ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (12ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (45ms)
+ ProcessInitializeOnLoadAttributes (633ms)
+ ProcessInitializeOnLoadMethodAttributes (128ms)
+ AfterProcessingInitializeOnLoad (3ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (16ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.22 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 2831 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3318.
+Memory consumption went from 110.6 MB to 110.6 MB.
+Total: 6.717800 ms (FindLiveObjects: 0.221400 ms CreateObjectMapping: 0.118100 ms MarkObjects: 6.331900 ms DeleteObjects: 0.045000 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-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.003463 seconds.
+Begin MonoManager ReloadAssembly
+Symbol file LoadedFromMemory is not a mono symbol file
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.21 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.434 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1434ms)
+ BeginReloadAssembly (141ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (34ms)
+ EndReloadAssembly (1196ms)
+ LoadAssemblies (90ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (208ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (39ms)
+ SetupLoadedEditorAssemblies (831ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (13ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (44ms)
+ ProcessInitializeOnLoadAttributes (644ms)
+ ProcessInitializeOnLoadMethodAttributes (126ms)
+ AfterProcessingInitializeOnLoad (2ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (16ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 2831 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3321.
+Memory consumption went from 110.6 MB to 110.6 MB.
+Total: 6.205700 ms (FindLiveObjects: 0.230200 ms CreateObjectMapping: 0.136100 ms MarkObjects: 5.787400 ms DeleteObjects: 0.050800 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-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.003475 seconds.
+Begin MonoManager ReloadAssembly
+Symbol file LoadedFromMemory is not a mono symbol file
+Native extension for WindowsStandalone 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.430 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1430ms)
+ BeginReloadAssembly (145ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (37ms)
+ EndReloadAssembly (1197ms)
+ LoadAssemblies (95ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (210ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (38ms)
+ SetupLoadedEditorAssemblies (829ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (13ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (44ms)
+ ProcessInitializeOnLoadAttributes (641ms)
+ ProcessInitializeOnLoadMethodAttributes (126ms)
+ AfterProcessingInitializeOnLoad (3ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (16ms)
+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 2831 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3324.
+Memory consumption went from 110.6 MB to 110.6 MB.
+Total: 6.356500 ms (FindLiveObjects: 0.241700 ms CreateObjectMapping: 0.157300 ms MarkObjects: 5.903900 ms DeleteObjects: 0.052100 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-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.003314 seconds.
+Begin MonoManager ReloadAssembly
+Symbol file LoadedFromMemory is not a mono symbol file
+Native extension for WindowsStandalone 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.473 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1474ms)
+ BeginReloadAssembly (137ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (33ms)
+ EndReloadAssembly (1238ms)
+ LoadAssemblies (90ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (248ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (41ms)
+ SetupLoadedEditorAssemblies (830ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (13ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (45ms)
+ ProcessInitializeOnLoadAttributes (647ms)
+ ProcessInitializeOnLoadMethodAttributes (121ms)
+ AfterProcessingInitializeOnLoad (3ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (16ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.51 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 2831 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3327.
+Memory consumption went from 110.6 MB to 110.6 MB.
+Total: 6.406600 ms (FindLiveObjects: 0.227200 ms CreateObjectMapping: 0.136600 ms MarkObjects: 5.999600 ms DeleteObjects: 0.042500 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-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.003932 seconds.
+Begin MonoManager ReloadAssembly
+Symbol file LoadedFromMemory is not a mono symbol file
+Native extension for WindowsStandalone 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.442 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1443ms)
+ BeginReloadAssembly (137ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (33ms)
+ EndReloadAssembly (1215ms)
+ LoadAssemblies (97ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (207ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (39ms)
+ SetupLoadedEditorAssemblies (839ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (13ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (46ms)
+ ProcessInitializeOnLoadAttributes (639ms)
+ ProcessInitializeOnLoadMethodAttributes (138ms)
+ AfterProcessingInitializeOnLoad (2ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (16ms)
+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 2831 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3330.
+Memory consumption went from 110.6 MB to 110.6 MB.
+Total: 6.609800 ms (FindLiveObjects: 0.252200 ms CreateObjectMapping: 0.152100 ms MarkObjects: 6.158600 ms DeleteObjects: 0.045700 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-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.003406 seconds.
+Begin MonoManager ReloadAssembly
+Symbol file LoadedFromMemory is not a mono symbol file
+Native extension for WindowsStandalone 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.457 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1458ms)
+ BeginReloadAssembly (139ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (33ms)
+ EndReloadAssembly (1227ms)
+ LoadAssemblies (90ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (212ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (39ms)
+ SetupLoadedEditorAssemblies (855ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (15ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (49ms)
+ ProcessInitializeOnLoadAttributes (663ms)
+ ProcessInitializeOnLoadMethodAttributes (124ms)
+ AfterProcessingInitializeOnLoad (3ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (17ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.02 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 2831 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3333.
+Memory consumption went from 110.6 MB to 110.6 MB.
+Total: 5.546800 ms (FindLiveObjects: 0.240700 ms CreateObjectMapping: 0.153400 ms MarkObjects: 5.109200 ms DeleteObjects: 0.042100 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-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.003571 seconds.
+Begin MonoManager ReloadAssembly
+Symbol file LoadedFromMemory is not a mono symbol file
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 2.83 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Completed reload, in 1.516 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1517ms)
+ BeginReloadAssembly (151ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (36ms)
+ EndReloadAssembly (1264ms)
+ LoadAssemblies (100ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (228ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (42ms)
+ SetupLoadedEditorAssemblies (868ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (12ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (3ms)
+ BeforeProcessingInitializeOnLoad (47ms)
+ ProcessInitializeOnLoadAttributes (666ms)
+ ProcessInitializeOnLoadMethodAttributes (136ms)
+ AfterProcessingInitializeOnLoad (3ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (18ms)
+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 2831 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3336.
+Memory consumption went from 110.6 MB to 110.6 MB.
+Total: 7.826000 ms (FindLiveObjects: 0.268300 ms CreateObjectMapping: 0.188300 ms MarkObjects: 7.320400 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:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-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.006759 seconds.
+Begin MonoManager ReloadAssembly
+Symbol file LoadedFromMemory is not a mono symbol file
+Native extension for WindowsStandalone 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.508 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1508ms)
+ BeginReloadAssembly (154ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (36ms)
+ EndReloadAssembly (1246ms)
+ LoadAssemblies (108ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (228ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (43ms)
+ SetupLoadedEditorAssemblies (848ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (14ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (48ms)
+ ProcessInitializeOnLoadAttributes (653ms)
+ ProcessInitializeOnLoadMethodAttributes (129ms)
+ AfterProcessingInitializeOnLoad (2ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (17ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.03 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 2831 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 98 unused Assets / (25.0 KB). Loaded Objects now: 3339.
+Memory consumption went from 110.6 MB to 110.6 MB.
+Total: 5.389900 ms (FindLiveObjects: 0.236100 ms CreateObjectMapping: 0.154800 ms MarkObjects: 4.960300 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:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-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.004110 seconds.
+Begin MonoManager ReloadAssembly
+Symbol file LoadedFromMemory is not a mono symbol file
+Native extension for WindowsStandalone 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.567 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1568ms)
+ BeginReloadAssembly (153ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (5ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (41ms)
+ EndReloadAssembly (1310ms)
+ LoadAssemblies (104ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (238ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (47ms)
+ SetupLoadedEditorAssemblies (882ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (14ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (55ms)
+ ProcessInitializeOnLoadAttributes (672ms)
+ ProcessInitializeOnLoadMethodAttributes (136ms)
+ AfterProcessingInitializeOnLoad (3ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (18ms)
+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 2831 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3342.
+Memory consumption went from 110.7 MB to 110.6 MB.
+Total: 7.231500 ms (FindLiveObjects: 0.269400 ms CreateObjectMapping: 0.211500 ms MarkObjects: 6.704600 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:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-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.003589 seconds.
+Begin MonoManager ReloadAssembly
+Symbol file LoadedFromMemory is not a mono symbol file
+Native extension for WindowsStandalone target not found
+Native extension for Android target not found
+Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched 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 (1636ms)
+ BeginReloadAssembly (150ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (7ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (36ms)
+ EndReloadAssembly (1300ms)
+ LoadAssemblies (103ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (224ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (44ms)
+ SetupLoadedEditorAssemblies (872ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (15ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (49ms)
+ ProcessInitializeOnLoadAttributes (667ms)
+ ProcessInitializeOnLoadMethodAttributes (137ms)
+ AfterProcessingInitializeOnLoad (3ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (19ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.29 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 2831 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3345.
+Memory consumption went from 110.7 MB to 110.6 MB.
+Total: 6.275500 ms (FindLiveObjects: 0.240700 ms CreateObjectMapping: 0.154200 ms MarkObjects: 5.834400 ms DeleteObjects: 0.045000 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-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.004847 seconds.
+Begin MonoManager ReloadAssembly
+Symbol file LoadedFromMemory is not a mono symbol file
+Native extension for WindowsStandalone 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.823 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1824ms)
+ BeginReloadAssembly (363ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (40ms)
+ EndReloadAssembly (1301ms)
+ LoadAssemblies (314ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (237ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (42ms)
+ SetupLoadedEditorAssemblies (878ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (14ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (62ms)
+ ProcessInitializeOnLoadAttributes (669ms)
+ ProcessInitializeOnLoadMethodAttributes (129ms)
+ AfterProcessingInitializeOnLoad (2ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (16ms)
+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 2831 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3348.
+Memory consumption went from 110.7 MB to 110.6 MB.
+Total: 6.671700 ms (FindLiveObjects: 0.237900 ms CreateObjectMapping: 0.150900 ms MarkObjects: 6.236500 ms DeleteObjects: 0.045200 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-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.011414 seconds.
+Begin MonoManager ReloadAssembly
+Symbol file LoadedFromMemory is not a mono symbol file
+Native extension for WindowsStandalone 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.796 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1796ms)
+ BeginReloadAssembly (173ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (6ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (41ms)
+ EndReloadAssembly (1524ms)
+ LoadAssemblies (104ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (398ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (53ms)
+ SetupLoadedEditorAssemblies (934ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (14ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (49ms)
+ ProcessInitializeOnLoadAttributes (733ms)
+ ProcessInitializeOnLoadMethodAttributes (135ms)
+ AfterProcessingInitializeOnLoad (2ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (18ms)
+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 2831 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3351.
+Memory consumption went from 110.7 MB to 110.7 MB.
+Total: 5.656200 ms (FindLiveObjects: 0.375600 ms CreateObjectMapping: 0.190700 ms MarkObjects: 5.045100 ms DeleteObjects: 0.043800 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-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.006337 seconds.
+Begin MonoManager ReloadAssembly
+Symbol file LoadedFromMemory is not a mono symbol file
+Native extension for WindowsStandalone 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.476 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1477ms)
+ BeginReloadAssembly (144ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (5ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (38ms)
+ EndReloadAssembly (1235ms)
+ LoadAssemblies (95ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (221ms)
+ ReleaseScriptCaches (1ms)
+ RebuildScriptCaches (44ms)
+ SetupLoadedEditorAssemblies (843ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (14ms)
+ SetLoadedEditorAssemblies (0ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (47ms)
+ ProcessInitializeOnLoadAttributes (653ms)
+ ProcessInitializeOnLoadMethodAttributes (125ms)
+ AfterProcessingInitializeOnLoad (3ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (16ms)
+Platform modules already initialized, skipping
+Refreshing native plugins compatible for Editor in 1.36 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 2831 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3354.
+Memory consumption went from 110.7 MB to 110.7 MB.
+Total: 6.088200 ms (FindLiveObjects: 0.237700 ms CreateObjectMapping: 0.144600 ms MarkObjects: 5.663400 ms DeleteObjects: 0.041000 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-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: 16019.886428 seconds.
+ path: Assets/ART/base/chat/ui
+ artifactKey: Guid(671285df07e3cea4f9b6c8efc61ce111) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/chat/ui using Guid(671285df07e3cea4f9b6c8efc61ce111) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '739045c48045756176f59e3a4d77ae9e') in 0.039148 seconds
+Number of asset objects unloaded after import = 0
+========================================================================
+Received Import Request.
+ Time since last request: 3.924196 seconds.
+ path: Assets/ART/base/chat/ui/Chat_atlas0.png
+ artifactKey: Guid(826a06fbec3baea41946ba36f4ad982c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/chat/ui/Chat_atlas0.png using Guid(826a06fbec3baea41946ba36f4ad982c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bc06b6a6e4a3f5723ff0a9423f63f670') in 0.060253 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 252.223043 seconds.
+ path: Assets/ART/base/chat/ui/Chat_atlas0.png
+ artifactKey: Guid(826a06fbec3baea41946ba36f4ad982c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/chat/ui/Chat_atlas0.png using Guid(826a06fbec3baea41946ba36f4ad982c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6b853e2e522387cdbe6aa620e7e2268d') in 0.013311 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 6.167608 seconds.
+ path: Assets/ART/base/common/ui/Common_atlas0.png
+ artifactKey: Guid(1bcf5d260b67bdc4284f1a7be280d9e6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/common/ui/Common_atlas0.png using Guid(1bcf5d260b67bdc4284f1a7be280d9e6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8c49451b6c4889e3243b319d20a3838d') in 0.040293 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000016 seconds.
+ path: Assets/ART/base/common/ui/Common_atlas0_14.png
+ artifactKey: Guid(a076023144759ed4d94ccb70935c4391) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/common/ui/Common_atlas0_14.png using Guid(a076023144759ed4d94ccb70935c4391) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fc2d6e2ad90b714441435b0389df9ed8') in 0.074444 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000015 seconds.
+ path: Assets/ART/base/common/ui/Common_atlas0_7.png
+ artifactKey: Guid(e6050b4ce5570c94f9bf26dab081abad) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/common/ui/Common_atlas0_7.png using Guid(e6050b4ce5570c94f9bf26dab081abad) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '15316a0ec144ee1e172fcafc13600c86') in 0.058924 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000016 seconds.
+ path: Assets/ART/base/common/ui/Common_atlas0_9.png
+ artifactKey: Guid(91215a7ce6a378041ae0683cb7390b3b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/common/ui/Common_atlas0_9.png using Guid(91215a7ce6a378041ae0683cb7390b3b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e0facea9b42ae4fbc50423b1b0ebee25') in 0.046529 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000022 seconds.
+ path: Assets/ART/base/common/ui/Common_atlas0_13.png
+ artifactKey: Guid(f9b7bc5e615fe9c45b2fd38724d534b9) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/common/ui/Common_atlas0_13.png using Guid(f9b7bc5e615fe9c45b2fd38724d534b9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '33fd67c172524de26d18c01d25a1069f') in 0.048250 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000017 seconds.
+ path: Assets/ART/base/common/ui/Common_atlas0_1.png
+ artifactKey: Guid(1ea7d8999eeb34c4c934e67d1861a874) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/common/ui/Common_atlas0_1.png using Guid(1ea7d8999eeb34c4c934e67d1861a874) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '20af12e4d567d644c3d93452957ff6ed') in 0.042550 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000014 seconds.
+ path: Assets/ART/base/common/ui/Common_atlas0_2.png
+ artifactKey: Guid(a47559180c9aeb5409018c5641a386c7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/common/ui/Common_atlas0_2.png using Guid(a47559180c9aeb5409018c5641a386c7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8feca805c86d8f5a0fe819eb9363c1ab') in 0.045222 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000017 seconds.
+ path: Assets/ART/base/common/ui/Common_atlas0_3.png
+ artifactKey: Guid(4043b7ebd6c17a54aa374bd1ded29142) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/common/ui/Common_atlas0_3.png using Guid(4043b7ebd6c17a54aa374bd1ded29142) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '533871bb3439944f85b1ceace46bf8ca') in 0.045248 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000016 seconds.
+ path: Assets/ART/base/common/ui/Common_atlas0_12.png
+ artifactKey: Guid(09a2e3cfab90ca74c88ff11d38f1776d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/common/ui/Common_atlas0_12.png using Guid(09a2e3cfab90ca74c88ff11d38f1776d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dfebc3a71cfd34df13997888cd6340cd') in 0.045155 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000046 seconds.
+ path: Assets/ART/base/common/ui/Common_e0dy8k.mp3
+ artifactKey: Guid(5d7456d69076cdb4b94444edd7ea83b4) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/common/ui/Common_e0dy8k.mp3 using Guid(5d7456d69076cdb4b94444edd7ea83b4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b684dd35a264c1d3727c8d91540bbd16') in 0.157745 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000030 seconds.
+ path: Assets/ART/base/common/ui/Common_e0dy8j.mp3
+ artifactKey: Guid(05351b5a6cb8f594c9125eea586d22db) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/common/ui/Common_e0dy8j.mp3 using Guid(05351b5a6cb8f594c9125eea586d22db) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a071c8fa18bbdd59420cb79379458bfe') in 0.116774 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000016 seconds.
+ path: Assets/ART/base/common/ui/Common_atlas0_10.png
+ artifactKey: Guid(eacd743de42667c48b651739f99173cd) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/common/ui/Common_atlas0_10.png using Guid(eacd743de42667c48b651739f99173cd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fd275c79aa7daecdfdbe7066433f1b14') in 0.048525 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000017 seconds.
+ path: Assets/ART/base/common/ui/Common_atlas0_6.png
+ artifactKey: Guid(0a55f361906b9634988065b9d4587e82) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/common/ui/Common_atlas0_6.png using Guid(0a55f361906b9634988065b9d4587e82) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '70772792b052b6887edccdaf237bb9d8') in 0.051047 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000017 seconds.
+ path: Assets/ART/base/common/ui/Common_nj998s.mp3
+ artifactKey: Guid(3e22ae82bf2cbf343ad2c3d241ab0c73) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/common/ui/Common_nj998s.mp3 using Guid(3e22ae82bf2cbf343ad2c3d241ab0c73) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4a58237fc962eeeb59ef9a9945fbae7c') in 0.064331 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000026 seconds.
+ path: Assets/ART/base/common/ui/Common_atlas0_8.png
+ artifactKey: Guid(5a3d16d377250c846baa7ac302c5cb97) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/common/ui/Common_atlas0_8.png using Guid(5a3d16d377250c846baa7ac302c5cb97) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1cdcbb090241b6279111e3a9fe58d61c') in 0.060385 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000017 seconds.
+ path: Assets/ART/base/common/ui/Common_e0dy8l.mp3
+ artifactKey: Guid(052c6d1f7419fee4d9be0da02e97bb28) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/common/ui/Common_e0dy8l.mp3 using Guid(052c6d1f7419fee4d9be0da02e97bb28) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f002c4e36bdc91485177e3cbc525a7e8') in 0.056903 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000016 seconds.
+ path: Assets/ART/base/common/ui/Common_atlas0_4.png
+ artifactKey: Guid(317937bd58615164e8087c83d07d7f97) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/common/ui/Common_atlas0_4.png using Guid(317937bd58615164e8087c83d07d7f97) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '49fe984b29d195dd6814bc22dbfef1c6') in 0.053383 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000017 seconds.
+ path: Assets/ART/base/common/ui/Common_atlas1.png
+ artifactKey: Guid(ef7ca451ea5e8d745a3fa7a89ed016d3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/common/ui/Common_atlas1.png using Guid(ef7ca451ea5e8d745a3fa7a89ed016d3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '16d5a8dfd170c502a04f1eb7049c5c74') in 0.044504 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000019 seconds.
+ path: Assets/ART/base/common/ui/Common_atlas0_11.png
+ artifactKey: Guid(5d00c54e5b863cd4ea8b44106c8a4dc8) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/common/ui/Common_atlas0_11.png using Guid(5d00c54e5b863cd4ea8b44106c8a4dc8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4e6cb50e794da04bba9bf32d324a4241') in 0.048992 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000022 seconds.
+ path: Assets/ART/base/common/ui/Common_atlas0_5.png
+ artifactKey: Guid(7378b33948da1694b9d1b2cd79669b9d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/common/ui/Common_atlas0_5.png using Guid(7378b33948da1694b9d1b2cd79669b9d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd5a35dc1f38280848efd7ccbb94fdee4') in 0.047521 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000016 seconds.
+ path: Assets/ART/base/common/ui/Common_e0dy8m.mp3
+ artifactKey: Guid(991dece0a3a6c3e4081394bc97d94152) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/common/ui/Common_e0dy8m.mp3 using Guid(991dece0a3a6c3e4081394bc97d94152) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '057c95a20a45c3b321f890ada350f407') in 0.031822 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 5958.116577 seconds.
+ path: Assets/ART/base/common/ui/Common_atlas0.png
+ artifactKey: Guid(1bcf5d260b67bdc4284f1a7be280d9e6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/common/ui/Common_atlas0.png using Guid(1bcf5d260b67bdc4284f1a7be280d9e6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0438be79279a45429e12526e67f58e62') in 0.158818 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000025 seconds.
+ path: Assets/ART/base/common/ui/Common_atlas0_14.png
+ artifactKey: Guid(a076023144759ed4d94ccb70935c4391) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/common/ui/Common_atlas0_14.png using Guid(a076023144759ed4d94ccb70935c4391) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5734578f3ef56964cbd709ded0501dc9') in 0.200549 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000022 seconds.
+ path: Assets/ART/base/common/ui/Common_atlas0_7.png
+ artifactKey: Guid(e6050b4ce5570c94f9bf26dab081abad) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/common/ui/Common_atlas0_7.png using Guid(e6050b4ce5570c94f9bf26dab081abad) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '85280dd056dc42aad3a9efa1e1684f46') in 0.049167 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000015 seconds.
+ path: Assets/ART/base/common/ui/Common_atlas0_9.png
+ artifactKey: Guid(91215a7ce6a378041ae0683cb7390b3b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/common/ui/Common_atlas0_9.png using Guid(91215a7ce6a378041ae0683cb7390b3b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1d8d0ead2d956d0dcae64fcfb642c5ae') in 0.044841 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000015 seconds.
+ path: Assets/ART/base/common/ui/Common_atlas0_13.png
+ artifactKey: Guid(f9b7bc5e615fe9c45b2fd38724d534b9) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/common/ui/Common_atlas0_13.png using Guid(f9b7bc5e615fe9c45b2fd38724d534b9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c9335a23d567483d5bd60898f59a917b') in 0.042502 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000019 seconds.
+ path: Assets/ART/base/common/ui/Common_atlas0_1.png
+ artifactKey: Guid(1ea7d8999eeb34c4c934e67d1861a874) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/common/ui/Common_atlas0_1.png using Guid(1ea7d8999eeb34c4c934e67d1861a874) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '06563f30dc13445352ad868b2d6f0926') in 0.047213 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000014 seconds.
+ path: Assets/ART/base/common/ui/Common_atlas0_2.png
+ artifactKey: Guid(a47559180c9aeb5409018c5641a386c7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/common/ui/Common_atlas0_2.png using Guid(a47559180c9aeb5409018c5641a386c7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9f0874603ee12940d8d1c65e0ebf11a1') in 0.042964 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000018 seconds.
+ path: Assets/ART/base/common/ui/Common_atlas0_3.png
+ artifactKey: Guid(4043b7ebd6c17a54aa374bd1ded29142) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/common/ui/Common_atlas0_3.png using Guid(4043b7ebd6c17a54aa374bd1ded29142) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7ef8cc7475ce824e0108944c1f843f32') in 0.055008 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000021 seconds.
+ path: Assets/ART/base/common/ui/Common_atlas0_12.png
+ artifactKey: Guid(09a2e3cfab90ca74c88ff11d38f1776d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/common/ui/Common_atlas0_12.png using Guid(09a2e3cfab90ca74c88ff11d38f1776d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '729f87f31dd9fe2fda1f2a3a0fdbf01c') in 0.045377 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000015 seconds.
+ path: Assets/ART/base/common/ui/Common_atlas0_10.png
+ artifactKey: Guid(eacd743de42667c48b651739f99173cd) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/common/ui/Common_atlas0_10.png using Guid(eacd743de42667c48b651739f99173cd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c96d10b8a22b6eaffacd1d0585a35c92') in 0.044978 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000015 seconds.
+ path: Assets/ART/base/common/ui/Common_atlas0_6.png
+ artifactKey: Guid(0a55f361906b9634988065b9d4587e82) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/common/ui/Common_atlas0_6.png using Guid(0a55f361906b9634988065b9d4587e82) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '370c404bb5e48b4315043ee6b0190290') in 0.043762 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000015 seconds.
+ path: Assets/ART/base/common/ui/Common_atlas0_8.png
+ artifactKey: Guid(5a3d16d377250c846baa7ac302c5cb97) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/common/ui/Common_atlas0_8.png using Guid(5a3d16d377250c846baa7ac302c5cb97) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cbe4378840d6389b8c219b39de6b6a60') in 0.044583 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000014 seconds.
+ path: Assets/ART/base/common/ui/Common_atlas0_4.png
+ artifactKey: Guid(317937bd58615164e8087c83d07d7f97) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/common/ui/Common_atlas0_4.png using Guid(317937bd58615164e8087c83d07d7f97) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '21fe741373ebcaea4a8542174309d62c') in 0.042789 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000015 seconds.
+ path: Assets/ART/base/common/ui/Common_atlas1.png
+ artifactKey: Guid(ef7ca451ea5e8d745a3fa7a89ed016d3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/common/ui/Common_atlas1.png using Guid(ef7ca451ea5e8d745a3fa7a89ed016d3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '55a7988ed15c7865643e612daf76a565') in 0.007620 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000024 seconds.
+ path: Assets/ART/base/common/ui/Common_atlas0_11.png
+ artifactKey: Guid(5d00c54e5b863cd4ea8b44106c8a4dc8) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/common/ui/Common_atlas0_11.png using Guid(5d00c54e5b863cd4ea8b44106c8a4dc8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4bb693126d6cd4346b3c8a342e75e13f') in 0.043852 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000015 seconds.
+ path: Assets/ART/base/common/ui/Common_atlas0_5.png
+ artifactKey: Guid(7378b33948da1694b9d1b2cd79669b9d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/common/ui/Common_atlas0_5.png using Guid(7378b33948da1694b9d1b2cd79669b9d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ec3e7a34b8e104b861cd7ef0a79f0db7') in 0.044100 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Prepare
+Refreshing native plugins compatible for Editor in 18.93 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 96 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 96 unused Assets / (25.0 KB). Loaded Objects now: 3364.
+Memory consumption went from 60.5 MB to 60.5 MB.
+Total: 9.794700 ms (FindLiveObjects: 0.257000 ms CreateObjectMapping: 0.147100 ms MarkObjects: 9.345200 ms DeleteObjects: 0.043700 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Refreshing native plugins compatible for Editor in 12.75 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: 3364.
+Memory consumption went from 60.5 MB to 60.5 MB.
+Total: 7.040800 ms (FindLiveObjects: 0.226600 ms CreateObjectMapping: 0.147300 ms MarkObjects: 6.625400 ms DeleteObjects: 0.040100 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Refreshing native plugins compatible for Editor in 15.57 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: 3364.
+Memory consumption went from 60.5 MB to 60.5 MB.
+Total: 6.150400 ms (FindLiveObjects: 0.312200 ms CreateObjectMapping: 0.240300 ms MarkObjects: 5.549900 ms DeleteObjects: 0.046800 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Refreshing native plugins compatible for Editor in 13.10 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 96 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 96 unused Assets / (25.0 KB). Loaded Objects now: 3364.
+Memory consumption went from 60.5 MB to 60.5 MB.
+Total: 5.714700 ms (FindLiveObjects: 0.228600 ms CreateObjectMapping: 0.146300 ms MarkObjects: 5.297000 ms DeleteObjects: 0.041800 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Refreshing native plugins compatible for Editor in 12.53 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 96 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 96 unused Assets / (25.0 KB). Loaded Objects now: 3364.
+Memory consumption went from 60.5 MB to 60.5 MB.
+Total: 8.103800 ms (FindLiveObjects: 1.353300 ms CreateObjectMapping: 0.206400 ms MarkObjects: 6.491500 ms DeleteObjects: 0.051800 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Refreshing native plugins compatible for Editor in 12.97 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: 3364.
+Memory consumption went from 60.5 MB to 60.5 MB.
+Total: 5.914000 ms (FindLiveObjects: 0.233100 ms CreateObjectMapping: 0.139200 ms MarkObjects: 5.501400 ms DeleteObjects: 0.039600 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Refreshing native plugins compatible for Editor in 12.76 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: 3364.
+Memory consumption went from 60.5 MB to 60.5 MB.
+Total: 6.788100 ms (FindLiveObjects: 0.236100 ms CreateObjectMapping: 0.127500 ms MarkObjects: 6.383400 ms DeleteObjects: 0.039900 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Refreshing native plugins compatible for Editor in 15.96 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: 3364.
+Memory consumption went from 60.5 MB to 60.5 MB.
+Total: 6.211500 ms (FindLiveObjects: 0.264800 ms CreateObjectMapping: 0.179500 ms MarkObjects: 5.724900 ms DeleteObjects: 0.041100 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Refreshing native plugins compatible for Editor in 13.59 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: 3364.
+Memory consumption went from 60.5 MB to 60.5 MB.
+Total: 5.694900 ms (FindLiveObjects: 0.234300 ms CreateObjectMapping: 0.140700 ms MarkObjects: 5.280700 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:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Refreshing native plugins compatible for Editor in 13.50 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 96 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 96 unused Assets / (25.0 KB). Loaded Objects now: 3364.
+Memory consumption went from 60.5 MB to 60.5 MB.
+Total: 7.583400 ms (FindLiveObjects: 0.225500 ms CreateObjectMapping: 0.145100 ms MarkObjects: 7.166600 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:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Refreshing native plugins compatible for Editor in 11.81 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: 3364.
+Memory consumption went from 60.5 MB to 60.5 MB.
+Total: 7.937100 ms (FindLiveObjects: 0.225600 ms CreateObjectMapping: 0.144500 ms MarkObjects: 7.525000 ms DeleteObjects: 0.041000 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Refreshing native plugins compatible for Editor in 13.49 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: 3364.
+Memory consumption went from 60.5 MB to 60.5 MB.
+Total: 6.620700 ms (FindLiveObjects: 0.222200 ms CreateObjectMapping: 0.139000 ms MarkObjects: 6.217600 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:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Refreshing native plugins compatible for Editor in 13.27 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 96 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 96 unused Assets / (25.0 KB). Loaded Objects now: 3364.
+Memory consumption went from 60.5 MB to 60.5 MB.
+Total: 6.677800 ms (FindLiveObjects: 0.238100 ms CreateObjectMapping: 0.152000 ms MarkObjects: 6.246600 ms DeleteObjects: 0.040300 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Refreshing native plugins compatible for Editor in 14.67 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 96 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 96 unused Assets / (25.0 KB). Loaded Objects now: 3364.
+Memory consumption went from 60.5 MB to 60.5 MB.
+Total: 5.883500 ms (FindLiveObjects: 0.227300 ms CreateObjectMapping: 0.130900 ms MarkObjects: 5.486600 ms DeleteObjects: 0.037900 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Refreshing native plugins compatible for Editor in 13.66 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 96 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 96 unused Assets / (25.0 KB). Loaded Objects now: 3364.
+Memory consumption went from 60.5 MB to 60.5 MB.
+Total: 5.838300 ms (FindLiveObjects: 0.228300 ms CreateObjectMapping: 0.130200 ms MarkObjects: 5.441000 ms DeleteObjects: 0.038100 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Refreshing native plugins compatible for Editor in 13.91 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: 3364.
+Memory consumption went from 60.5 MB to 60.5 MB.
+Total: 6.347400 ms (FindLiveObjects: 0.225500 ms CreateObjectMapping: 0.160700 ms MarkObjects: 5.918000 ms DeleteObjects: 0.042300 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Refreshing native plugins compatible for Editor in 13.30 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: 3364.
+Memory consumption went from 60.5 MB to 60.5 MB.
+Total: 5.872400 ms (FindLiveObjects: 0.272500 ms CreateObjectMapping: 0.219000 ms MarkObjects: 5.340400 ms DeleteObjects: 0.039700 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Refreshing native plugins compatible for Editor in 13.72 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 96 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 96 unused Assets / (25.0 KB). Loaded Objects now: 3364.
+Memory consumption went from 60.5 MB to 60.5 MB.
+Total: 5.561400 ms (FindLiveObjects: 0.229300 ms CreateObjectMapping: 0.134600 ms MarkObjects: 5.162600 ms DeleteObjects: 0.034300 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Refreshing native plugins compatible for Editor in 14.36 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: 3364.
+Memory consumption went from 60.5 MB to 60.5 MB.
+Total: 6.212400 ms (FindLiveObjects: 0.227300 ms CreateObjectMapping: 0.136600 ms MarkObjects: 5.803100 ms DeleteObjects: 0.044600 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Refreshing native plugins compatible for Editor in 12.72 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 96 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 96 unused Assets / (25.0 KB). Loaded Objects now: 3364.
+Memory consumption went from 60.5 MB to 60.5 MB.
+Total: 6.272000 ms (FindLiveObjects: 0.227800 ms CreateObjectMapping: 0.133200 ms MarkObjects: 5.869300 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:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Refreshing native plugins compatible for Editor in 12.77 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: 3364.
+Memory consumption went from 60.5 MB to 60.5 MB.
+Total: 7.482700 ms (FindLiveObjects: 0.226700 ms CreateObjectMapping: 0.139100 ms MarkObjects: 7.073200 ms DeleteObjects: 0.042800 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
+ custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
+ custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
+ custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
+ custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+========================================================================
+Received Prepare
+Refreshing native plugins compatible for Editor in 14.30 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: 3364.
+Memory consumption went from 60.5 MB to 60.5 MB.
+Total: 7.140500 ms (FindLiveObjects: 0.256100 ms CreateObjectMapping: 0.187600 ms MarkObjects: 6.655700 ms DeleteObjects: 0.040000 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-win-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.003432 seconds.
+Begin MonoManager ReloadAssembly
+Symbol file LoadedFromMemory is not a mono symbol file
+Native extension for WindowsStandalone 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.585 seconds
+Domain Reload Profiling:
+ ReloadAssembly (1586ms)
+ BeginReloadAssembly (213ms)
+ ExecutionOrderSort (0ms)
+ DisableScriptedObjects (11ms)
+ BackupInstance (0ms)
+ ReleaseScriptingObjects (0ms)
+ CreateAndSetChildDomain (84ms)
+ EndReloadAssembly (1273ms)
+ LoadAssemblies (101ms)
+ RebuildTransferFunctionScriptingTraits (0ms)
+ SetupTypeCache (229ms)
+ ReleaseScriptCaches (2ms)
+ RebuildScriptCaches (47ms)
+ SetupLoadedEditorAssemblies (856ms)
+ LogAssemblyErrors (0ms)
+ InitializePlatformSupportModulesInManaged (15ms)
+ SetLoadedEditorAssemblies (1ms)
+ RefreshPlugins (1ms)
+ BeforeProcessingInitializeOnLoad (52ms)
+ ProcessInitializeOnLoadAttributes (658ms)
+ ProcessInitializeOnLoadMethodAttributes (126ms)
+ AfterProcessingInitializeOnLoad (3ms)
+ EditorAssembliesLoaded (0ms)
+ ExecutionOrderSort2 (0ms)
+ AwakeInstancesAfterBackupRestoration (17ms)
+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 2831 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 98 unused Assets / (25.1 KB). Loaded Objects now: 3366.
+Memory consumption went from 115.1 MB to 115.1 MB.
+Total: 5.593900 ms (FindLiveObjects: 0.265100 ms CreateObjectMapping: 0.136100 ms MarkObjects: 5.148700 ms DeleteObjects: 0.042700 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-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: 875.377900 seconds.
+ path: Assets/Icon/1.png
+ artifactKey: Guid(cbad99ab7e18a3141ae18f5324e24676) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/Icon/1.png using Guid(cbad99ab7e18a3141ae18f5324e24676) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0ffe0905dcb3166b01a087a024526e5f') in 0.163465 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000028 seconds.
+ path: Assets/ART/base/main_pokemajiang/bg/bg1.png
+ artifactKey: Guid(0186bf551897f2b4eb72a70ab43653b5) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_pokemajiang/bg/bg1.png using Guid(0186bf551897f2b4eb72a70ab43653b5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '64857e1eaed83d1a572d2e56d4e3976a') in 0.014588 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000024 seconds.
+ path: Assets/ART/base/main_majiang/bg/bg1.png
+ artifactKey: Guid(9689342f0f765c746ab86cb294e0a558) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_majiang/bg/bg1.png using Guid(9689342f0f765c746ab86cb294e0a558) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2e81564d5069b00a544326e419211de0') in 0.015846 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000019 seconds.
+ path: Assets/ART/extend/zipai/changdepaohuzi/bg/bg1.png
+ artifactKey: Guid(8481baff0ac385447b4dd3c28bdfcaf0) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/zipai/changdepaohuzi/bg/bg1.png using Guid(8481baff0ac385447b4dd3c28bdfcaf0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a4cb0d1170d043062c2d53af0ce42078') in 0.018553 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000240 seconds.
+ path: Assets/Plugins/Android/res_bar/drawable-hdpi/app_icon.png
+ artifactKey: Guid(e0a072a93df755b4aa79b0db8e52cb95) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/Plugins/Android/res_bar/drawable-hdpi/app_icon.png using Guid(e0a072a93df755b4aa79b0db8e52cb95) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6f49352d7ff1c8e6976c631eda905faf') in 0.126512 seconds
+Number of asset objects unloaded after import = 1
+========================================================================
+Received Import Request.
+ Time since last request: 0.000022 seconds.
+ path: Assets/ART/extend/majiang/hongzhong/bg/bg1.png
+ artifactKey: Guid(1db8f0aeeba788c4f9c7a85883dc9a0d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/majiang/hongzhong/bg/bg1.png using Guid(1db8f0aeeba788c4f9c7a85883dc9a0d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '393c45f0c33ecfb8191270880f73529b') in 0.009157 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000016 seconds.
+ path: Assets/ART/extend/majiang/changsha/bg/bg1.png
+ artifactKey: Guid(1c95959bdbec2e8498bc9b4ff17e2317) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/majiang/changsha/bg/bg1.png using Guid(1c95959bdbec2e8498bc9b4ff17e2317) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4662227fe764dcaafc4927919dcdcdd9') in 0.008090 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000017 seconds.
+ path: Assets/ART/extend/zipai/yueyangwaihuzi/bg/bg1.png
+ artifactKey: Guid(a7ae72a1119393242882ae57a5535f3e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/zipai/yueyangwaihuzi/bg/bg1.png using Guid(a7ae72a1119393242882ae57a5535f3e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0caefbee37eb45ad1d61d924f5bb64d5') in 0.008055 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000016 seconds.
+ path: Assets/ART/extend/poker/twodoudizhu/bg/bg1.png
+ artifactKey: Guid(1d80c036c29842d47bd86e2e24b37a01) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/poker/twodoudizhu/bg/bg1.png using Guid(1d80c036c29842d47bd86e2e24b37a01) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '56493d6a6a92e3a65bdcc7fec19c328e') in 0.058638 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000018 seconds.
+ path: Assets/ART/extend/majiang/changsha/bg/bg2.png
+ artifactKey: Guid(09523525061f4f94a994a8dbf0a084f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/majiang/changsha/bg/bg2.png using Guid(09523525061f4f94a994a8dbf0a084f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bbb6239e9e6e58ff81e337d122ca0745') in 0.009750 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000024 seconds.
+ path: Assets/ART/extend/poker/runfast/bg/bg1.png
+ artifactKey: Guid(ca1023f22b55ce74eb95a7010d716600) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/poker/runfast/bg/bg1.png using Guid(ca1023f22b55ce74eb95a7010d716600) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '995a793e5962fb739cc5ac2c2d589acf') in 0.008808 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000017 seconds.
+ path: Assets/ART/extend/zipai/fulushou/bg/bg1.png
+ artifactKey: Guid(c8221aaecaddafe4b8102ae2b302cc41) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/zipai/fulushou/bg/bg1.png using Guid(c8221aaecaddafe4b8102ae2b302cc41) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2e91978ea3d8c85e9623eb2b809e6098') in 0.010959 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000015 seconds.
+ path: Assets/ART/extend/majiang/zhuanzhuan/bg/bg1.png
+ artifactKey: Guid(070873b5c9dcdd04c917129304c5c156) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/majiang/zhuanzhuan/bg/bg1.png using Guid(070873b5c9dcdd04c917129304c5c156) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e39badbc7cadb7f98a97a573ae2d3afa') in 0.008900 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000016 seconds.
+ path: Assets/ART/base/lobby/bg/bg.png
+ artifactKey: Guid(200630aff1b5f2444a1bdc6d82042cdd) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/lobby/bg/bg.png using Guid(200630aff1b5f2444a1bdc6d82042cdd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '60770dba84c1e41b8e9a1301ba1362b1') in 0.009464 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000015 seconds.
+ path: Assets/ART/base/main_pokemajiang/bg/bg2.png
+ artifactKey: Guid(e5b4dbeeb73b86547b42b3f1572f3eb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_pokemajiang/bg/bg2.png using Guid(e5b4dbeeb73b86547b42b3f1572f3eb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a525a24d307d152b1bc5a3dc8f4b5dab') in 0.007281 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000017 seconds.
+ path: Assets/ART/extend/poker/shengsidu/bg/bg1.png
+ artifactKey: Guid(7187988cf5e56a546a0ff1f1e11437d6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/poker/shengsidu/bg/bg1.png using Guid(7187988cf5e56a546a0ff1f1e11437d6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '059ed20db251573c232bb29cc615871c') in 0.085857 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000231 seconds.
+ path: Assets/ART/extend/poker/chuntian/bg/bg1.png
+ artifactKey: Guid(caffe689c018c2f4ca05346e597c827c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/poker/chuntian/bg/bg1.png using Guid(caffe689c018c2f4ca05346e597c827c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '39746976e48b0ff928625b8c65769938') in 0.076439 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000019 seconds.
+ path: Assets/ART/extend/poker/sanqianfen/bg/bg1.png
+ artifactKey: Guid(919a3782c57c0b74e950c5d2d95c675a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/poker/sanqianfen/bg/bg1.png using Guid(919a3782c57c0b74e950c5d2d95c675a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '459f6018250ec14009be03301f13e0e1') in 0.092506 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000024 seconds.
+ path: Assets/ART/extend/poker/mushi/bg/bg1.png
+ artifactKey: Guid(a02dbf8d5279dbb43b0c20085f52b25e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/poker/mushi/bg/bg1.png using Guid(a02dbf8d5279dbb43b0c20085f52b25e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '13f44c953bd77f93f3e0af431f7e5ef8') in 0.072511 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 47.053136 seconds.
+ path: Assets/ART/extend/poker/runfast/bg/bg2.png
+ artifactKey: Guid(d24aafaf47b20684f9e6c500bf2d6605) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/poker/runfast/bg/bg2.png using Guid(d24aafaf47b20684f9e6c500bf2d6605) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '85da2f81a4f3148a87207cd6ed9579a9') in 0.022446 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.991723 seconds.
+ path: Assets/ART/extend/zipai/changdepaohuzi/bg/bg2.png
+ artifactKey: Guid(a5afabb9e847e714d9a09ebe94027690) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/zipai/changdepaohuzi/bg/bg2.png using Guid(a5afabb9e847e714d9a09ebe94027690) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b19a200c842b409d1123b9702759966d') in 0.008900 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000015 seconds.
+ path: Assets/ART/extend/zipai/fulushou/bg/bg2.png
+ artifactKey: Guid(54476b516238b464b9e732dc9aad71ee) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/zipai/fulushou/bg/bg2.png using Guid(54476b516238b464b9e732dc9aad71ee) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '183b8945dba9f273c0a81c8d950ff13c') in 0.008971 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000019 seconds.
+ path: Assets/ART/extend/poker/sanqianfen/bg/bg2.png
+ artifactKey: Guid(5fd109fdd4e66ea4db17bbc14e8af2b0) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/poker/sanqianfen/bg/bg2.png using Guid(5fd109fdd4e66ea4db17bbc14e8af2b0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4b61e0c046e88f3920ae1fdbe6f7ee21') in 0.080382 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000015 seconds.
+ path: Assets/ART/extend/poker/twodoudizhu/bg/bg2.png
+ artifactKey: Guid(bac629bffb5dfab4ab5ceeffc9a151c0) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/poker/twodoudizhu/bg/bg2.png using Guid(bac629bffb5dfab4ab5ceeffc9a151c0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fb94b8459cb61ec00a29be13a2f231d6') in 0.080473 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000025 seconds.
+ path: Assets/ART/extend/poker/shengsidu/bg/bg2.png
+ artifactKey: Guid(8c119e2443e758a44a770fe5e498ac3e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/poker/shengsidu/bg/bg2.png using Guid(8c119e2443e758a44a770fe5e498ac3e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e8caa1831167288a535e482df27776cd') in 0.007897 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.110100 seconds.
+ path: Assets/ART/base/main_majiang/bg/bg2.png
+ artifactKey: Guid(17da55a3cede6da4781586461bb065fe) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_majiang/bg/bg2.png using Guid(17da55a3cede6da4781586461bb065fe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'de535ebe2d6f466cca5659be20550ce6') in 0.009524 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000013 seconds.
+ path: Assets/ART/extend/majiang/hongzhong/bg/bg2.png
+ artifactKey: Guid(cf0583b65f2f044438b0dd3d8499037b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/majiang/hongzhong/bg/bg2.png using Guid(cf0583b65f2f044438b0dd3d8499037b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b873833572fe8d7649fa7dfc73f946d7') in 0.006766 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000015 seconds.
+ path: Assets/ART/extend/poker/chuntian/bg/bg2.png
+ artifactKey: Guid(0b20a06aaca5534429e4ec9ef912465a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/poker/chuntian/bg/bg2.png using Guid(0b20a06aaca5534429e4ec9ef912465a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '393ddc027ac35cebfa29e03276c6c309') in 0.061099 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000021 seconds.
+ path: Assets/ART/extend/majiang/changsha/bg/bg3.png
+ artifactKey: Guid(a447e747d49904e4c9dc85e93792c06a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/majiang/changsha/bg/bg3.png using Guid(a447e747d49904e4c9dc85e93792c06a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1c593c6057aceb614ac2b74feb1edd2d') in 0.008662 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000014 seconds.
+ path: Assets/ART/base/main_pokemajiang/bg/bg3.png
+ artifactKey: Guid(5a6f312f7a6a84e43b9779a00fdff1c8) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_pokemajiang/bg/bg3.png using Guid(5a6f312f7a6a84e43b9779a00fdff1c8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8a97a8cab58a998bbe5ddd597d31c58c') in 0.009524 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000070 seconds.
+ path: Assets/ART/extend/poker/shengsidu/bg/bg3.png
+ artifactKey: Guid(71545ca90b5cc464bb566b1b88baaba8) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/poker/shengsidu/bg/bg3.png using Guid(71545ca90b5cc464bb566b1b88baaba8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ae3eaa74db0c955daa1cb400878228a9') in 0.104117 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000041 seconds.
+ path: Assets/ART/extend/majiang/zhuanzhuan/bg/bg2.png
+ artifactKey: Guid(2776489076f9df34ca51d46096e601c8) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/majiang/zhuanzhuan/bg/bg2.png using Guid(2776489076f9df34ca51d46096e601c8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'aa60565972855d96fe8bf61ffbe253cc') in 0.007304 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000015 seconds.
+ path: Assets/ART/extend/majiang/zhuanzhuan/bg/bg3.png
+ artifactKey: Guid(d96f5b2adeba05f43ba26f8c1478ea82) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/majiang/zhuanzhuan/bg/bg3.png using Guid(d96f5b2adeba05f43ba26f8c1478ea82) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a7f44b7f46aa8b6c88e74e6db5641ec5') in 0.008211 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000017 seconds.
+ path: Assets/ART/extend/majiang/hongzhong/bg/bg3.png
+ artifactKey: Guid(8cf27edfdf2ba634da7d8090428bb08c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/majiang/hongzhong/bg/bg3.png using Guid(8cf27edfdf2ba634da7d8090428bb08c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '87a71e9dd76383ba026441ab0ebaa81a') in 0.008097 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000020 seconds.
+ path: Assets/ART/extend/poker/mushi/bg/bg2.png
+ artifactKey: Guid(038499322bf90b449862240a8dd67e64) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/poker/mushi/bg/bg2.png using Guid(038499322bf90b449862240a8dd67e64) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fa47dc192eff0ae8e03e4d3f955a7ed0') in 0.008057 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000020 seconds.
+ path: Assets/ART/extend/poker/chuntian/bg/bg3.png
+ artifactKey: Guid(5f843c8fb473a1a41bdcfd4683586104) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/poker/chuntian/bg/bg3.png using Guid(5f843c8fb473a1a41bdcfd4683586104) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e53659d8f8fda4ebe37d3f3ac6aaccef') in 0.052804 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000014 seconds.
+ path: Assets/ART/extend/poker/sanqianfen/bg/bg3.png
+ artifactKey: Guid(38ee6121d425fce4b8efa5ce633ca22c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/poker/sanqianfen/bg/bg3.png using Guid(38ee6121d425fce4b8efa5ce633ca22c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '997d79499cd6e88048c143a3bde6a261') in 0.064072 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000016 seconds.
+ path: Assets/ART/extend/zipai/yueyangwaihuzi/bg/bg2.png
+ artifactKey: Guid(6e5e3c47446db5d4bafb0480fdec70b6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/zipai/yueyangwaihuzi/bg/bg2.png using Guid(6e5e3c47446db5d4bafb0480fdec70b6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '62a058bd583c848e26fac653e9eab073') in 0.008323 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000022 seconds.
+ path: Assets/ART/base/main_majiang/bg/bg3.png
+ artifactKey: Guid(b7193f148a7adff48969cbd5733ec958) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_majiang/bg/bg3.png using Guid(b7193f148a7adff48969cbd5733ec958) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8ac05c9a76c3e352619dbef3383ffc95') in 0.010010 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000019 seconds.
+ path: Assets/ART/extend/zipai/fulushou/bg/bg3.png
+ artifactKey: Guid(faedec2ae2fe5784391a17c5766c47fe) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/zipai/fulushou/bg/bg3.png using Guid(faedec2ae2fe5784391a17c5766c47fe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1b2c83757430a9c344e721ae1f2fd793') in 0.009148 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000016 seconds.
+ path: Assets/ART/extend/poker/twodoudizhu/bg/bg3.png
+ artifactKey: Guid(9aa257c0ac9b4fd4d9582ee44b8f0c44) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/poker/twodoudizhu/bg/bg3.png using Guid(9aa257c0ac9b4fd4d9582ee44b8f0c44) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd022a0d00ee40bd9ebabe87b98d5ccb1') in 0.008450 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000016 seconds.
+ path: Assets/ART/extend/zipai/changdepaohuzi/bg/bg3.png
+ artifactKey: Guid(676ac6ca060575241b3aca69bc555d0b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/zipai/changdepaohuzi/bg/bg3.png using Guid(676ac6ca060575241b3aca69bc555d0b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f9ae973270cb020a876cfbd8f7c5a0b4') in 0.008212 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000014 seconds.
+ path: Assets/ART/extend/zipai/yueyangwaihuzi/bg/bg3.png
+ artifactKey: Guid(26b0fe1ef0b6930429962800bebc418b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/zipai/yueyangwaihuzi/bg/bg3.png using Guid(26b0fe1ef0b6930429962800bebc418b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '35aefa6d56945b1033a7ed03751e18b1') in 0.008737 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000018 seconds.
+ path: Assets/ART/extend/poker/mushi/bg/bg3.png
+ artifactKey: Guid(6ce99764996ab0b439380c011b3240ca) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/poker/mushi/bg/bg3.png using Guid(6ce99764996ab0b439380c011b3240ca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ff8a7eea6d0bc428f9f46edaef482428') in 0.007997 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000024 seconds.
+ path: Assets/ART/base/main_zipaimajiang/bg/bg_2.png
+ artifactKey: Guid(b9fc5fb9e3bc7f34f9ff69ec2481d723) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_zipaimajiang/bg/bg_2.png using Guid(b9fc5fb9e3bc7f34f9ff69ec2481d723) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8e348aad71d68cdc65510bcbcbab8409') in 0.008364 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000015 seconds.
+ path: Assets/ART/extend/poker/runfast/bg/bg3.png
+ artifactKey: Guid(c9916e46801228c468d9f8ab835ea725) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/poker/runfast/bg/bg3.png using Guid(c9916e46801228c468d9f8ab835ea725) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '92444ffcc22e89c8c6689c9a8ac114fb') in 0.007351 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000019 seconds.
+ path: Assets/ART/base/main_zipai/bg/bg_1.png
+ artifactKey: Guid(ed35a1fc40bc56a4c87656ebad9206cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_zipai/bg/bg_1.png using Guid(ed35a1fc40bc56a4c87656ebad9206cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f9a9749d0b8336e84df1ad7c67107c6d') in 0.010805 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000015 seconds.
+ path: Assets/ART/base/main_zipai/bg/bg_3.png
+ artifactKey: Guid(fc03f490fc06a0643a8f671ef2efa34a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_zipai/bg/bg_3.png using Guid(fc03f490fc06a0643a8f671ef2efa34a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '171d7f94b9ab9e39290b63323f687569') in 0.008634 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000015 seconds.
+ path: Assets/ART/base/main_zipaimajiang/bg/bg_3.png
+ artifactKey: Guid(06a22e3e0d33fb5448725ba7492da417) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_zipaimajiang/bg/bg_3.png using Guid(06a22e3e0d33fb5448725ba7492da417) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '89034a1905eb48a58ebd82cf36a49c4d') in 0.007342 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000070 seconds.
+ path: Assets/ART/base/main_zipaimajiang/bg/bg_1.png
+ artifactKey: Guid(a6e64fb6cf4a704469654bd782f02234) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_zipaimajiang/bg/bg_1.png using Guid(a6e64fb6cf4a704469654bd782f02234) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '50e64e58fc223a248172f0d5cc79541e') in 0.008045 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000015 seconds.
+ path: Assets/ART/base/main_zipai/bg/bg_2.png
+ artifactKey: Guid(95e8e022af0292048af6343a88801eae) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_zipai/bg/bg_2.png using Guid(95e8e022af0292048af6343a88801eae) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b24f0688791ae0600240848fc2e9d788') in 0.007762 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 1.027867 seconds.
+ path: Assets/ART/extend/majiang/100zhang/ui/Extend_MJ_100Zhang_atlas0.png
+ artifactKey: Guid(6f659d1b9aec5384aabd6a28dfd05ed0) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/majiang/100zhang/ui/Extend_MJ_100Zhang_atlas0.png using Guid(6f659d1b9aec5384aabd6a28dfd05ed0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '42c900cabfc4f967cf8c911cef073c34') in 0.140574 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000017 seconds.
+ path: Assets/ART/extend/majiang/chaozhougui/ui/Extend_MJ_ChaoZhouGui_atlas0.png
+ artifactKey: Guid(46e761707bc3d704997d5eb9bee7aabb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/majiang/chaozhougui/ui/Extend_MJ_ChaoZhouGui_atlas0.png using Guid(46e761707bc3d704997d5eb9bee7aabb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2e3c53de80b916b03104d310e27d9fae') in 0.133367 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000021 seconds.
+ path: Assets/ART/extend/majiang/chaoshan/ui/Extend_MJ_ChaoShan_atlas0.png
+ artifactKey: Guid(88e93119b2f7de9418c2b9683bcdb2c5) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/majiang/chaoshan/ui/Extend_MJ_ChaoShan_atlas0.png using Guid(88e93119b2f7de9418c2b9683bcdb2c5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd9023ef2c522acca6e1b3023ed3b0713') in 0.143394 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000014 seconds.
+ path: Assets/ART/extend/majiang/tuidaohu/ui/Extend_MJ_TuiDaoHu_atlas0.png
+ artifactKey: Guid(da5e112ba55d6c249a8cda1dae0ade34) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/majiang/tuidaohu/ui/Extend_MJ_TuiDaoHu_atlas0.png using Guid(da5e112ba55d6c249a8cda1dae0ade34) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e207eb9e2f87368997567f145e3b14d8') in 0.122049 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000016 seconds.
+ path: Assets/ART/extend/zipai/hsrunbeard/ui/Extend_Poker_HSRunBeard_atlas0.png
+ artifactKey: Guid(5392695b2c7430d4faabf3d30ac82de3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/zipai/hsrunbeard/ui/Extend_Poker_HSRunBeard_atlas0.png using Guid(5392695b2c7430d4faabf3d30ac82de3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f6d1187817ae8ea5d91558f64983a7fc') in 0.066681 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000021 seconds.
+ path: Assets/ART/extend/majiang/zhuanzhuan/ui/Extend_MJ_ZhuanZhuan_atlas0.png
+ artifactKey: Guid(da3324a5283a8ea479d6c8ae0577214f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/majiang/zhuanzhuan/ui/Extend_MJ_ZhuanZhuan_atlas0.png using Guid(da3324a5283a8ea479d6c8ae0577214f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '54b83e1b9fbb36d8baceb4f0c784bb55') in 0.008158 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000013 seconds.
+ path: Assets/ART/extend/poker/dazhadan/ui/Extend_Poker_DaZhaDan_atlas0.png
+ artifactKey: Guid(e044ac94bd5aa884d8e8611bbeccf2e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/poker/dazhadan/ui/Extend_Poker_DaZhaDan_atlas0.png using Guid(e044ac94bd5aa884d8e8611bbeccf2e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '12a2308b1feb0b167d28beb6ae12328c') in 0.166098 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000015 seconds.
+ path: Assets/ART/extend/poker/sanqianfen/ui/Extend_Poker_SanQianFen_atlas0.png
+ artifactKey: Guid(f4575520d9fe21d4397ca4b8076d3b6c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/poker/sanqianfen/ui/Extend_Poker_SanQianFen_atlas0.png using Guid(f4575520d9fe21d4397ca4b8076d3b6c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'afec592404d2fb817173220f1ca455f5') in 0.128321 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000016 seconds.
+ path: Assets/ART/extend/zipai/runbeard/ui/Extend_Poker_RunBeard_atlas0.png
+ artifactKey: Guid(81d35639017f4494b9a1dea68550f0d0) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/zipai/runbeard/ui/Extend_Poker_RunBeard_atlas0.png using Guid(81d35639017f4494b9a1dea68550f0d0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '48e2be9d5950df877c637564a2a20a81') in 0.019164 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000022 seconds.
+ path: Assets/ART/extend/majiang/yijiaolaiyou/ui/Extend_MJ_YiJiaoLaiYou_atlas0.png
+ artifactKey: Guid(c6e8ed1c60e35d0418204350f4e0cb32) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/majiang/yijiaolaiyou/ui/Extend_MJ_YiJiaoLaiYou_atlas0.png using Guid(c6e8ed1c60e35d0418204350f4e0cb32) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a892173313db4fb19b55b38c028eb703') in 0.174652 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000017 seconds.
+ path: Assets/ART/extend/zipai/fulushou/ui/Extend_Poker_FuLuShou_atlas0.png
+ artifactKey: Guid(352959cf096a48648b57fa5dbebb915e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/zipai/fulushou/ui/Extend_Poker_FuLuShou_atlas0.png using Guid(352959cf096a48648b57fa5dbebb915e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '56c1876c49481ec035464da8407105d0') in 0.018507 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000018 seconds.
+ path: Assets/ART/base/newgroup/ui/FGAssist_atlas0.png
+ artifactKey: Guid(4f1aa27d131966c4cbd737cdddbc0bd1) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/newgroup/ui/FGAssist_atlas0.png using Guid(4f1aa27d131966c4cbd737cdddbc0bd1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cc46049e36fde51f6c70f04617e06bb2') in 0.033188 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000045 seconds.
+ path: Assets/ART/extend/poker/mushi/ui/Extend_Poker_MuShi_atlas0_2.png
+ artifactKey: Guid(58fb976ffdb944348928bfa3788ec2aa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/poker/mushi/ui/Extend_Poker_MuShi_atlas0_2.png using Guid(58fb976ffdb944348928bfa3788ec2aa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b7b870ef97ec3b413b7c476520652d26') in 0.181409 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000019 seconds.
+ path: Assets/ART/extend/poker/mushi/ui/Extend_Poker_MuShi_atlas0_1.png
+ artifactKey: Guid(bb4abb8c554654c4dbcf1db33ce1949d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/poker/mushi/ui/Extend_Poker_MuShi_atlas0_1.png using Guid(bb4abb8c554654c4dbcf1db33ce1949d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '17b1057b1a6af601898f1fc0f2589a1e') in 0.145871 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000014 seconds.
+ path: Assets/ART/extend/poker/chuntian/ui/Extend_Poker_ChunTian_atlas0_1.png
+ artifactKey: Guid(24319e5ab0386eb42acd1f8bc5a808e2) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/poker/chuntian/ui/Extend_Poker_ChunTian_atlas0_1.png using Guid(24319e5ab0386eb42acd1f8bc5a808e2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '366eff20ac64a8209674ac8f77c11857') in 0.151221 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000017 seconds.
+ path: Assets/ART/extend/majiang/qizhiba/ui/Extend_MJ_QiZhiBa_atlas0.png
+ artifactKey: Guid(654da803142f3d344b265f61983b837b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/majiang/qizhiba/ui/Extend_MJ_QiZhiBa_atlas0.png using Guid(654da803142f3d344b265f61983b837b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b10462536d9cad450dd439185f852431') in 0.104447 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000021 seconds.
+ path: Assets/ART/extend/zipai/yueyangwaihuzi/ui/Extend_Poker_YueYangWHZ_atlas0.png
+ artifactKey: Guid(81ed6fd95d5b63746a00e489f91cd3ec) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/zipai/yueyangwaihuzi/ui/Extend_Poker_YueYangWHZ_atlas0.png using Guid(81ed6fd95d5b63746a00e489f91cd3ec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00fae766d0dc02b1688e28c52cadaf88') in 0.015167 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000014 seconds.
+ path: Assets/ART/extend/poker/chuntian/ui/Extend_Poker_ChunTian_atlas0.png
+ artifactKey: Guid(0901bdb33779c84418005cfaf54c9642) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/poker/chuntian/ui/Extend_Poker_ChunTian_atlas0.png using Guid(0901bdb33779c84418005cfaf54c9642) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e711e555e9315d059bf10b032b953303') in 0.145866 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000015 seconds.
+ path: Assets/ART/extend/poker/twodoudizhu/ui/Extend_Poker_TwoDouDiZhu_atlas0.png
+ artifactKey: Guid(8e8cb29105794e9439e904a360f3fa25) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/poker/twodoudizhu/ui/Extend_Poker_TwoDouDiZhu_atlas0.png using Guid(8e8cb29105794e9439e904a360f3fa25) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5c31977e2c88324761d69fca9d9f7db9') in 0.112380 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000015 seconds.
+ path: Assets/ART/extend/majiang/chaozhou/ui/Extend_MJ_ChaoZhou_atlas0.png
+ artifactKey: Guid(3efbd732357171843919a4c5f35de9a4) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/majiang/chaozhou/ui/Extend_MJ_ChaoZhou_atlas0.png using Guid(3efbd732357171843919a4c5f35de9a4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '673cc50a7d0c2171b97fb662e8c9bfda') in 0.115539 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000021 seconds.
+ path: Assets/ART/extend/majiang/hongzhong/ui/Extend_MJ_HongZhong_atlas0.png
+ artifactKey: Guid(b5be747168631fb48b3e7759530a27df) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/majiang/hongzhong/ui/Extend_MJ_HongZhong_atlas0.png using Guid(b5be747168631fb48b3e7759530a27df) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2b6341cda17b07b7c66a638191427521') in 0.006303 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000014 seconds.
+ path: Assets/ART/extend/poker/twodoudizhu/ui/Extend_Poker_TwoDouDiZhu_atlas0_1.png
+ artifactKey: Guid(b2f30c010ef96e54b94ed7409b41222f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/poker/twodoudizhu/ui/Extend_Poker_TwoDouDiZhu_atlas0_1.png using Guid(b2f30c010ef96e54b94ed7409b41222f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '51f57cc9eda9aa594caaf6332f4f1e9f') in 0.138425 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000014 seconds.
+ path: Assets/ART/extend/poker/shengsidu/ui/Extend_Poker_ShengSiDu_atlas0.png
+ artifactKey: Guid(96a63b4296a8d4945a125f45f0757313) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/poker/shengsidu/ui/Extend_Poker_ShengSiDu_atlas0.png using Guid(96a63b4296a8d4945a125f45f0757313) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b842f147d15f5274ec3da1bd7c510d96') in 0.188978 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000015 seconds.
+ path: Assets/ART/extend/majiang/yijiaolaiyou/ui/Extend_MJ_YiJiaoLaiYou_atlas0_1.png
+ artifactKey: Guid(4617445e6a35847449da05e49e077363) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/majiang/yijiaolaiyou/ui/Extend_MJ_YiJiaoLaiYou_atlas0_1.png using Guid(4617445e6a35847449da05e49e077363) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '479cad118c95607ca474572284420c7f') in 0.069804 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000021 seconds.
+ path: Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas_prgzf7.png
+ artifactKey: Guid(9ecab0eb3d1edd648a018019faf0507b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas_prgzf7.png using Guid(9ecab0eb3d1edd648a018019faf0507b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bbf1cb016d3086586d61df084e0c7d83') in 0.009148 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000015 seconds.
+ path: Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas0.png
+ artifactKey: Guid(ffb01e19f2e912d40a61f7890cb2175c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas0.png using Guid(ffb01e19f2e912d40a61f7890cb2175c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5f26105188219a8678101301397351b2') in 0.046352 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000016 seconds.
+ path: Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas0_1.png
+ artifactKey: Guid(6a09e1df444136a41a5d6ff5278d423f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas0_1.png using Guid(6a09e1df444136a41a5d6ff5278d423f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '111efcf995b07b0ebaa5fc3f50f021fa') in 0.007684 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000013 seconds.
+ path: Assets/ART/extend/majiang/gejiu/ui/Extend_MJ_GeJiu_atlas0.png
+ artifactKey: Guid(b78c92d03d987f946bb3845115f1db31) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/majiang/gejiu/ui/Extend_MJ_GeJiu_atlas0.png using Guid(b78c92d03d987f946bb3845115f1db31) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b0c0df65e4d9e16f5cd426a4daddc59c') in 0.165818 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000015 seconds.
+ path: Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas0.png
+ artifactKey: Guid(916287857f1e0aa49ab583bf96a77a43) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas0.png using Guid(916287857f1e0aa49ab583bf96a77a43) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c25359ea109e530f6b820ab0e64f191d') in 0.057674 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000023 seconds.
+ path: Assets/ART/extend/poker/mushi/ui/Extend_Poker_MuShi_atlas0.png
+ artifactKey: Guid(42356a9bbec88c740a08e9bb166e5688) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/poker/mushi/ui/Extend_Poker_MuShi_atlas0.png using Guid(42356a9bbec88c740a08e9bb166e5688) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c8d58a1b24312ca6a1fe0587a5652f7f') in 0.104780 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000017 seconds.
+ path: Assets/ART/extend/majiang/changsha/ui/Extend_MJ_ChangSha_atlas0.png
+ artifactKey: Guid(8a9623958f84dbe448962e77b4f18f74) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/majiang/changsha/ui/Extend_MJ_ChangSha_atlas0.png using Guid(8a9623958f84dbe448962e77b4f18f74) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1ab196a7622739ed7d05647a8dd3e192') in 0.062500 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.094256 seconds.
+ path: Assets/Icon/icon.png
+ artifactKey: Guid(1835c90157754464eaf6db388813a7a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/Icon/icon.png using Guid(1835c90157754464eaf6db388813a7a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1dc06323be1d13e8135dfb877c5bd396') in 0.009577 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000013 seconds.
+ path: Packages/com.unity.purchasing/Icons/UnityEngine.Purchasing.IAPButtonIcon.png
+ artifactKey: Guid(55e457740fe60405dac77af143e1a867) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Packages/com.unity.purchasing/Icons/UnityEngine.Purchasing.IAPButtonIcon.png using Guid(55e457740fe60405dac77af143e1a867) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b402c1275e1e0ea817ad7b778002de12') in 0.077891 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Prepare
+Refreshing native plugins compatible for Editor in 22.58 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 96 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 96 unused Assets / (25.0 KB). Loaded Objects now: 3395.
+Memory consumption went from 61.2 MB to 61.2 MB.
+Total: 10.776900 ms (FindLiveObjects: 0.314100 ms CreateObjectMapping: 0.217500 ms MarkObjects: 10.185700 ms DeleteObjects: 0.043300 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+ custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
+ custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
+ custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
+ custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
+ custom:CustomObjectIndexerAttribute: bc11b3a6c3213fcdd17b65e7da85e133 ->
+ custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
+ custom:framework-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: 138.439132 seconds.
+ path: Assets/ART/base/lobby/ui/Lobby_atlas0.png
+ artifactKey: Guid(5b8e798641880274a81cfce7f2027429) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/lobby/ui/Lobby_atlas0.png using Guid(5b8e798641880274a81cfce7f2027429) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '29dd06882299fb91ba38ccc32a4f47ab') in 0.050304 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000015 seconds.
+ path: Assets/ART/base/lobby/ui/Lobby_atlas0_1.png
+ artifactKey: Guid(8395dc5e9c4802c45b0da68db8cd10e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/lobby/ui/Lobby_atlas0_1.png using Guid(8395dc5e9c4802c45b0da68db8cd10e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bc59c9ba6d78968e53b67b70650e5513') in 0.055738 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000017 seconds.
+ path: Assets/ART/base/lobby/ui/Lobby_atlas_xyf8bm.png
+ artifactKey: Guid(c38ab368956c7264cbac086e24ea3bce) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/lobby/ui/Lobby_atlas_xyf8bm.png using Guid(c38ab368956c7264cbac086e24ea3bce) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2cba69448ca6d45717c477e412d7392e') in 0.033613 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000018 seconds.
+ path: Assets/ART/base/lobby/ui/Lobby_atlas_j046clu.png
+ artifactKey: Guid(82b5eb793a40447479db8698d97e50d6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/lobby/ui/Lobby_atlas_j046clu.png using Guid(82b5eb793a40447479db8698d97e50d6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '81a1587d0ad7840031eae258482c89e2') in 0.027688 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 3.840865 seconds.
+ path: Assets/ART/base/login/ui/Login_atlas0.png
+ artifactKey: Guid(4c303399cbbfce041b05de0f48c540f8) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/login/ui/Login_atlas0.png using Guid(4c303399cbbfce041b05de0f48c540f8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'eddee814c75702570af6f84becc02a05') in 0.012113 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 3.270412 seconds.
+ path: Assets/ART/base/mail/ui/Mail_atlas0.png
+ artifactKey: Guid(77102410aabdeef448ff19a968dd3db6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/mail/ui/Mail_atlas0.png using Guid(77102410aabdeef448ff19a968dd3db6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4debfcf2425607113033527004236ef3') in 0.046678 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 1.699502 seconds.
+ path: Assets/ART/base/main_majiang/ui/Main_Majiang_atlas0.png
+ artifactKey: Guid(fad14995ccbeef64dae917a6cd00579a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_majiang/ui/Main_Majiang_atlas0.png using Guid(fad14995ccbeef64dae917a6cd00579a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4c1956df240dbe58e46d097bd87402d9') in 0.049801 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000014 seconds.
+ path: Assets/ART/base/main_majiang/ui/Main_Majiang_atlas0_1.png
+ artifactKey: Guid(431f7e2d464ddc942ad915022cabcefd) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_majiang/ui/Main_Majiang_atlas0_1.png using Guid(431f7e2d464ddc942ad915022cabcefd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ceeaa15f3795385611f74d80fad28533') in 0.011704 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000014 seconds.
+ path: Assets/ART/base/main_majiang/ui/Main_Majiang_atlas0_2.png
+ artifactKey: Guid(7055831bde7c93045aa6190395e4773b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_majiang/ui/Main_Majiang_atlas0_2.png using Guid(7055831bde7c93045aa6190395e4773b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a9e3db8cb72111f0c20e4a555f62cb13') in 0.044576 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000015 seconds.
+ path: Assets/ART/base/main_majiang/ui/Main_Majiang_atlas0_4.png
+ artifactKey: Guid(133d0e482b3a64b40a0a9c21ac4311d7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_majiang/ui/Main_Majiang_atlas0_4.png using Guid(133d0e482b3a64b40a0a9c21ac4311d7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00fd4066e0eb7a6d4fcb3b58e908398b') in 0.055818 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000016 seconds.
+ path: Assets/ART/base/main_majiang/ui/Main_Majiang_atlas0_3.png
+ artifactKey: Guid(24ee6d91cbcc3b342a2ef13543161f2b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_majiang/ui/Main_Majiang_atlas0_3.png using Guid(24ee6d91cbcc3b342a2ef13543161f2b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '34baa8e7171cace6104f1c7204c53a4c') in 0.046903 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 2.822562 seconds.
+ path: Assets/ART/base/main_pokemajiang/ui/Main_PokeMaJiang_atlas0.png
+ artifactKey: Guid(0cd3a658edc017049b1e8b434710df61) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_pokemajiang/ui/Main_PokeMaJiang_atlas0.png using Guid(0cd3a658edc017049b1e8b434710df61) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c0b996f308dd381200a41d9ebf4f1260') in 0.048905 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000017 seconds.
+ path: Assets/ART/base/main_pokemajiang/ui/Main_PokeMaJiang_atlas0_1.png
+ artifactKey: Guid(d8fd0c0b1e2bb39428d7ad430480c6a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_pokemajiang/ui/Main_PokeMaJiang_atlas0_1.png using Guid(d8fd0c0b1e2bb39428d7ad430480c6a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '63cc455dbe56a224a0b90ac9c0f27713') in 0.042534 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000022 seconds.
+ path: Assets/ART/base/main_pokemajiang/ui/Main_PokeMaJiang_atlas0_3.png
+ artifactKey: Guid(20e1014030102b14c95f89b7f6cbb41c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_pokemajiang/ui/Main_PokeMaJiang_atlas0_3.png using Guid(20e1014030102b14c95f89b7f6cbb41c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '98753551ba96028ef3929dc7a4c6e260') in 0.044452 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000025 seconds.
+ path: Assets/ART/base/main_pokemajiang/ui/Main_PokeMaJiang_atlas0_4.png
+ artifactKey: Guid(efea5453ddb30ce42a073aa0b46128d0) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_pokemajiang/ui/Main_PokeMaJiang_atlas0_4.png using Guid(efea5453ddb30ce42a073aa0b46128d0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '62957ff13ae51a470d845c83b1fd612d') in 0.046233 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000016 seconds.
+ path: Assets/ART/base/main_pokemajiang/ui/Main_PokeMaJiang_atlas0_2.png
+ artifactKey: Guid(b7946b91fab87364db5ea45dcdab97cf) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_pokemajiang/ui/Main_PokeMaJiang_atlas0_2.png using Guid(b7946b91fab87364db5ea45dcdab97cf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e2a9c9b37f2cf4da11cfe3f2846c203f') in 0.043938 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 1.241719 seconds.
+ path: Assets/ART/base/main_poker/ui/Main_Poker_atlas0.png
+ artifactKey: Guid(676124bd5d9240f41af30300764e9b9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_poker/ui/Main_Poker_atlas0.png using Guid(676124bd5d9240f41af30300764e9b9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'de6b8fa5ed7d6ecf34aea0dd1be2436b') in 0.014590 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 1.709825 seconds.
+ path: Assets/ART/base/main_zipai/ui/Main_RunBeard_atlas0.png
+ artifactKey: Guid(d074815221c25a44795ed02963c13632) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_zipai/ui/Main_RunBeard_atlas0.png using Guid(d074815221c25a44795ed02963c13632) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ec193415d0179221e5fbddfcb9eeae9b') in 0.026221 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000014 seconds.
+ path: Assets/ART/base/main_zipai/ui/Main_RunBeard_atlas0_1.png
+ artifactKey: Guid(3d33611a6fc6042408d40f81283f6e32) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_zipai/ui/Main_RunBeard_atlas0_1.png using Guid(3d33611a6fc6042408d40f81283f6e32) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fa1d04ece2a9e32855401f865557e7a8') in 0.044405 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000016 seconds.
+ path: Assets/ART/base/main_zipai/ui/Main_RunBeard_atlas0_2.png
+ artifactKey: Guid(7a55f6ec0696fc14497129599bb74da0) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_zipai/ui/Main_RunBeard_atlas0_2.png using Guid(7a55f6ec0696fc14497129599bb74da0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9a7754b167a80f572501af5923f76027') in 0.046186 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 1.451980 seconds.
+ path: Assets/ART/base/main_zipaimajiang/ui/Main_RunBeardMaJiang_atlas0.png
+ artifactKey: Guid(a59cc3b621c896946bcb47de4f2899ef) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_zipaimajiang/ui/Main_RunBeardMaJiang_atlas0.png using Guid(a59cc3b621c896946bcb47de4f2899ef) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2987e707194a71381fc79f3f0ec75191') in 0.029019 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000015 seconds.
+ path: Assets/ART/base/main_zipaimajiang/ui/Main_RunBeardMaJiang_atlas0_2.png
+ artifactKey: Guid(83ac77ac2bc80454281bebcbb4dc3bab) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_zipaimajiang/ui/Main_RunBeardMaJiang_atlas0_2.png using Guid(83ac77ac2bc80454281bebcbb4dc3bab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ee781bbc6a920b04eb561cf62480a0a3') in 0.045021 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000021 seconds.
+ path: Assets/ART/base/main_zipaimajiang/ui/Main_RunBeardMaJiang_atlas0_1.png
+ artifactKey: Guid(f031cabff2d78864ebe97035332d3d81) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_zipaimajiang/ui/Main_RunBeardMaJiang_atlas0_1.png using Guid(f031cabff2d78864ebe97035332d3d81) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '575af981d03aba175c55f4ececc6908d') in 0.045450 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 3.938625 seconds.
+ path: Assets/ART/base/newgroup/ui/NewGroup_atlas0.png
+ artifactKey: Guid(582931ddf262f0a4186586cb35e2c2d6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/newgroup/ui/NewGroup_atlas0.png using Guid(582931ddf262f0a4186586cb35e2c2d6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '42df20bea6f23ed39d4c8b305459df25') in 0.028613 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000017 seconds.
+ path: Assets/ART/base/newgroup/ui/NewGroup_atlas2.png
+ artifactKey: Guid(1a06ff3302b584548810cf8aa6b14027) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/newgroup/ui/NewGroup_atlas2.png using Guid(1a06ff3302b584548810cf8aa6b14027) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0618ce98acf67fed2f7714cfd7248c52') in 0.009965 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000016 seconds.
+ path: Assets/ART/base/newgroup/ui/NewGroup_atlas1.png
+ artifactKey: Guid(34bb63cb7a9d9f34c84e07bc344ac150) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/newgroup/ui/NewGroup_atlas1.png using Guid(34bb63cb7a9d9f34c84e07bc344ac150) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ac76101811ab1de7f759085a374c736e') in 0.010246 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000017 seconds.
+ path: Assets/ART/base/newgroup/ui/NewGroup_atlas0_1.png
+ artifactKey: Guid(6eaab831153f8d44ba1b9f7a6ed132cc) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/newgroup/ui/NewGroup_atlas0_1.png using Guid(6eaab831153f8d44ba1b9f7a6ed132cc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0658f39eb97549bd97b4f5d007a3ecfb') in 0.043921 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 1.044215 seconds.
+ path: Assets/ART/base/rank/ui/Rank_atlas0.png
+ artifactKey: Guid(e929a91afa539db4e88d2a6fe13d47d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/rank/ui/Rank_atlas0.png using Guid(e929a91afa539db4e88d2a6fe13d47d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f5d69b81b62fe1ee07509dd11675e7d7') in 0.013373 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 12.765323 seconds.
+ path: Assets/ART/extend/majiang/changsha/ui/Info_MJ_ChangSha_atlas0.png
+ artifactKey: Guid(70054e44624cd904599e10f6bf03e9c0) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/majiang/changsha/ui/Info_MJ_ChangSha_atlas0.png using Guid(70054e44624cd904599e10f6bf03e9c0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8d162135568936a8bbe1a8255b4a0767') in 0.007826 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 7.599215 seconds.
+ path: Assets/ART/extend/majiang/hongzhong/ui/Info_MJ_HongZhong_atlas0.png
+ artifactKey: Guid(010ad3fa4f726e543a49a736de66ac07) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/majiang/hongzhong/ui/Info_MJ_HongZhong_atlas0.png using Guid(010ad3fa4f726e543a49a736de66ac07) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7d51549effbc85382182d176b0c046a4') in 0.007277 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 5.988860 seconds.
+ path: Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_prgz9s.mp3
+ artifactKey: Guid(ee4abfbead088d24c9c4c337e9ec2378) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_prgz9s.mp3 using Guid(ee4abfbead088d24c9c4c337e9ec2378) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '754faaf13beffd98082e1eb602909002') in 0.011121 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000014 seconds.
+ path: Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_prgz94.mp3
+ artifactKey: Guid(d4f626d0f08b45d46a90111d3e6122f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_prgz94.mp3 using Guid(d4f626d0f08b45d46a90111d3e6122f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8b8bb6cf8ac372df6eeabe3ab704d726') in 0.006883 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000016 seconds.
+ path: Assets/ART/extend/poker/runfast/ui/Info_Poker_RunFastNew_atlas0.png
+ artifactKey: Guid(6b333e650d5766f478883d11e89c0229) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/poker/runfast/ui/Info_Poker_RunFastNew_atlas0.png using Guid(6b333e650d5766f478883d11e89c0229) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '22a3071a457aa544708cdffe351c0d6b') in 0.007086 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000014 seconds.
+ path: Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_prgz97.mp3
+ artifactKey: Guid(81a448a6ae059f74b94b2abe00080f5d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_prgz97.mp3 using Guid(81a448a6ae059f74b94b2abe00080f5d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '81ead786b616bdc2039fa0ecea8c4c27') in 0.007371 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 21.639542 seconds.
+ path: Assets/ART/extend/majiang/zhuanzhuan/ui/Info_MJ_ZhuanZhuan_atlas0.png
+ artifactKey: Guid(d67becc1569457542b17d35debaa722a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/majiang/zhuanzhuan/ui/Info_MJ_ZhuanZhuan_atlas0.png using Guid(d67becc1569457542b17d35debaa722a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e070d146eaaef072e22f3d0052bd7a46') in 0.007309 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 10.054200 seconds.
+ path: Assets/ART/extend/zipai/fulushou/ui/Info_Poker_FuLuShou_atlas0.png
+ artifactKey: Guid(4c0e0d10c9939fa4ba8f1da42dacc07c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/zipai/fulushou/ui/Info_Poker_FuLuShou_atlas0.png using Guid(4c0e0d10c9939fa4ba8f1da42dacc07c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5d7d6c80b0d3f8a8cdbe67447ca8b967') in 0.009451 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 10.687395 seconds.
+ path: Assets/ART/extend/zipai/yueyangwaihuzi/ui/Info_Poker_YueYangWHZ_atlas0.png
+ artifactKey: Guid(cb37447a6f4644642b11f0b2f38e9e82) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/zipai/yueyangwaihuzi/ui/Info_Poker_YueYangWHZ_atlas0.png using Guid(cb37447a6f4644642b11f0b2f38e9e82) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '90763d41207187318f8b54caa5517768') in 0.008773 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 24.358056 seconds.
+ path: Assets/ART/extend/zipai/changdepaohuzi/ui/Info_Poker_ChangdeWHZ_atlas0.png
+ artifactKey: Guid(bdcfcd21cc2193b44aaa61922da5bc82) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/zipai/changdepaohuzi/ui/Info_Poker_ChangdeWHZ_atlas0.png using Guid(bdcfcd21cc2193b44aaa61922da5bc82) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dc03076aaa9370ccbf187e76218e677d') in 0.013738 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 42.189565 seconds.
+ path: Assets/ART/extend/zipai/changdepaohuzi/ui/Info_Poker_ChangdeWHZ_fui.bytes
+ artifactKey: Guid(24e9925e89dd08443b8c7401529dcee9) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/zipai/changdepaohuzi/ui/Info_Poker_ChangdeWHZ_fui.bytes using Guid(24e9925e89dd08443b8c7401529dcee9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5a8f6b3b195cbff7c30bae6c54c689af') in 0.009823 seconds
+Number of asset objects unloaded after import = 1
+========================================================================
+Received Import Request.
+ Time since last request: 11367.702436 seconds.
+ path: Assets/ART/base/lobby/ui/Lobby_atlas0.png
+ artifactKey: Guid(5b8e798641880274a81cfce7f2027429) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/lobby/ui/Lobby_atlas0.png using Guid(5b8e798641880274a81cfce7f2027429) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '88e3b1ba69594675ddd22165968a70f8') in 0.265575 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000025 seconds.
+ path: Assets/ART/extend/majiang/changsha/ui/Extend_MJ_ChangSha_atlas0.png
+ artifactKey: Guid(8a9623958f84dbe448962e77b4f18f74) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/majiang/changsha/ui/Extend_MJ_ChangSha_atlas0.png using Guid(8a9623958f84dbe448962e77b4f18f74) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ed7a07ec679a8c4ec5f373e3ceaa1f19') in 0.091789 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000024 seconds.
+ path: Assets/ART/base/main_pokemajiang/ui/Main_PokeMaJiang_atlas0.png
+ artifactKey: Guid(0cd3a658edc017049b1e8b434710df61) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_pokemajiang/ui/Main_PokeMaJiang_atlas0.png using Guid(0cd3a658edc017049b1e8b434710df61) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2558881010a477087b9c6f3f00cc0282') in 0.053233 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000020 seconds.
+ path: Assets/ART/base/newgroup/ui/NewGroup_atlas2.png
+ artifactKey: Guid(1a06ff3302b584548810cf8aa6b14027) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/newgroup/ui/NewGroup_atlas2.png using Guid(1a06ff3302b584548810cf8aa6b14027) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '037ae500f4595742b79ade7aabbe1cdc') in 0.008753 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000016 seconds.
+ path: Assets/ART/base/main_pokemajiang/ui/Main_PokeMaJiang_atlas0_1.png
+ artifactKey: Guid(d8fd0c0b1e2bb39428d7ad430480c6a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_pokemajiang/ui/Main_PokeMaJiang_atlas0_1.png using Guid(d8fd0c0b1e2bb39428d7ad430480c6a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f7be9026ba25de4618a96361db369b88') in 0.057966 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000017 seconds.
+ path: Assets/ART/base/main_majiang/ui/Main_Majiang_atlas0_1.png
+ artifactKey: Guid(431f7e2d464ddc942ad915022cabcefd) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_majiang/ui/Main_Majiang_atlas0_1.png using Guid(431f7e2d464ddc942ad915022cabcefd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '36eb865aa33251e314acd4256ff74ed9') in 0.015259 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000015 seconds.
+ path: Assets/ART/base/main_zipai/ui/Main_RunBeard_atlas0_1.png
+ artifactKey: Guid(3d33611a6fc6042408d40f81283f6e32) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_zipai/ui/Main_RunBeard_atlas0_1.png using Guid(3d33611a6fc6042408d40f81283f6e32) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3c6870d9387639750607ccb1518d0bd9') in 0.050532 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000014 seconds.
+ path: Assets/ART/base/main_majiang/ui/Main_Majiang_atlas0_2.png
+ artifactKey: Guid(7055831bde7c93045aa6190395e4773b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_majiang/ui/Main_Majiang_atlas0_2.png using Guid(7055831bde7c93045aa6190395e4773b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '01e7c000e57b0c9db5d45bafdb579757') in 0.043843 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000022 seconds.
+ path: Assets/ART/extend/zipai/fulushou/ui/Extend_Poker_FuLuShou_atlas0.png
+ artifactKey: Guid(352959cf096a48648b57fa5dbebb915e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/zipai/fulushou/ui/Extend_Poker_FuLuShou_atlas0.png using Guid(352959cf096a48648b57fa5dbebb915e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ef07399456940fad65534213045f8088') in 0.016390 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000023 seconds.
+ path: Assets/ART/base/newgroup/ui/FGAssist_atlas0.png
+ artifactKey: Guid(4f1aa27d131966c4cbd737cdddbc0bd1) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/newgroup/ui/FGAssist_atlas0.png using Guid(4f1aa27d131966c4cbd737cdddbc0bd1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1475bd5f92c2b013c4a053eacf7194da') in 0.008320 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000015 seconds.
+ path: Assets/ART/extend/zipai/yueyangwaihuzi/ui/Info_Poker_YueYangWHZ_atlas0.png
+ artifactKey: Guid(cb37447a6f4644642b11f0b2f38e9e82) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/zipai/yueyangwaihuzi/ui/Info_Poker_YueYangWHZ_atlas0.png using Guid(cb37447a6f4644642b11f0b2f38e9e82) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cb642e002ae7ec462f0e610c2cf3ff38') in 0.008013 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000015 seconds.
+ path: Assets/ART/base/lobby/ui/Lobby_atlas0_1.png
+ artifactKey: Guid(8395dc5e9c4802c45b0da68db8cd10e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/lobby/ui/Lobby_atlas0_1.png using Guid(8395dc5e9c4802c45b0da68db8cd10e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd5990f91bab03b443012a9041afcffcc') in 0.062150 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000015 seconds.
+ path: Assets/ART/base/main_majiang/ui/Main_Majiang_atlas0_4.png
+ artifactKey: Guid(133d0e482b3a64b40a0a9c21ac4311d7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_majiang/ui/Main_Majiang_atlas0_4.png using Guid(133d0e482b3a64b40a0a9c21ac4311d7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cc0229488797f7feaa4ebbfa443fec16') in 0.058863 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000014 seconds.
+ path: Assets/ART/base/main_majiang/ui/Main_Majiang_atlas0_3.png
+ artifactKey: Guid(24ee6d91cbcc3b342a2ef13543161f2b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_majiang/ui/Main_Majiang_atlas0_3.png using Guid(24ee6d91cbcc3b342a2ef13543161f2b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3ca90e5bfefc9bead598e105ea705ced') in 0.044311 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000014 seconds.
+ path: Assets/ART/base/main_pokemajiang/ui/Main_PokeMaJiang_atlas0_3.png
+ artifactKey: Guid(20e1014030102b14c95f89b7f6cbb41c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_pokemajiang/ui/Main_PokeMaJiang_atlas0_3.png using Guid(20e1014030102b14c95f89b7f6cbb41c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f559bf10e501430a34ed34c1ce350bb8') in 0.043050 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000016 seconds.
+ path: Assets/ART/base/main_zipaimajiang/ui/Main_RunBeardMaJiang_atlas0.png
+ artifactKey: Guid(a59cc3b621c896946bcb47de4f2899ef) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_zipaimajiang/ui/Main_RunBeardMaJiang_atlas0.png using Guid(a59cc3b621c896946bcb47de4f2899ef) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '40cffc5423335be3e215c60f584299c7') in 0.024550 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000022 seconds.
+ path: Assets/ART/extend/zipai/yueyangwaihuzi/ui/Extend_Poker_YueYangWHZ_atlas0.png
+ artifactKey: Guid(81ed6fd95d5b63746a00e489f91cd3ec) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/zipai/yueyangwaihuzi/ui/Extend_Poker_YueYangWHZ_atlas0.png using Guid(81ed6fd95d5b63746a00e489f91cd3ec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3a5ac5c36afac307652f6d0f248f9ccb') in 0.016871 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000017 seconds.
+ path: Assets/ART/base/lobby/ui/Lobby_atlas_xyf8bm.png
+ artifactKey: Guid(c38ab368956c7264cbac086e24ea3bce) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/lobby/ui/Lobby_atlas_xyf8bm.png using Guid(c38ab368956c7264cbac086e24ea3bce) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '88d85187f3cb76b91159f5b2dac081ad') in 0.026616 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000015 seconds.
+ path: Assets/ART/extend/zipai/changdepaohuzi/ui/Info_Poker_ChangdeWHZ_atlas0.png
+ artifactKey: Guid(bdcfcd21cc2193b44aaa61922da5bc82) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/zipai/changdepaohuzi/ui/Info_Poker_ChangdeWHZ_atlas0.png using Guid(bdcfcd21cc2193b44aaa61922da5bc82) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '248eb331e546dad198d61e1801852783') in 0.012432 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000017 seconds.
+ path: Assets/ART/base/mail/ui/Mail_atlas0.png
+ artifactKey: Guid(77102410aabdeef448ff19a968dd3db6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/mail/ui/Mail_atlas0.png using Guid(77102410aabdeef448ff19a968dd3db6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '13d4f2cd4e066cffdcfe42c3b53bb4ea') in 0.016189 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000015 seconds.
+ path: Assets/ART/base/main_majiang/ui/Main_Majiang_atlas0.png
+ artifactKey: Guid(fad14995ccbeef64dae917a6cd00579a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_majiang/ui/Main_Majiang_atlas0.png using Guid(fad14995ccbeef64dae917a6cd00579a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'adb89bbfb9ca21b5e47563a2a2af0709') in 0.047149 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000014 seconds.
+ path: Assets/ART/base/login/ui/Login_atlas0.png
+ artifactKey: Guid(4c303399cbbfce041b05de0f48c540f8) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/login/ui/Login_atlas0.png using Guid(4c303399cbbfce041b05de0f48c540f8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd486de369556f9e532c34800c45d93a3') in 0.009359 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000017 seconds.
+ path: Assets/ART/extend/majiang/hongzhong/ui/Extend_MJ_HongZhong_atlas0.png
+ artifactKey: Guid(b5be747168631fb48b3e7759530a27df) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/majiang/hongzhong/ui/Extend_MJ_HongZhong_atlas0.png using Guid(b5be747168631fb48b3e7759530a27df) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '162d1a9ab47f9de2f2bc1d7205cdf7d4') in 0.006268 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000014 seconds.
+ path: Assets/ART/base/main_poker/ui/Main_Poker_atlas0.png
+ artifactKey: Guid(676124bd5d9240f41af30300764e9b9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_poker/ui/Main_Poker_atlas0.png using Guid(676124bd5d9240f41af30300764e9b9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fd36c88624b3a501f92c405a6b7f84ea') in 0.011404 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000016 seconds.
+ path: Assets/ART/extend/majiang/zhuanzhuan/ui/Extend_MJ_ZhuanZhuan_atlas0.png
+ artifactKey: Guid(da3324a5283a8ea479d6c8ae0577214f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/majiang/zhuanzhuan/ui/Extend_MJ_ZhuanZhuan_atlas0.png using Guid(da3324a5283a8ea479d6c8ae0577214f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8a4d5166195db38b45f4ff4d68741bcd') in 0.008742 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000015 seconds.
+ path: Assets/ART/extend/majiang/zhuanzhuan/ui/Info_MJ_ZhuanZhuan_atlas0.png
+ artifactKey: Guid(d67becc1569457542b17d35debaa722a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/majiang/zhuanzhuan/ui/Info_MJ_ZhuanZhuan_atlas0.png using Guid(d67becc1569457542b17d35debaa722a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '98eb3a7204d324b17f6a83b67ecfff37') in 0.006962 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000016 seconds.
+ path: Assets/ART/base/main_pokemajiang/ui/Main_PokeMaJiang_atlas0_4.png
+ artifactKey: Guid(efea5453ddb30ce42a073aa0b46128d0) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_pokemajiang/ui/Main_PokeMaJiang_atlas0_4.png using Guid(efea5453ddb30ce42a073aa0b46128d0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b8debd886d236ce0dd97c242a8bbf5b2') in 0.044278 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000017 seconds.
+ path: Assets/ART/base/main_zipaimajiang/ui/Main_RunBeardMaJiang_atlas0_2.png
+ artifactKey: Guid(83ac77ac2bc80454281bebcbb4dc3bab) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_zipaimajiang/ui/Main_RunBeardMaJiang_atlas0_2.png using Guid(83ac77ac2bc80454281bebcbb4dc3bab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '04a72fe12fb322902d9fdfa5883fa3ff') in 0.045063 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000020 seconds.
+ path: Assets/ART/base/main_zipai/ui/Main_RunBeard_atlas0_2.png
+ artifactKey: Guid(7a55f6ec0696fc14497129599bb74da0) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_zipai/ui/Main_RunBeard_atlas0_2.png using Guid(7a55f6ec0696fc14497129599bb74da0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a250be08f5e5cf5a7f53adc3ffe504ff') in 0.043254 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000014 seconds.
+ path: Assets/ART/base/newgroup/ui/NewGroup_atlas1.png
+ artifactKey: Guid(34bb63cb7a9d9f34c84e07bc344ac150) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/newgroup/ui/NewGroup_atlas1.png using Guid(34bb63cb7a9d9f34c84e07bc344ac150) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'abe1e069a507b14abf876119fa6ff3a3') in 0.010675 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000016 seconds.
+ path: Assets/ART/base/main_zipaimajiang/ui/Main_RunBeardMaJiang_atlas0_1.png
+ artifactKey: Guid(f031cabff2d78864ebe97035332d3d81) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_zipaimajiang/ui/Main_RunBeardMaJiang_atlas0_1.png using Guid(f031cabff2d78864ebe97035332d3d81) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '673c30f5d01e0d3a33d334a10c98a412') in 0.047482 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000026 seconds.
+ path: Assets/ART/base/rank/ui/Rank_atlas0.png
+ artifactKey: Guid(e929a91afa539db4e88d2a6fe13d47d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/rank/ui/Rank_atlas0.png using Guid(e929a91afa539db4e88d2a6fe13d47d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c63020454c54d6ae1bd3ada268e378c7') in 0.011832 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000021 seconds.
+ path: Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas0.png
+ artifactKey: Guid(ffb01e19f2e912d40a61f7890cb2175c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas0.png using Guid(ffb01e19f2e912d40a61f7890cb2175c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dc432792654ead16359da424af9c0b8e') in 0.045592 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000016 seconds.
+ path: Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas0_1.png
+ artifactKey: Guid(6a09e1df444136a41a5d6ff5278d423f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas0_1.png using Guid(6a09e1df444136a41a5d6ff5278d423f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5d61dae092abd069830304fd89fe0aea') in 0.008916 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000015 seconds.
+ path: Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas_prgzf7.png
+ artifactKey: Guid(9ecab0eb3d1edd648a018019faf0507b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/poker/runfast/ui/Extend_Poker_RunFastNew_atlas_prgzf7.png using Guid(9ecab0eb3d1edd648a018019faf0507b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '48aaca6b6822db0138b8e8468b41813f') in 0.009320 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000015 seconds.
+ path: Assets/ART/extend/poker/runfast/ui/Info_Poker_RunFastNew_atlas0.png
+ artifactKey: Guid(6b333e650d5766f478883d11e89c0229) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/poker/runfast/ui/Info_Poker_RunFastNew_atlas0.png using Guid(6b333e650d5766f478883d11e89c0229) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '199284e273ef0fb6efe2b9a951baa68c') in 0.008144 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000286 seconds.
+ path: Assets/ART/base/main_zipai/ui/Main_RunBeard_atlas0.png
+ artifactKey: Guid(d074815221c25a44795ed02963c13632) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_zipai/ui/Main_RunBeard_atlas0.png using Guid(d074815221c25a44795ed02963c13632) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '29b4acb8bfda2078e004f271f898f553') in 0.026526 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000019 seconds.
+ path: Assets/ART/extend/majiang/changsha/ui/Info_MJ_ChangSha_atlas0.png
+ artifactKey: Guid(70054e44624cd904599e10f6bf03e9c0) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/majiang/changsha/ui/Info_MJ_ChangSha_atlas0.png using Guid(70054e44624cd904599e10f6bf03e9c0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '86b71d904c63cc803a4229b528f88b39') in 0.007101 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000026 seconds.
+ path: Assets/ART/extend/majiang/hongzhong/ui/Info_MJ_HongZhong_atlas0.png
+ artifactKey: Guid(010ad3fa4f726e543a49a736de66ac07) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/majiang/hongzhong/ui/Info_MJ_HongZhong_atlas0.png using Guid(010ad3fa4f726e543a49a736de66ac07) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '61a78f05f5e649c58b417087aab47ccb') in 0.006716 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000014 seconds.
+ path: Assets/ART/extend/zipai/fulushou/ui/Info_Poker_FuLuShou_atlas0.png
+ artifactKey: Guid(4c0e0d10c9939fa4ba8f1da42dacc07c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/zipai/fulushou/ui/Info_Poker_FuLuShou_atlas0.png using Guid(4c0e0d10c9939fa4ba8f1da42dacc07c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '60a9b84fe6847b2db714166f7533bffe') in 0.006569 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000014 seconds.
+ path: Assets/ART/base/newgroup/ui/NewGroup_atlas0_1.png
+ artifactKey: Guid(6eaab831153f8d44ba1b9f7a6ed132cc) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/newgroup/ui/NewGroup_atlas0_1.png using Guid(6eaab831153f8d44ba1b9f7a6ed132cc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '919b3868313780f0d8ca2e9308ef5eb0') in 0.043511 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000014 seconds.
+ path: Assets/ART/base/newgroup/ui/NewGroup_atlas0.png
+ artifactKey: Guid(582931ddf262f0a4186586cb35e2c2d6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/newgroup/ui/NewGroup_atlas0.png using Guid(582931ddf262f0a4186586cb35e2c2d6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '85f8b0c399fe81280eb58ced72638001') in 0.026325 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000017 seconds.
+ path: Assets/ART/base/main_pokemajiang/ui/Main_PokeMaJiang_atlas0_2.png
+ artifactKey: Guid(b7946b91fab87364db5ea45dcdab97cf) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/main_pokemajiang/ui/Main_PokeMaJiang_atlas0_2.png using Guid(b7946b91fab87364db5ea45dcdab97cf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2bbd1d9c1c312a233a750ad62a8eab5e') in 0.042604 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000016 seconds.
+ path: Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas0.png
+ artifactKey: Guid(916287857f1e0aa49ab583bf96a77a43) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/extend/zipai/changdepaohuzi/ui/Extend_Poker_ChangdeWHZ_atlas0.png using Guid(916287857f1e0aa49ab583bf96a77a43) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e10ac9c5a7ca4dba341485c669e450fa') in 0.057126 seconds
+Number of asset objects unloaded after import = 2
+========================================================================
+Received Import Request.
+ Time since last request: 0.000016 seconds.
+ path: Assets/ART/base/lobby/ui/Lobby_atlas_j046clu.png
+ artifactKey: Guid(82b5eb793a40447479db8698d97e50d6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Number of updated assets reloaded before import = 0
+Start importing Assets/ART/base/lobby/ui/Lobby_atlas_j046clu.png using Guid(82b5eb793a40447479db8698d97e50d6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0a30efb7a35e06cc8e0bb25afd2efe5b') in 0.026127 seconds
+Number of asset objects unloaded after import = 2