|
|
@ -13,15 +13,24 @@ end
|
||||||
function M:init()
|
function M:init()
|
||||||
local view = self._view
|
local view = self._view
|
||||||
|
|
||||||
local bg = view.transform:GetComponent(typeof(UnityEngine.UI.Image))
|
|
||||||
bg.sprite = CommonUISprite:GetSprite("bg1")
|
|
||||||
|
|
||||||
local btnBack = view.transform:Find("btnBack")
|
local btnBack = view.transform:Find("btnBack")
|
||||||
local btnBackBg = btnBack:GetComponent(typeof(UnityEngine.UI.Image))
|
local btnBackBg = btnBack:GetComponent(typeof(UnityEngine.UI.Image))
|
||||||
btnBackBg.sprite = CommonUISprite:GetSprite("arrow1")
|
btnBackBg.sprite = CommonUISprite:GetSprite("arrow1")
|
||||||
btnBack = btnBack:GetComponent(typeof(UnityEngine.UI.Button))
|
btnBack = btnBack:GetComponent(typeof(UnityEngine.UI.Button))
|
||||||
LuaUIHelper:AddButtonClick(btnBack, function()
|
LuaUIHelper:AddButtonClick(btnBack, function()
|
||||||
ViewManager.ChangeView(ViewManager.View_MainNew)
|
UIManager.ShowUI(UIManager.LobbyView)
|
||||||
|
end)
|
||||||
|
|
||||||
|
local btnReset = view.transform:Find("btnReset")
|
||||||
|
btnReset = btnReset:GetComponent(typeof(UnityEngine.UI.Button))
|
||||||
|
LuaUIHelper:AddButtonClick(btnReset, function()
|
||||||
|
|
||||||
|
end)
|
||||||
|
|
||||||
|
local btnFilter = view.transform:Find("btnFilter")
|
||||||
|
btnFilter = btnFilter:GetComponent(typeof(UnityEngine.UI.Button))
|
||||||
|
LuaUIHelper:AddButtonClick(btnFilter, function()
|
||||||
|
|
||||||
end)
|
end)
|
||||||
|
|
||||||
self.titleCopy = view.transform:Find("scroll/Viewport/Content/imageTitle")
|
self.titleCopy = view.transform:Find("scroll/Viewport/Content/imageTitle")
|
||||||
|
|
@ -34,9 +43,9 @@ end
|
||||||
|
|
||||||
function M:SetList(v)
|
function M:SetList(v)
|
||||||
for index, value in ipairs(self.list) do
|
for index, value in ipairs(self.list) do
|
||||||
value.goTitle:SetActive(false)
|
value.rectTitle.gameObject:SetActive(false)
|
||||||
value.rectTs:SetActive(false)
|
value.rectTs.gameObject:SetActive(false)
|
||||||
value.rectRank:SetActive(false)
|
value.rectRank.gameObject:SetActive(false)
|
||||||
end
|
end
|
||||||
for index, value in ipairs(v) do
|
for index, value in ipairs(v) do
|
||||||
if index > #self.list then
|
if index > #self.list then
|
||||||
|
|
@ -142,6 +151,7 @@ function M:ShowData(indexTemp, val, v)
|
||||||
end
|
end
|
||||||
listRank[index].textName.text = value.name
|
listRank[index].textName.text = value.name
|
||||||
listRank[index].goItem.gameObject:SetActive(true)
|
listRank[index].goItem.gameObject:SetActive(true)
|
||||||
|
listRank[index].Animator:Play("stop", -1, 0)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
@ -156,9 +166,16 @@ end
|
||||||
function M:OnClickItem(val)
|
function M:OnClickItem(val)
|
||||||
-- print("按键值:" .. val.indexList .. "=" .. val.type .. "=" .. val.kind .. "=" .. val.index)
|
-- print("按键值:" .. val.indexList .. "=" .. val.type .. "=" .. val.kind .. "=" .. val.index)
|
||||||
local temp = FilterData[val.type]
|
local temp = FilterData[val.type]
|
||||||
if val.kind == "ts" then
|
if val.kind == "Ts" then
|
||||||
for index, value in ipairs(temp.ts.data) do
|
for index, value in ipairs(temp.ts.data) do
|
||||||
if val.index == index then
|
if val.index == index then
|
||||||
|
value.isShow = not value.isShow
|
||||||
|
local d = self.list[val.indexList].TS.list[index]
|
||||||
|
if value.isShow then
|
||||||
|
d.Animator:Play("open", -1, 0)
|
||||||
|
else
|
||||||
|
d.Animator:Play("close", -1, 0)
|
||||||
|
end
|
||||||
break
|
break
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
@ -170,6 +187,9 @@ function M:OnClickItem(val)
|
||||||
local v = index % 4
|
local v = index % 4
|
||||||
if v == 1 then
|
if v == 1 then
|
||||||
value.isShow = not value.isShow
|
value.isShow = not value.isShow
|
||||||
|
data[index + 1].isShow = value.isShow
|
||||||
|
data[index + 2].isShow = value.isShow
|
||||||
|
data[index + 3].isShow = value.isShow
|
||||||
if value.isShow then
|
if value.isShow then
|
||||||
listRank[index].Animator:Play("open", -1, 0)
|
listRank[index].Animator:Play("open", -1, 0)
|
||||||
listRank[index + 1].Animator:Play("open", -1, 0)
|
listRank[index + 1].Animator:Play("open", -1, 0)
|
||||||
|
|
@ -184,21 +204,64 @@ function M:OnClickItem(val)
|
||||||
else
|
else
|
||||||
value.isShow = not value.isShow
|
value.isShow = not value.isShow
|
||||||
v = index - v
|
v = index - v
|
||||||
print("这是数字" .. v .. "=" .. index)
|
if v % 4 == 0 and index % 4 == 0 then
|
||||||
if value.isShow then
|
v = v - 4
|
||||||
listRank[index].Animator:Play("open", -1, 0)
|
|
||||||
else
|
|
||||||
listRank[index].Animator:Play("close", -1, 0)
|
|
||||||
end
|
end
|
||||||
print("什么鬼" ..
|
|
||||||
tostring(data[v + 2].isShow) ..
|
local animTimeIndex = LuaUIHelper:GetAnimatorAormalizedTime(listRank[index].Animator, true)
|
||||||
tostring(data[v + 3].isShow) .. tostring(data[v + 4].isShow))
|
if value.isShow then
|
||||||
|
if not LuaUIHelper:GetAnimatorIsName(listRank[index].Animator, "open") then
|
||||||
|
if animTimeIndex > 1 then
|
||||||
|
animTimeIndex = 1
|
||||||
|
end
|
||||||
|
if not LuaUIHelper:GetAnimatorIsName(listRank[index].Animator, "close") then
|
||||||
|
animTimeIndex = 1
|
||||||
|
else
|
||||||
|
animTimeIndex = 1 - animTimeIndex
|
||||||
|
end
|
||||||
|
listRank[index].Animator:Play("open", -1, animTimeIndex)
|
||||||
|
end
|
||||||
|
else
|
||||||
|
if not LuaUIHelper:GetAnimatorIsName(listRank[index].Animator, "close") then
|
||||||
|
if animTimeIndex > 1 then
|
||||||
|
animTimeIndex = 1
|
||||||
|
end
|
||||||
|
if not LuaUIHelper:GetAnimatorIsName(listRank[index].Animator, "open") then
|
||||||
|
animTimeIndex = 1
|
||||||
|
else
|
||||||
|
animTimeIndex = 1 - animTimeIndex
|
||||||
|
end
|
||||||
|
listRank[index].Animator:Play("close", -1, animTimeIndex)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
local animTimeHead = LuaUIHelper:GetAnimatorAormalizedTime(listRank[v + 1].Animator, true)
|
||||||
if data[v + 2].isShow and data[v + 3].isShow and data[v + 4].isShow then
|
if data[v + 2].isShow and data[v + 3].isShow and data[v + 4].isShow then
|
||||||
data[v + 1].isShow = true
|
data[v + 1].isShow = true
|
||||||
listRank[v + 1].Animator:Play("open", -1, 0)
|
if not LuaUIHelper:GetAnimatorIsName(listRank[v + 1].Animator, "open") then
|
||||||
|
if animTimeHead > 1 then
|
||||||
|
animTimeHead = 1
|
||||||
|
end
|
||||||
|
if not LuaUIHelper:GetAnimatorIsName(listRank[v + 1].Animator, "close") then
|
||||||
|
animTimeHead = 1
|
||||||
|
listRank[v + 1].Animator:Play("open", -1, animTimeHead)
|
||||||
|
else
|
||||||
|
listRank[v + 1].Animator:Play("open", -1, 1 - animTimeHead)
|
||||||
|
end
|
||||||
|
end
|
||||||
else
|
else
|
||||||
data[v + 1].isShow = false
|
data[v + 1].isShow = false
|
||||||
listRank[v + 1].Animator:Play("close", -1, 0)
|
if not LuaUIHelper:GetAnimatorIsName(listRank[v + 1].Animator, "close") then
|
||||||
|
if animTimeHead > 1 then
|
||||||
|
animTimeHead = 1
|
||||||
|
end
|
||||||
|
if not LuaUIHelper:GetAnimatorIsName(listRank[v + 1].Animator, "open") then
|
||||||
|
animTimeHead = 1
|
||||||
|
listRank[v + 1].Animator:Play("close", -1, animTimeHead)
|
||||||
|
else
|
||||||
|
listRank[v + 1].Animator:Play("close", -1, 1 - animTimeHead)
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
break
|
break
|
||||||
|
|
|
||||||
|
|
@ -18,12 +18,12 @@ function M:init(view)
|
||||||
LuaUIHelper:AddButtonClick(btnNews, function()
|
LuaUIHelper:AddButtonClick(btnNews, function()
|
||||||
|
|
||||||
end)
|
end)
|
||||||
local btnFilter = view:Find("btnFilter")
|
self.btnFilter = view:Find("btnFilter")
|
||||||
self.btnFilter_activepoint = btnFilter:Find("imagePoint")
|
self.btnFilter_activepoint = self.btnFilter:Find("imagePoint")
|
||||||
btnFilter = btnFilter:GetComponent(typeof(UnityEngine.UI.Button))
|
self.btnFilter = self.btnFilter:GetComponent(typeof(UnityEngine.UI.Button))
|
||||||
LuaUIHelper:AddButtonClick(btnFilter, function()
|
LuaUIHelper:AddButtonClick(self.btnFilter, function()
|
||||||
local viewTemp = UIManager.ShowUI(UIManager.ViewFilter)
|
local viewTemp = UIManager.ShowUI(UIManager.ViewFilter)
|
||||||
viewTemp:SetList(self.aar_title[self.enumTitle.Home].page)
|
viewTemp:SetList(self.aar_title[self.selectTitle].page)
|
||||||
end)
|
end)
|
||||||
|
|
||||||
self.aar_title = {}
|
self.aar_title = {}
|
||||||
|
|
@ -73,7 +73,12 @@ function M:init(view)
|
||||||
end
|
end
|
||||||
|
|
||||||
function M:OnShowPage(val)
|
function M:OnShowPage(val)
|
||||||
|
self.selectTitle = self.aar_title[val].v
|
||||||
|
if #self.aar_title[val].page == 0 then
|
||||||
|
self.btnFilter.gameObject:SetActive(false)
|
||||||
|
else
|
||||||
|
self.btnFilter.gameObject:SetActive(true)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|
|
||||||
|
|
@ -2,14 +2,6 @@
|
||||||
"Version": 1,
|
"Version": 1,
|
||||||
"WorkspaceRootPath": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\",
|
"WorkspaceRootPath": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\",
|
||||||
"Documents": [
|
"Documents": [
|
||||||
{
|
|
||||||
"AbsoluteMoniker": "D:0:0:{D75A4DC2-9F64-A98D-0D87-0D117969F0D9}|Assembly-CSharp-Editor.csproj|d:\\unityproject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\editor\\customsettings.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
|
||||||
"RelativeMoniker": "D:0:0:{D75A4DC2-9F64-A98D-0D87-0D117969F0D9}|Assembly-CSharp-Editor.csproj|solutionrelative:assets\\scripts\\editor\\customsettings.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\vercheck.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
|
||||||
"RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\vercheck.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|d:\\unityproject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\core\\luauihelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
"AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|d:\\unityproject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\core\\luauihelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||||
"RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\core\\luauihelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
"RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\core\\luauihelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||||
|
|
@ -19,8 +11,8 @@
|
||||||
"RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\hotupdate.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
"RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\hotupdate.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\source\\generate\\hotupdatewrap.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
"AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\vercheck.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||||
"RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\source\\generate\\hotupdatewrap.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
"RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\vercheck.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\core\\pageslidermanager.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
"AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\core\\pageslidermanager.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||||
|
|
@ -54,23 +46,11 @@
|
||||||
"DocumentGroups": [
|
"DocumentGroups": [
|
||||||
{
|
{
|
||||||
"DockedWidth": 222,
|
"DockedWidth": 222,
|
||||||
"SelectedChildIndex": 2,
|
"SelectedChildIndex": 0,
|
||||||
"Children": [
|
"Children": [
|
||||||
{
|
{
|
||||||
"$type": "Document",
|
"$type": "Document",
|
||||||
"DocumentIndex": 4,
|
"DocumentIndex": 1,
|
||||||
"Title": "HotupdateWrap.cs",
|
|
||||||
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Source\\Generate\\HotupdateWrap.cs",
|
|
||||||
"RelativeDocumentMoniker": "Assets\\Source\\Generate\\HotupdateWrap.cs",
|
|
||||||
"ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Source\\Generate\\HotupdateWrap.cs",
|
|
||||||
"RelativeToolTip": "Assets\\Source\\Generate\\HotupdateWrap.cs",
|
|
||||||
"ViewState": "AgIAAAAAAAAAAAAAAAAAAAQAAAANAAAAAAAAAA==",
|
|
||||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
|
||||||
"WhenOpened": "2025-12-16T12:10:36.126Z"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"$type": "Document",
|
|
||||||
"DocumentIndex": 3,
|
|
||||||
"Title": "HotUpdate.cs",
|
"Title": "HotUpdate.cs",
|
||||||
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\HotUpdate.cs",
|
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\HotUpdate.cs",
|
||||||
"RelativeDocumentMoniker": "Assets\\Scripts\\HotUpdate.cs",
|
"RelativeDocumentMoniker": "Assets\\Scripts\\HotUpdate.cs",
|
||||||
|
|
@ -78,24 +58,12 @@
|
||||||
"RelativeToolTip": "Assets\\Scripts\\HotUpdate.cs",
|
"RelativeToolTip": "Assets\\Scripts\\HotUpdate.cs",
|
||||||
"ViewState": "AgIAAJcAAAAAAAAAAAAAwK4AAAAAAAAAAAAAAA==",
|
"ViewState": "AgIAAJcAAAAAAAAAAAAAwK4AAAAAAAAAAAAAAA==",
|
||||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||||
"WhenOpened": "2025-12-16T11:52:29.165Z"
|
"WhenOpened": "2025-12-16T11:52:29.165Z",
|
||||||
},
|
|
||||||
{
|
|
||||||
"$type": "Document",
|
|
||||||
"DocumentIndex": 0,
|
|
||||||
"Title": "CustomSettings.cs",
|
|
||||||
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Editor\\CustomSettings.cs",
|
|
||||||
"RelativeDocumentMoniker": "Assets\\Scripts\\Editor\\CustomSettings.cs",
|
|
||||||
"ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Editor\\CustomSettings.cs",
|
|
||||||
"RelativeToolTip": "Assets\\Scripts\\Editor\\CustomSettings.cs",
|
|
||||||
"ViewState": "AgIAAJ4AAAAAAAAAAADgv7IAAAAxAAAAAAAAAA==",
|
|
||||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
|
||||||
"WhenOpened": "2025-12-12T10:00:55.514Z",
|
|
||||||
"EditorCaption": ""
|
"EditorCaption": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"$type": "Document",
|
"$type": "Document",
|
||||||
"DocumentIndex": 1,
|
"DocumentIndex": 2,
|
||||||
"Title": "VerCheck.cs",
|
"Title": "VerCheck.cs",
|
||||||
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\VerCheck.cs",
|
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\VerCheck.cs",
|
||||||
"RelativeDocumentMoniker": "Assets\\Scripts\\VerCheck.cs",
|
"RelativeDocumentMoniker": "Assets\\Scripts\\VerCheck.cs",
|
||||||
|
|
@ -107,7 +75,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"$type": "Document",
|
"$type": "Document",
|
||||||
"DocumentIndex": 6,
|
"DocumentIndex": 4,
|
||||||
"Title": "BuildBaseWindow.cs",
|
"Title": "BuildBaseWindow.cs",
|
||||||
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Editor\\BuildBaseWindow.cs",
|
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Editor\\BuildBaseWindow.cs",
|
||||||
"RelativeDocumentMoniker": "Assets\\Scripts\\Editor\\BuildBaseWindow.cs",
|
"RelativeDocumentMoniker": "Assets\\Scripts\\Editor\\BuildBaseWindow.cs",
|
||||||
|
|
@ -119,7 +87,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"$type": "Document",
|
"$type": "Document",
|
||||||
"DocumentIndex": 5,
|
"DocumentIndex": 3,
|
||||||
"Title": "PageSliderManager.cs",
|
"Title": "PageSliderManager.cs",
|
||||||
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\PageSliderManager.cs",
|
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\PageSliderManager.cs",
|
||||||
"RelativeDocumentMoniker": "Assets\\Scripts\\Core\\PageSliderManager.cs",
|
"RelativeDocumentMoniker": "Assets\\Scripts\\Core\\PageSliderManager.cs",
|
||||||
|
|
@ -131,7 +99,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"$type": "Document",
|
"$type": "Document",
|
||||||
"DocumentIndex": 9,
|
"DocumentIndex": 7,
|
||||||
"Title": "LuaUIHelperSprite.cs",
|
"Title": "LuaUIHelperSprite.cs",
|
||||||
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelperSprite.cs",
|
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelperSprite.cs",
|
||||||
"RelativeDocumentMoniker": "Assets\\Scripts\\Core\\LuaUIHelperSprite.cs",
|
"RelativeDocumentMoniker": "Assets\\Scripts\\Core\\LuaUIHelperSprite.cs",
|
||||||
|
|
@ -149,7 +117,7 @@
|
||||||
"Children": [
|
"Children": [
|
||||||
{
|
{
|
||||||
"$type": "Document",
|
"$type": "Document",
|
||||||
"DocumentIndex": 7,
|
"DocumentIndex": 5,
|
||||||
"Title": "LuaUIHelperText.cs",
|
"Title": "LuaUIHelperText.cs",
|
||||||
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelperText.cs",
|
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelperText.cs",
|
||||||
"RelativeDocumentMoniker": "Assets\\Scripts\\Core\\LuaUIHelperText.cs",
|
"RelativeDocumentMoniker": "Assets\\Scripts\\Core\\LuaUIHelperText.cs",
|
||||||
|
|
@ -161,7 +129,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"$type": "Document",
|
"$type": "Document",
|
||||||
"DocumentIndex": 8,
|
"DocumentIndex": 6,
|
||||||
"Title": "LuaNetClient.cs",
|
"Title": "LuaNetClient.cs",
|
||||||
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaNetClient.cs",
|
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaNetClient.cs",
|
||||||
"RelativeDocumentMoniker": "Assets\\Scripts\\Core\\LuaNetClient.cs",
|
"RelativeDocumentMoniker": "Assets\\Scripts\\Core\\LuaNetClient.cs",
|
||||||
|
|
@ -173,20 +141,20 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"$type": "Document",
|
"$type": "Document",
|
||||||
"DocumentIndex": 2,
|
"DocumentIndex": 0,
|
||||||
"Title": "LuaUIHelper.cs",
|
"Title": "LuaUIHelper.cs",
|
||||||
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelper.cs",
|
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelper.cs",
|
||||||
"RelativeDocumentMoniker": "Assets\\Scripts\\Core\\LuaUIHelper.cs",
|
"RelativeDocumentMoniker": "Assets\\Scripts\\Core\\LuaUIHelper.cs",
|
||||||
"ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelper.cs",
|
"ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelper.cs",
|
||||||
"RelativeToolTip": "Assets\\Scripts\\Core\\LuaUIHelper.cs",
|
"RelativeToolTip": "Assets\\Scripts\\Core\\LuaUIHelper.cs",
|
||||||
"ViewState": "AgIAAHEBAAAAAAAAAAAIwJwBAAApAAAAAAAAAA==",
|
"ViewState": "AgIAAJoBAAAAAAAAAAAcwLABAAAFAAAAAAAAAA==",
|
||||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||||
"WhenOpened": "2025-11-06T12:57:44.98Z",
|
"WhenOpened": "2025-11-06T12:57:44.98Z",
|
||||||
"EditorCaption": ""
|
"EditorCaption": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"$type": "Document",
|
"$type": "Document",
|
||||||
"DocumentIndex": 10,
|
"DocumentIndex": 8,
|
||||||
"Title": "GameApplication.cs",
|
"Title": "GameApplication.cs",
|
||||||
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\GameApplication.cs",
|
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\GameApplication.cs",
|
||||||
"RelativeDocumentMoniker": "Assets\\Scripts\\GameApplication.cs",
|
"RelativeDocumentMoniker": "Assets\\Scripts\\GameApplication.cs",
|
||||||
|
|
|
||||||
|
|
@ -2,26 +2,22 @@
|
||||||
"Version": 1,
|
"Version": 1,
|
||||||
"WorkspaceRootPath": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\",
|
"WorkspaceRootPath": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\",
|
||||||
"Documents": [
|
"Documents": [
|
||||||
|
{
|
||||||
|
"AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\core\\pageslidermanager.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||||
|
"RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\core\\pageslidermanager.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|d:\\unityproject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\core\\luauihelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
"AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|d:\\unityproject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\core\\luauihelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||||
"RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\core\\luauihelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
"RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\core\\luauihelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\source\\generate\\hotupdatewrap.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
"AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|d:\\unityproject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\hotupdate.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||||
"RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\source\\generate\\hotupdatewrap.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
"RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\hotupdate.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\vercheck.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
"AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\vercheck.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||||
"RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\vercheck.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
"RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\vercheck.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\hotupdate.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
|
||||||
"RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\hotupdate.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\core\\pageslidermanager.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
|
||||||
"RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\core\\pageslidermanager.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"AbsoluteMoniker": "D:0:0:{D75A4DC2-9F64-A98D-0D87-0D117969F0D9}|Assembly-CSharp-Editor.csproj|D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\editor\\buildbasewindow.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
"AbsoluteMoniker": "D:0:0:{D75A4DC2-9F64-A98D-0D87-0D117969F0D9}|Assembly-CSharp-Editor.csproj|D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\editor\\buildbasewindow.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||||
"RelativeMoniker": "D:0:0:{D75A4DC2-9F64-A98D-0D87-0D117969F0D9}|Assembly-CSharp-Editor.csproj|solutionrelative:assets\\scripts\\editor\\buildbasewindow.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
"RelativeMoniker": "D:0:0:{D75A4DC2-9F64-A98D-0D87-0D117969F0D9}|Assembly-CSharp-Editor.csproj|solutionrelative:assets\\scripts\\editor\\buildbasewindow.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||||
|
|
@ -50,24 +46,11 @@
|
||||||
"DocumentGroups": [
|
"DocumentGroups": [
|
||||||
{
|
{
|
||||||
"DockedWidth": 222,
|
"DockedWidth": 222,
|
||||||
"SelectedChildIndex": 0,
|
"SelectedChildIndex": 3,
|
||||||
"Children": [
|
"Children": [
|
||||||
{
|
{
|
||||||
"$type": "Document",
|
"$type": "Document",
|
||||||
"DocumentIndex": 1,
|
"DocumentIndex": 2,
|
||||||
"Title": "HotupdateWrap.cs",
|
|
||||||
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Source\\Generate\\HotupdateWrap.cs",
|
|
||||||
"RelativeDocumentMoniker": "Assets\\Source\\Generate\\HotupdateWrap.cs",
|
|
||||||
"ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Source\\Generate\\HotupdateWrap.cs",
|
|
||||||
"RelativeToolTip": "Assets\\Source\\Generate\\HotupdateWrap.cs",
|
|
||||||
"ViewState": "AgIAAAAAAAAAAAAAAAAAAAQAAAANAAAAAAAAAA==",
|
|
||||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
|
||||||
"WhenOpened": "2025-12-16T12:10:36.126Z",
|
|
||||||
"EditorCaption": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"$type": "Document",
|
|
||||||
"DocumentIndex": 3,
|
|
||||||
"Title": "HotUpdate.cs",
|
"Title": "HotUpdate.cs",
|
||||||
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\HotUpdate.cs",
|
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\HotUpdate.cs",
|
||||||
"RelativeDocumentMoniker": "Assets\\Scripts\\HotUpdate.cs",
|
"RelativeDocumentMoniker": "Assets\\Scripts\\HotUpdate.cs",
|
||||||
|
|
@ -75,11 +58,12 @@
|
||||||
"RelativeToolTip": "Assets\\Scripts\\HotUpdate.cs",
|
"RelativeToolTip": "Assets\\Scripts\\HotUpdate.cs",
|
||||||
"ViewState": "AgIAAJcAAAAAAAAAAAAAwK4AAAAAAAAAAAAAAA==",
|
"ViewState": "AgIAAJcAAAAAAAAAAAAAwK4AAAAAAAAAAAAAAA==",
|
||||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||||
"WhenOpened": "2025-12-16T11:52:29.165Z"
|
"WhenOpened": "2025-12-16T11:52:29.165Z",
|
||||||
|
"EditorCaption": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"$type": "Document",
|
"$type": "Document",
|
||||||
"DocumentIndex": 2,
|
"DocumentIndex": 3,
|
||||||
"Title": "VerCheck.cs",
|
"Title": "VerCheck.cs",
|
||||||
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\VerCheck.cs",
|
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\VerCheck.cs",
|
||||||
"RelativeDocumentMoniker": "Assets\\Scripts\\VerCheck.cs",
|
"RelativeDocumentMoniker": "Assets\\Scripts\\VerCheck.cs",
|
||||||
|
|
@ -91,7 +75,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"$type": "Document",
|
"$type": "Document",
|
||||||
"DocumentIndex": 5,
|
"DocumentIndex": 4,
|
||||||
"Title": "BuildBaseWindow.cs",
|
"Title": "BuildBaseWindow.cs",
|
||||||
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Editor\\BuildBaseWindow.cs",
|
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Editor\\BuildBaseWindow.cs",
|
||||||
"RelativeDocumentMoniker": "Assets\\Scripts\\Editor\\BuildBaseWindow.cs",
|
"RelativeDocumentMoniker": "Assets\\Scripts\\Editor\\BuildBaseWindow.cs",
|
||||||
|
|
@ -103,19 +87,20 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"$type": "Document",
|
"$type": "Document",
|
||||||
"DocumentIndex": 4,
|
"DocumentIndex": 0,
|
||||||
"Title": "PageSliderManager.cs",
|
"Title": "PageSliderManager.cs",
|
||||||
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\PageSliderManager.cs",
|
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\PageSliderManager.cs",
|
||||||
"RelativeDocumentMoniker": "Assets\\Scripts\\Core\\PageSliderManager.cs",
|
"RelativeDocumentMoniker": "Assets\\Scripts\\Core\\PageSliderManager.cs",
|
||||||
"ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\PageSliderManager.cs",
|
"ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\PageSliderManager.cs*",
|
||||||
"RelativeToolTip": "Assets\\Scripts\\Core\\PageSliderManager.cs",
|
"RelativeToolTip": "Assets\\Scripts\\Core\\PageSliderManager.cs*",
|
||||||
"ViewState": "AgIAANIDAAAAAAAAAABIwAUEAAABAAAAAAAAAA==",
|
"ViewState": "AgIAANcAAAAAAAAAAAAAAOMAAAAMAAAAAAAAAA==",
|
||||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||||
"WhenOpened": "2025-12-08T06:38:38.347Z"
|
"WhenOpened": "2025-12-08T06:38:38.347Z",
|
||||||
|
"EditorCaption": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"$type": "Document",
|
"$type": "Document",
|
||||||
"DocumentIndex": 8,
|
"DocumentIndex": 7,
|
||||||
"Title": "LuaUIHelperSprite.cs",
|
"Title": "LuaUIHelperSprite.cs",
|
||||||
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelperSprite.cs",
|
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelperSprite.cs",
|
||||||
"RelativeDocumentMoniker": "Assets\\Scripts\\Core\\LuaUIHelperSprite.cs",
|
"RelativeDocumentMoniker": "Assets\\Scripts\\Core\\LuaUIHelperSprite.cs",
|
||||||
|
|
@ -133,7 +118,7 @@
|
||||||
"Children": [
|
"Children": [
|
||||||
{
|
{
|
||||||
"$type": "Document",
|
"$type": "Document",
|
||||||
"DocumentIndex": 6,
|
"DocumentIndex": 5,
|
||||||
"Title": "LuaUIHelperText.cs",
|
"Title": "LuaUIHelperText.cs",
|
||||||
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelperText.cs",
|
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelperText.cs",
|
||||||
"RelativeDocumentMoniker": "Assets\\Scripts\\Core\\LuaUIHelperText.cs",
|
"RelativeDocumentMoniker": "Assets\\Scripts\\Core\\LuaUIHelperText.cs",
|
||||||
|
|
@ -145,7 +130,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"$type": "Document",
|
"$type": "Document",
|
||||||
"DocumentIndex": 7,
|
"DocumentIndex": 6,
|
||||||
"Title": "LuaNetClient.cs",
|
"Title": "LuaNetClient.cs",
|
||||||
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaNetClient.cs",
|
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaNetClient.cs",
|
||||||
"RelativeDocumentMoniker": "Assets\\Scripts\\Core\\LuaNetClient.cs",
|
"RelativeDocumentMoniker": "Assets\\Scripts\\Core\\LuaNetClient.cs",
|
||||||
|
|
@ -157,20 +142,20 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"$type": "Document",
|
"$type": "Document",
|
||||||
"DocumentIndex": 0,
|
"DocumentIndex": 1,
|
||||||
"Title": "LuaUIHelper.cs",
|
"Title": "LuaUIHelper.cs",
|
||||||
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelper.cs",
|
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelper.cs",
|
||||||
"RelativeDocumentMoniker": "Assets\\Scripts\\Core\\LuaUIHelper.cs",
|
"RelativeDocumentMoniker": "Assets\\Scripts\\Core\\LuaUIHelper.cs",
|
||||||
"ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelper.cs*",
|
"ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelper.cs",
|
||||||
"RelativeToolTip": "Assets\\Scripts\\Core\\LuaUIHelper.cs*",
|
"RelativeToolTip": "Assets\\Scripts\\Core\\LuaUIHelper.cs",
|
||||||
"ViewState": "AgIAAHEBAAAAAAAAAAAAwIEBAAAwAAAAAAAAAA==",
|
"ViewState": "AgIAAAMAAAAAAAAAAAAqwIIBAAAoAAAAAAAAAA==",
|
||||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||||
"WhenOpened": "2025-11-06T12:57:44.98Z",
|
"WhenOpened": "2025-11-06T12:57:44.98Z",
|
||||||
"EditorCaption": ""
|
"EditorCaption": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"$type": "Document",
|
"$type": "Document",
|
||||||
"DocumentIndex": 9,
|
"DocumentIndex": 8,
|
||||||
"Title": "GameApplication.cs",
|
"Title": "GameApplication.cs",
|
||||||
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\GameApplication.cs",
|
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\GameApplication.cs",
|
||||||
"RelativeDocumentMoniker": "Assets\\Scripts\\GameApplication.cs",
|
"RelativeDocumentMoniker": "Assets\\Scripts\\GameApplication.cs",
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 243 KiB |
|
|
@ -1,135 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: 9518a1457d09fd64f8c81d36eaf44860
|
|
||||||
TextureImporter:
|
|
||||||
internalIDToNameTable: []
|
|
||||||
externalObjects: {}
|
|
||||||
serializedVersion: 12
|
|
||||||
mipmaps:
|
|
||||||
mipMapMode: 0
|
|
||||||
enableMipMap: 0
|
|
||||||
sRGBTexture: 1
|
|
||||||
linearTexture: 0
|
|
||||||
fadeOut: 0
|
|
||||||
borderMipMap: 0
|
|
||||||
mipMapsPreserveCoverage: 0
|
|
||||||
alphaTestReferenceValue: 0.5
|
|
||||||
mipMapFadeDistanceStart: 1
|
|
||||||
mipMapFadeDistanceEnd: 3
|
|
||||||
bumpmap:
|
|
||||||
convertToNormalMap: 0
|
|
||||||
externalNormalMap: 0
|
|
||||||
heightScale: 0.25
|
|
||||||
normalMapFilter: 0
|
|
||||||
isReadable: 0
|
|
||||||
streamingMipmaps: 0
|
|
||||||
streamingMipmapsPriority: 0
|
|
||||||
vTOnly: 0
|
|
||||||
ignoreMasterTextureLimit: 0
|
|
||||||
grayScaleToAlpha: 0
|
|
||||||
generateCubemap: 6
|
|
||||||
cubemapConvolution: 0
|
|
||||||
seamlessCubemap: 0
|
|
||||||
textureFormat: 1
|
|
||||||
maxTextureSize: 2048
|
|
||||||
textureSettings:
|
|
||||||
serializedVersion: 2
|
|
||||||
filterMode: 1
|
|
||||||
aniso: 1
|
|
||||||
mipBias: 0
|
|
||||||
wrapU: 1
|
|
||||||
wrapV: 1
|
|
||||||
wrapW: 0
|
|
||||||
nPOTScale: 0
|
|
||||||
lightmap: 0
|
|
||||||
compressionQuality: 50
|
|
||||||
spriteMode: 1
|
|
||||||
spriteExtrude: 1
|
|
||||||
spriteMeshType: 1
|
|
||||||
alignment: 0
|
|
||||||
spritePivot: {x: 0.5, y: 0.5}
|
|
||||||
spritePixelsToUnits: 100
|
|
||||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
|
||||||
spriteGenerateFallbackPhysicsShape: 1
|
|
||||||
alphaUsage: 1
|
|
||||||
alphaIsTransparency: 1
|
|
||||||
spriteTessellationDetail: -1
|
|
||||||
textureType: 8
|
|
||||||
textureShape: 1
|
|
||||||
singleChannelComponent: 0
|
|
||||||
flipbookRows: 1
|
|
||||||
flipbookColumns: 1
|
|
||||||
maxTextureSizeSet: 0
|
|
||||||
compressionQualitySet: 0
|
|
||||||
textureFormatSet: 0
|
|
||||||
ignorePngGamma: 0
|
|
||||||
applyGammaDecoding: 0
|
|
||||||
cookieLightType: 1
|
|
||||||
platformSettings:
|
|
||||||
- serializedVersion: 3
|
|
||||||
buildTarget: DefaultTexturePlatform
|
|
||||||
maxTextureSize: 2048
|
|
||||||
resizeAlgorithm: 0
|
|
||||||
textureFormat: -1
|
|
||||||
textureCompression: 1
|
|
||||||
compressionQuality: 50
|
|
||||||
crunchedCompression: 0
|
|
||||||
allowsAlphaSplitting: 0
|
|
||||||
overridden: 0
|
|
||||||
androidETC2FallbackOverride: 0
|
|
||||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
||||||
- serializedVersion: 3
|
|
||||||
buildTarget: Standalone
|
|
||||||
maxTextureSize: 2048
|
|
||||||
resizeAlgorithm: 0
|
|
||||||
textureFormat: -1
|
|
||||||
textureCompression: 1
|
|
||||||
compressionQuality: 50
|
|
||||||
crunchedCompression: 0
|
|
||||||
allowsAlphaSplitting: 0
|
|
||||||
overridden: 0
|
|
||||||
androidETC2FallbackOverride: 0
|
|
||||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
||||||
- serializedVersion: 3
|
|
||||||
buildTarget: iPhone
|
|
||||||
maxTextureSize: 2048
|
|
||||||
resizeAlgorithm: 0
|
|
||||||
textureFormat: -1
|
|
||||||
textureCompression: 1
|
|
||||||
compressionQuality: 50
|
|
||||||
crunchedCompression: 0
|
|
||||||
allowsAlphaSplitting: 0
|
|
||||||
overridden: 0
|
|
||||||
androidETC2FallbackOverride: 0
|
|
||||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
||||||
- serializedVersion: 3
|
|
||||||
buildTarget: Android
|
|
||||||
maxTextureSize: 2048
|
|
||||||
resizeAlgorithm: 0
|
|
||||||
textureFormat: -1
|
|
||||||
textureCompression: 1
|
|
||||||
compressionQuality: 50
|
|
||||||
crunchedCompression: 0
|
|
||||||
allowsAlphaSplitting: 0
|
|
||||||
overridden: 0
|
|
||||||
androidETC2FallbackOverride: 0
|
|
||||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
||||||
spriteSheet:
|
|
||||||
serializedVersion: 2
|
|
||||||
sprites: []
|
|
||||||
outline: []
|
|
||||||
physicsShape: []
|
|
||||||
bones: []
|
|
||||||
spriteID: 5e97eb03825dee720800000000000000
|
|
||||||
internalID: 0
|
|
||||||
vertices: []
|
|
||||||
indices:
|
|
||||||
edges: []
|
|
||||||
weights: []
|
|
||||||
secondaryTextures: []
|
|
||||||
nameFileIdTable: {}
|
|
||||||
spritePackingTag:
|
|
||||||
pSDRemoveMatte: 0
|
|
||||||
pSDShowRemoveMatteOption: 0
|
|
||||||
userData:
|
|
||||||
assetBundleName: base/prefab/b0e54c5146b13d4608d0df953e17ef0f
|
|
||||||
assetBundleVariant:
|
|
||||||
|
|
@ -162,7 +162,7 @@ RectTransform:
|
||||||
- {fileID: 487682270168187552}
|
- {fileID: 487682270168187552}
|
||||||
- {fileID: 487682270228370121}
|
- {fileID: 487682270228370121}
|
||||||
m_Father: {fileID: 487682269292939090}
|
m_Father: {fileID: 487682269292939090}
|
||||||
m_RootOrder: 16
|
m_RootOrder: 20
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
m_AnchorMin: {x: 0.5, y: 0}
|
m_AnchorMin: {x: 0.5, y: 0}
|
||||||
m_AnchorMax: {x: 0.5, y: 1}
|
m_AnchorMax: {x: 0.5, y: 1}
|
||||||
|
|
@ -498,7 +498,7 @@ RectTransform:
|
||||||
m_ConstrainProportionsScale: 0
|
m_ConstrainProportionsScale: 0
|
||||||
m_Children: []
|
m_Children: []
|
||||||
m_Father: {fileID: 487682269292939090}
|
m_Father: {fileID: 487682269292939090}
|
||||||
m_RootOrder: 6
|
m_RootOrder: 10
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
m_AnchorMin: {x: 0.5, y: 1}
|
m_AnchorMin: {x: 0.5, y: 1}
|
||||||
m_AnchorMax: {x: 0.5, y: 1}
|
m_AnchorMax: {x: 0.5, y: 1}
|
||||||
|
|
@ -580,7 +580,7 @@ RectTransform:
|
||||||
m_Children:
|
m_Children:
|
||||||
- {fileID: 487682270320477369}
|
- {fileID: 487682270320477369}
|
||||||
m_Father: {fileID: 487682269292939090}
|
m_Father: {fileID: 487682269292939090}
|
||||||
m_RootOrder: 12
|
m_RootOrder: 16
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
m_AnchorMin: {x: 0.5, y: 1}
|
m_AnchorMin: {x: 0.5, y: 1}
|
||||||
m_AnchorMax: {x: 0.5, y: 1}
|
m_AnchorMax: {x: 0.5, y: 1}
|
||||||
|
|
@ -1563,7 +1563,7 @@ RectTransform:
|
||||||
- {fileID: 487682269985910658}
|
- {fileID: 487682269985910658}
|
||||||
- {fileID: 487682269882893785}
|
- {fileID: 487682269882893785}
|
||||||
m_Father: {fileID: 487682269292939090}
|
m_Father: {fileID: 487682269292939090}
|
||||||
m_RootOrder: 1
|
m_RootOrder: 5
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
m_AnchorMin: {x: 0.5, y: 1}
|
m_AnchorMin: {x: 0.5, y: 1}
|
||||||
m_AnchorMax: {x: 0.5, y: 1}
|
m_AnchorMax: {x: 0.5, y: 1}
|
||||||
|
|
@ -1683,7 +1683,7 @@ RectTransform:
|
||||||
m_ConstrainProportionsScale: 0
|
m_ConstrainProportionsScale: 0
|
||||||
m_Children: []
|
m_Children: []
|
||||||
m_Father: {fileID: 487682269292939090}
|
m_Father: {fileID: 487682269292939090}
|
||||||
m_RootOrder: 3
|
m_RootOrder: 7
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
m_AnchorMin: {x: 0.5, y: 1}
|
m_AnchorMin: {x: 0.5, y: 1}
|
||||||
m_AnchorMax: {x: 0.5, y: 1}
|
m_AnchorMax: {x: 0.5, y: 1}
|
||||||
|
|
@ -1912,6 +1912,10 @@ RectTransform:
|
||||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
m_ConstrainProportionsScale: 0
|
m_ConstrainProportionsScale: 0
|
||||||
m_Children:
|
m_Children:
|
||||||
|
- {fileID: 1135878039837604115}
|
||||||
|
- {fileID: 104359917031409509}
|
||||||
|
- {fileID: 332875199416893673}
|
||||||
|
- {fileID: 6468636358308169327}
|
||||||
- {fileID: 487682270390470179}
|
- {fileID: 487682270390470179}
|
||||||
- {fileID: 487682269134733828}
|
- {fileID: 487682269134733828}
|
||||||
- {fileID: 487682270227228720}
|
- {fileID: 487682270227228720}
|
||||||
|
|
@ -2084,7 +2088,7 @@ RectTransform:
|
||||||
m_Children:
|
m_Children:
|
||||||
- {fileID: 487682268954280178}
|
- {fileID: 487682268954280178}
|
||||||
m_Father: {fileID: 487682269292939090}
|
m_Father: {fileID: 487682269292939090}
|
||||||
m_RootOrder: 13
|
m_RootOrder: 17
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
m_AnchorMin: {x: 0.5, y: 1}
|
m_AnchorMin: {x: 0.5, y: 1}
|
||||||
m_AnchorMax: {x: 0.5, y: 1}
|
m_AnchorMax: {x: 0.5, y: 1}
|
||||||
|
|
@ -2280,7 +2284,7 @@ RectTransform:
|
||||||
m_ConstrainProportionsScale: 0
|
m_ConstrainProportionsScale: 0
|
||||||
m_Children: []
|
m_Children: []
|
||||||
m_Father: {fileID: 487682269292939090}
|
m_Father: {fileID: 487682269292939090}
|
||||||
m_RootOrder: 8
|
m_RootOrder: 12
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
m_AnchorMin: {x: 0.5, y: 1}
|
m_AnchorMin: {x: 0.5, y: 1}
|
||||||
m_AnchorMax: {x: 0.5, y: 1}
|
m_AnchorMax: {x: 0.5, y: 1}
|
||||||
|
|
@ -2714,7 +2718,7 @@ RectTransform:
|
||||||
m_Children:
|
m_Children:
|
||||||
- {fileID: 487682268991404737}
|
- {fileID: 487682268991404737}
|
||||||
m_Father: {fileID: 487682269292939090}
|
m_Father: {fileID: 487682269292939090}
|
||||||
m_RootOrder: 10
|
m_RootOrder: 14
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
m_AnchorMin: {x: 0.5, y: 1}
|
m_AnchorMin: {x: 0.5, y: 1}
|
||||||
m_AnchorMax: {x: 0.5, y: 1}
|
m_AnchorMax: {x: 0.5, y: 1}
|
||||||
|
|
@ -3146,7 +3150,7 @@ RectTransform:
|
||||||
m_ConstrainProportionsScale: 0
|
m_ConstrainProportionsScale: 0
|
||||||
m_Children: []
|
m_Children: []
|
||||||
m_Father: {fileID: 487682269292939090}
|
m_Father: {fileID: 487682269292939090}
|
||||||
m_RootOrder: 7
|
m_RootOrder: 11
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
m_AnchorMin: {x: 0.5, y: 1}
|
m_AnchorMin: {x: 0.5, y: 1}
|
||||||
m_AnchorMax: {x: 0.5, y: 1}
|
m_AnchorMax: {x: 0.5, y: 1}
|
||||||
|
|
@ -3707,7 +3711,7 @@ RectTransform:
|
||||||
- {fileID: 487682269723626954}
|
- {fileID: 487682269723626954}
|
||||||
- {fileID: 487682270373465519}
|
- {fileID: 487682270373465519}
|
||||||
m_Father: {fileID: 487682269292939090}
|
m_Father: {fileID: 487682269292939090}
|
||||||
m_RootOrder: 2
|
m_RootOrder: 6
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
m_AnchorMin: {x: 0.5, y: 1}
|
m_AnchorMin: {x: 0.5, y: 1}
|
||||||
m_AnchorMax: {x: 0.5, y: 1}
|
m_AnchorMax: {x: 0.5, y: 1}
|
||||||
|
|
@ -3912,7 +3916,7 @@ RectTransform:
|
||||||
- {fileID: 487682269159211005}
|
- {fileID: 487682269159211005}
|
||||||
- {fileID: 487682270204017537}
|
- {fileID: 487682270204017537}
|
||||||
m_Father: {fileID: 487682269292939090}
|
m_Father: {fileID: 487682269292939090}
|
||||||
m_RootOrder: 11
|
m_RootOrder: 15
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
m_AnchorMin: {x: 0.5, y: 1}
|
m_AnchorMin: {x: 0.5, y: 1}
|
||||||
m_AnchorMax: {x: 0.5, y: 1}
|
m_AnchorMax: {x: 0.5, y: 1}
|
||||||
|
|
@ -3991,7 +3995,7 @@ RectTransform:
|
||||||
- {fileID: 4435061787235051526}
|
- {fileID: 4435061787235051526}
|
||||||
- {fileID: 487682269838013122}
|
- {fileID: 487682269838013122}
|
||||||
m_Father: {fileID: 487682269292939090}
|
m_Father: {fileID: 487682269292939090}
|
||||||
m_RootOrder: 14
|
m_RootOrder: 18
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
m_AnchorMin: {x: 0.5, y: 1}
|
m_AnchorMin: {x: 0.5, y: 1}
|
||||||
m_AnchorMax: {x: 0.5, y: 1}
|
m_AnchorMax: {x: 0.5, y: 1}
|
||||||
|
|
@ -4314,7 +4318,7 @@ RectTransform:
|
||||||
- {fileID: 9045739225198022563}
|
- {fileID: 9045739225198022563}
|
||||||
- {fileID: 7583661353678978444}
|
- {fileID: 7583661353678978444}
|
||||||
m_Father: {fileID: 487682269292939090}
|
m_Father: {fileID: 487682269292939090}
|
||||||
m_RootOrder: 15
|
m_RootOrder: 19
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
m_AnchorMin: {x: 0.5, y: 1}
|
m_AnchorMin: {x: 0.5, y: 1}
|
||||||
m_AnchorMax: {x: 0.5, y: 1}
|
m_AnchorMax: {x: 0.5, y: 1}
|
||||||
|
|
@ -4363,7 +4367,7 @@ RectTransform:
|
||||||
- {fileID: 487682268714481418}
|
- {fileID: 487682268714481418}
|
||||||
- {fileID: 487682269971920916}
|
- {fileID: 487682269971920916}
|
||||||
m_Father: {fileID: 487682269292939090}
|
m_Father: {fileID: 487682269292939090}
|
||||||
m_RootOrder: 0
|
m_RootOrder: 4
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
m_AnchorMin: {x: 0.5, y: 1}
|
m_AnchorMin: {x: 0.5, y: 1}
|
||||||
m_AnchorMax: {x: 0.5, y: 1}
|
m_AnchorMax: {x: 0.5, y: 1}
|
||||||
|
|
@ -4718,7 +4722,7 @@ RectTransform:
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
m_AnchorMin: {x: 0, y: 1}
|
m_AnchorMin: {x: 0, y: 1}
|
||||||
m_AnchorMax: {x: 1, y: 1}
|
m_AnchorMax: {x: 1, y: 1}
|
||||||
m_AnchoredPosition: {x: 0, y: 0.00016137396}
|
m_AnchoredPosition: {x: 0, y: 0.000085865766}
|
||||||
m_SizeDelta: {x: 0, y: 300}
|
m_SizeDelta: {x: 0, y: 300}
|
||||||
m_Pivot: {x: 0, y: 1}
|
m_Pivot: {x: 0, y: 1}
|
||||||
--- !u!114 &487682270458738526
|
--- !u!114 &487682270458738526
|
||||||
|
|
@ -4776,7 +4780,7 @@ RectTransform:
|
||||||
m_ConstrainProportionsScale: 0
|
m_ConstrainProportionsScale: 0
|
||||||
m_Children: []
|
m_Children: []
|
||||||
m_Father: {fileID: 487682269292939090}
|
m_Father: {fileID: 487682269292939090}
|
||||||
m_RootOrder: 9
|
m_RootOrder: 13
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
m_AnchorMin: {x: 0.5, y: 1}
|
m_AnchorMin: {x: 0.5, y: 1}
|
||||||
m_AnchorMax: {x: 0.5, y: 1}
|
m_AnchorMax: {x: 0.5, y: 1}
|
||||||
|
|
@ -5012,7 +5016,7 @@ RectTransform:
|
||||||
m_ConstrainProportionsScale: 0
|
m_ConstrainProportionsScale: 0
|
||||||
m_Children: []
|
m_Children: []
|
||||||
m_Father: {fileID: 487682269292939090}
|
m_Father: {fileID: 487682269292939090}
|
||||||
m_RootOrder: 5
|
m_RootOrder: 9
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
m_AnchorMin: {x: 0.5, y: 1}
|
m_AnchorMin: {x: 0.5, y: 1}
|
||||||
m_AnchorMax: {x: 0.5, y: 1}
|
m_AnchorMax: {x: 0.5, y: 1}
|
||||||
|
|
@ -5088,7 +5092,7 @@ RectTransform:
|
||||||
m_ConstrainProportionsScale: 0
|
m_ConstrainProportionsScale: 0
|
||||||
m_Children: []
|
m_Children: []
|
||||||
m_Father: {fileID: 487682269292939090}
|
m_Father: {fileID: 487682269292939090}
|
||||||
m_RootOrder: 4
|
m_RootOrder: 8
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
m_AnchorMin: {x: 0.5, y: 1}
|
m_AnchorMin: {x: 0.5, y: 1}
|
||||||
m_AnchorMax: {x: 0.5, y: 1}
|
m_AnchorMax: {x: 0.5, y: 1}
|
||||||
|
|
@ -5377,6 +5381,82 @@ RectTransform:
|
||||||
m_AnchoredPosition: {x: 0, y: 0}
|
m_AnchoredPosition: {x: 0, y: 0}
|
||||||
m_SizeDelta: {x: -20, y: -20}
|
m_SizeDelta: {x: -20, y: -20}
|
||||||
m_Pivot: {x: 0.5, y: 0.5}
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
|
--- !u!1 &952241305611229470
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
serializedVersion: 6
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 6468636358308169327}
|
||||||
|
- component: {fileID: 7742694558714136180}
|
||||||
|
- component: {fileID: 5190154326539814733}
|
||||||
|
m_Layer: 5
|
||||||
|
m_Name: Content
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!224 &6468636358308169327
|
||||||
|
RectTransform:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 952241305611229470}
|
||||||
|
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||||
|
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||||
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
|
m_ConstrainProportionsScale: 0
|
||||||
|
m_Children: []
|
||||||
|
m_Father: {fileID: 487682269292939090}
|
||||||
|
m_RootOrder: 3
|
||||||
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
|
m_AnchorMin: {x: 0, y: 0}
|
||||||
|
m_AnchorMax: {x: 1, y: 0}
|
||||||
|
m_AnchoredPosition: {x: 0, y: 731.03}
|
||||||
|
m_SizeDelta: {x: 0, y: 1462}
|
||||||
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
|
--- !u!222 &7742694558714136180
|
||||||
|
CanvasRenderer:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 952241305611229470}
|
||||||
|
m_CullTransparentMesh: 1
|
||||||
|
--- !u!114 &5190154326539814733
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 952241305611229470}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
m_RaycastTarget: 1
|
||||||
|
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
|
||||||
|
m_Maskable: 1
|
||||||
|
m_OnCullStateChanged:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_Sprite: {fileID: 0}
|
||||||
|
m_Type: 0
|
||||||
|
m_PreserveAspect: 0
|
||||||
|
m_FillCenter: 1
|
||||||
|
m_FillMethod: 4
|
||||||
|
m_FillAmount: 1
|
||||||
|
m_FillClockwise: 1
|
||||||
|
m_FillOrigin: 0
|
||||||
|
m_UseSpriteMesh: 0
|
||||||
|
m_PixelsPerUnitMultiplier: 1
|
||||||
--- !u!1 &1838588223650215953
|
--- !u!1 &1838588223650215953
|
||||||
GameObject:
|
GameObject:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
|
|
@ -5824,7 +5904,7 @@ MonoBehaviour:
|
||||||
m_EditorClassIdentifier:
|
m_EditorClassIdentifier:
|
||||||
m_Content: {fileID: 7673156623141151089}
|
m_Content: {fileID: 7673156623141151089}
|
||||||
m_Horizontal: 0
|
m_Horizontal: 0
|
||||||
m_Vertical: 1
|
m_Vertical: 0
|
||||||
m_MovementType: 1
|
m_MovementType: 1
|
||||||
m_Elasticity: 0.1
|
m_Elasticity: 0.1
|
||||||
m_Inertia: 1
|
m_Inertia: 1
|
||||||
|
|
@ -5840,6 +5920,82 @@ MonoBehaviour:
|
||||||
m_OnValueChanged:
|
m_OnValueChanged:
|
||||||
m_PersistentCalls:
|
m_PersistentCalls:
|
||||||
m_Calls: []
|
m_Calls: []
|
||||||
|
--- !u!1 &5766021570369626615
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
serializedVersion: 6
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 104359917031409509}
|
||||||
|
- component: {fileID: 6899488327487679117}
|
||||||
|
- component: {fileID: 4334883616251488289}
|
||||||
|
m_Layer: 5
|
||||||
|
m_Name: Centre
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!224 &104359917031409509
|
||||||
|
RectTransform:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 5766021570369626615}
|
||||||
|
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||||
|
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||||
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
|
m_ConstrainProportionsScale: 0
|
||||||
|
m_Children: []
|
||||||
|
m_Father: {fileID: 487682269292939090}
|
||||||
|
m_RootOrder: 1
|
||||||
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
|
m_AnchorMin: {x: 0.5, y: 0.5}
|
||||||
|
m_AnchorMax: {x: 0.5, y: 0.5}
|
||||||
|
m_AnchoredPosition: {x: 0, y: 276.29318}
|
||||||
|
m_SizeDelta: {x: 1170, y: 160.4937}
|
||||||
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
|
--- !u!222 &6899488327487679117
|
||||||
|
CanvasRenderer:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 5766021570369626615}
|
||||||
|
m_CullTransparentMesh: 1
|
||||||
|
--- !u!114 &4334883616251488289
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 5766021570369626615}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
m_RaycastTarget: 1
|
||||||
|
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
|
||||||
|
m_Maskable: 1
|
||||||
|
m_OnCullStateChanged:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_Sprite: {fileID: 0}
|
||||||
|
m_Type: 0
|
||||||
|
m_PreserveAspect: 0
|
||||||
|
m_FillCenter: 1
|
||||||
|
m_FillMethod: 4
|
||||||
|
m_FillAmount: 1
|
||||||
|
m_FillClockwise: 1
|
||||||
|
m_FillOrigin: 0
|
||||||
|
m_UseSpriteMesh: 0
|
||||||
|
m_PixelsPerUnitMultiplier: 1
|
||||||
--- !u!1 &5878061086786629434
|
--- !u!1 &5878061086786629434
|
||||||
GameObject:
|
GameObject:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
|
|
@ -5970,7 +6126,7 @@ MonoBehaviour:
|
||||||
m_Padding:
|
m_Padding:
|
||||||
m_Left: 6
|
m_Left: 6
|
||||||
m_Right: 0
|
m_Right: 0
|
||||||
m_Top: 46
|
m_Top: 8
|
||||||
m_Bottom: 0
|
m_Bottom: 0
|
||||||
m_ChildAlignment: 0
|
m_ChildAlignment: 0
|
||||||
m_Spacing: 20
|
m_Spacing: 20
|
||||||
|
|
@ -6071,6 +6227,82 @@ MonoBehaviour:
|
||||||
m_FillOrigin: 0
|
m_FillOrigin: 0
|
||||||
m_UseSpriteMesh: 0
|
m_UseSpriteMesh: 0
|
||||||
m_PixelsPerUnitMultiplier: 1
|
m_PixelsPerUnitMultiplier: 1
|
||||||
|
--- !u!1 &6965192540792339467
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
serializedVersion: 6
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 1135878039837604115}
|
||||||
|
- component: {fileID: 720888571010361850}
|
||||||
|
- component: {fileID: 7600218306498358549}
|
||||||
|
m_Layer: 5
|
||||||
|
m_Name: Top
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!224 &1135878039837604115
|
||||||
|
RectTransform:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 6965192540792339467}
|
||||||
|
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||||
|
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||||
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
|
m_ConstrainProportionsScale: 0
|
||||||
|
m_Children: []
|
||||||
|
m_Father: {fileID: 487682269292939090}
|
||||||
|
m_RootOrder: 0
|
||||||
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
|
m_AnchorMin: {x: 0.5, y: 1}
|
||||||
|
m_AnchorMax: {x: 0.5, y: 1}
|
||||||
|
m_AnchoredPosition: {x: -0.000061035, y: -129.98328}
|
||||||
|
m_SizeDelta: {x: 1170, y: 259.9369}
|
||||||
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
|
--- !u!222 &720888571010361850
|
||||||
|
CanvasRenderer:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 6965192540792339467}
|
||||||
|
m_CullTransparentMesh: 1
|
||||||
|
--- !u!114 &7600218306498358549
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 6965192540792339467}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
m_RaycastTarget: 1
|
||||||
|
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
|
||||||
|
m_Maskable: 1
|
||||||
|
m_OnCullStateChanged:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_Sprite: {fileID: 0}
|
||||||
|
m_Type: 0
|
||||||
|
m_PreserveAspect: 0
|
||||||
|
m_FillCenter: 1
|
||||||
|
m_FillMethod: 4
|
||||||
|
m_FillAmount: 1
|
||||||
|
m_FillClockwise: 1
|
||||||
|
m_FillOrigin: 0
|
||||||
|
m_UseSpriteMesh: 0
|
||||||
|
m_PixelsPerUnitMultiplier: 1
|
||||||
--- !u!1 &7110876206946422734
|
--- !u!1 &7110876206946422734
|
||||||
GameObject:
|
GameObject:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
|
|
@ -6268,12 +6500,88 @@ MonoBehaviour:
|
||||||
m_TargetGraphic: {fileID: 5634376397394801736}
|
m_TargetGraphic: {fileID: 5634376397394801736}
|
||||||
m_HandleRect: {fileID: 2957831359622053796}
|
m_HandleRect: {fileID: 2957831359622053796}
|
||||||
m_Direction: 0
|
m_Direction: 0
|
||||||
m_Value: -0.0000035732885
|
m_Value: -0.000004019946
|
||||||
m_Size: 0.9175634
|
m_Size: 0.9175633
|
||||||
m_NumberOfSteps: 0
|
m_NumberOfSteps: 0
|
||||||
m_OnValueChanged:
|
m_OnValueChanged:
|
||||||
m_PersistentCalls:
|
m_PersistentCalls:
|
||||||
m_Calls: []
|
m_Calls: []
|
||||||
|
--- !u!1 &7860648879183263320
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
serializedVersion: 6
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 332875199416893673}
|
||||||
|
- component: {fileID: 3968424576616654124}
|
||||||
|
- component: {fileID: 514915312588939258}
|
||||||
|
m_Layer: 5
|
||||||
|
m_Name: Title
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!224 &332875199416893673
|
||||||
|
RectTransform:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 7860648879183263320}
|
||||||
|
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||||
|
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||||
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
|
m_ConstrainProportionsScale: 0
|
||||||
|
m_Children: []
|
||||||
|
m_Father: {fileID: 487682269292939090}
|
||||||
|
m_RootOrder: 2
|
||||||
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
|
m_AnchorMin: {x: 0.5, y: 1}
|
||||||
|
m_AnchorMax: {x: 0.5, y: 1}
|
||||||
|
m_AnchoredPosition: {x: -0.000061035, y: -454.74}
|
||||||
|
m_SizeDelta: {x: 1170, y: 909.44995}
|
||||||
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
|
--- !u!222 &3968424576616654124
|
||||||
|
CanvasRenderer:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 7860648879183263320}
|
||||||
|
m_CullTransparentMesh: 1
|
||||||
|
--- !u!114 &514915312588939258
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 7860648879183263320}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
m_RaycastTarget: 1
|
||||||
|
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
|
||||||
|
m_Maskable: 1
|
||||||
|
m_OnCullStateChanged:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_Sprite: {fileID: 0}
|
||||||
|
m_Type: 0
|
||||||
|
m_PreserveAspect: 0
|
||||||
|
m_FillCenter: 1
|
||||||
|
m_FillMethod: 4
|
||||||
|
m_FillAmount: 1
|
||||||
|
m_FillClockwise: 1
|
||||||
|
m_FillOrigin: 0
|
||||||
|
m_UseSpriteMesh: 0
|
||||||
|
m_PixelsPerUnitMultiplier: 1
|
||||||
--- !u!1 &8436422915245297310
|
--- !u!1 &8436422915245297310
|
||||||
GameObject:
|
GameObject:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
|
|
|
||||||
|
|
@ -1387,7 +1387,7 @@ RectTransform:
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
m_AnchorMin: {x: 0, y: 1}
|
m_AnchorMin: {x: 0, y: 1}
|
||||||
m_AnchorMax: {x: 1, y: 1}
|
m_AnchorMax: {x: 1, y: 1}
|
||||||
m_AnchoredPosition: {x: 0, y: 0.00007033919}
|
m_AnchoredPosition: {x: 0, y: 0.0009331073}
|
||||||
m_SizeDelta: {x: 0, y: 300}
|
m_SizeDelta: {x: 0, y: 300}
|
||||||
m_Pivot: {x: 0, y: 1}
|
m_Pivot: {x: 0, y: 1}
|
||||||
--- !u!114 &7679919176778669560
|
--- !u!114 &7679919176778669560
|
||||||
|
|
@ -2153,7 +2153,7 @@ MonoBehaviour:
|
||||||
m_Name:
|
m_Name:
|
||||||
m_EditorClassIdentifier:
|
m_EditorClassIdentifier:
|
||||||
m_Content: {fileID: 7679919176778669559}
|
m_Content: {fileID: 7679919176778669559}
|
||||||
m_Horizontal: 1
|
m_Horizontal: 0
|
||||||
m_Vertical: 1
|
m_Vertical: 1
|
||||||
m_MovementType: 1
|
m_MovementType: 1
|
||||||
m_Elasticity: 0.1
|
m_Elasticity: 0.1
|
||||||
|
|
|
||||||
|
|
@ -613,7 +613,7 @@ RectTransform:
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
m_AnchorMin: {x: 0, y: 1}
|
m_AnchorMin: {x: 0, y: 1}
|
||||||
m_AnchorMax: {x: 1, y: 1}
|
m_AnchorMax: {x: 1, y: 1}
|
||||||
m_AnchoredPosition: {x: 0, y: -0.00015199017}
|
m_AnchoredPosition: {x: 0, y: 0.00031163188}
|
||||||
m_SizeDelta: {x: 0, y: 300}
|
m_SizeDelta: {x: 0, y: 300}
|
||||||
m_Pivot: {x: 0, y: 1}
|
m_Pivot: {x: 0, y: 1}
|
||||||
--- !u!114 &7893552782943049389
|
--- !u!114 &7893552782943049389
|
||||||
|
|
@ -824,7 +824,7 @@ MonoBehaviour:
|
||||||
m_Name:
|
m_Name:
|
||||||
m_EditorClassIdentifier:
|
m_EditorClassIdentifier:
|
||||||
m_Content: {fileID: 7893552782943049390}
|
m_Content: {fileID: 7893552782943049390}
|
||||||
m_Horizontal: 1
|
m_Horizontal: 0
|
||||||
m_Vertical: 1
|
m_Vertical: 1
|
||||||
m_MovementType: 1
|
m_MovementType: 1
|
||||||
m_Elasticity: 0.1
|
m_Elasticity: 0.1
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,405 @@
|
||||||
%YAML 1.1
|
%YAML 1.1
|
||||||
%TAG !u! tag:unity3d.com,2011:
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!1 &349143151295069187
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
serializedVersion: 6
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 3923313689928382035}
|
||||||
|
- component: {fileID: 7582622511004796991}
|
||||||
|
- component: {fileID: 8596554783791710355}
|
||||||
|
m_Layer: 5
|
||||||
|
m_Name: Text
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!224 &3923313689928382035
|
||||||
|
RectTransform:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 349143151295069187}
|
||||||
|
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
|
||||||
|
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||||
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
|
m_ConstrainProportionsScale: 0
|
||||||
|
m_Children: []
|
||||||
|
m_Father: {fileID: 6603634118661495601}
|
||||||
|
m_RootOrder: 0
|
||||||
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
|
m_AnchorMin: {x: 0, y: 0}
|
||||||
|
m_AnchorMax: {x: 1, y: 1}
|
||||||
|
m_AnchoredPosition: {x: 0, y: 0}
|
||||||
|
m_SizeDelta: {x: 0, y: 0}
|
||||||
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
|
--- !u!222 &7582622511004796991
|
||||||
|
CanvasRenderer:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 349143151295069187}
|
||||||
|
m_CullTransparentMesh: 1
|
||||||
|
--- !u!114 &8596554783791710355
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 349143151295069187}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
m_RaycastTarget: 1
|
||||||
|
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
|
||||||
|
m_Maskable: 1
|
||||||
|
m_OnCullStateChanged:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_FontData:
|
||||||
|
m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
|
||||||
|
m_FontSize: 50
|
||||||
|
m_FontStyle: 0
|
||||||
|
m_BestFit: 0
|
||||||
|
m_MinSize: 4
|
||||||
|
m_MaxSize: 50
|
||||||
|
m_Alignment: 4
|
||||||
|
m_AlignByGeometry: 0
|
||||||
|
m_RichText: 1
|
||||||
|
m_HorizontalOverflow: 0
|
||||||
|
m_VerticalOverflow: 0
|
||||||
|
m_LineSpacing: 1
|
||||||
|
m_Text: "\u91CD\u7F6E"
|
||||||
|
--- !u!1 &2958711722180659423
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
serializedVersion: 6
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 6603634118661495601}
|
||||||
|
- component: {fileID: 2274067506779534663}
|
||||||
|
- component: {fileID: 3247702538212851840}
|
||||||
|
- component: {fileID: 4126830822792890534}
|
||||||
|
m_Layer: 5
|
||||||
|
m_Name: btnReset
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!224 &6603634118661495601
|
||||||
|
RectTransform:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 2958711722180659423}
|
||||||
|
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||||
|
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||||
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
|
m_ConstrainProportionsScale: 0
|
||||||
|
m_Children:
|
||||||
|
- {fileID: 3923313689928382035}
|
||||||
|
m_Father: {fileID: 8453521026308253184}
|
||||||
|
m_RootOrder: 4
|
||||||
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
|
m_AnchorMin: {x: 0, y: 0}
|
||||||
|
m_AnchorMax: {x: 0, y: 0}
|
||||||
|
m_AnchoredPosition: {x: 224.29999, y: 96.80005}
|
||||||
|
m_SizeDelta: {x: 379, y: 132}
|
||||||
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
|
--- !u!222 &2274067506779534663
|
||||||
|
CanvasRenderer:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 2958711722180659423}
|
||||||
|
m_CullTransparentMesh: 1
|
||||||
|
--- !u!114 &3247702538212851840
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 2958711722180659423}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
m_RaycastTarget: 1
|
||||||
|
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
|
||||||
|
m_Maskable: 1
|
||||||
|
m_OnCullStateChanged:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_Sprite: {fileID: 21300000, guid: 0007404bf4e514542b87dfdb588ca6d8, type: 3}
|
||||||
|
m_Type: 0
|
||||||
|
m_PreserveAspect: 0
|
||||||
|
m_FillCenter: 1
|
||||||
|
m_FillMethod: 4
|
||||||
|
m_FillAmount: 1
|
||||||
|
m_FillClockwise: 1
|
||||||
|
m_FillOrigin: 0
|
||||||
|
m_UseSpriteMesh: 0
|
||||||
|
m_PixelsPerUnitMultiplier: 1
|
||||||
|
--- !u!114 &4126830822792890534
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 2958711722180659423}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Navigation:
|
||||||
|
m_Mode: 3
|
||||||
|
m_WrapAround: 0
|
||||||
|
m_SelectOnUp: {fileID: 0}
|
||||||
|
m_SelectOnDown: {fileID: 0}
|
||||||
|
m_SelectOnLeft: {fileID: 0}
|
||||||
|
m_SelectOnRight: {fileID: 0}
|
||||||
|
m_Transition: 1
|
||||||
|
m_Colors:
|
||||||
|
m_NormalColor: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
|
||||||
|
m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
|
||||||
|
m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
|
||||||
|
m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
|
||||||
|
m_ColorMultiplier: 1
|
||||||
|
m_FadeDuration: 0.1
|
||||||
|
m_SpriteState:
|
||||||
|
m_HighlightedSprite: {fileID: 0}
|
||||||
|
m_PressedSprite: {fileID: 0}
|
||||||
|
m_SelectedSprite: {fileID: 0}
|
||||||
|
m_DisabledSprite: {fileID: 0}
|
||||||
|
m_AnimationTriggers:
|
||||||
|
m_NormalTrigger: Normal
|
||||||
|
m_HighlightedTrigger: Highlighted
|
||||||
|
m_PressedTrigger: Pressed
|
||||||
|
m_SelectedTrigger: Selected
|
||||||
|
m_DisabledTrigger: Disabled
|
||||||
|
m_Interactable: 1
|
||||||
|
m_TargetGraphic: {fileID: 3247702538212851840}
|
||||||
|
m_OnClick:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
--- !u!1 &4311655460234232130
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
serializedVersion: 6
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 2698991910601655452}
|
||||||
|
- component: {fileID: 5247721889939986312}
|
||||||
|
- component: {fileID: 6478595621897622433}
|
||||||
|
m_Layer: 5
|
||||||
|
m_Name: btnBG
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!224 &2698991910601655452
|
||||||
|
RectTransform:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 4311655460234232130}
|
||||||
|
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||||
|
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||||
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
|
m_ConstrainProportionsScale: 0
|
||||||
|
m_Children: []
|
||||||
|
m_Father: {fileID: 8453521026308253184}
|
||||||
|
m_RootOrder: 0
|
||||||
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
|
m_AnchorMin: {x: 0, y: 0}
|
||||||
|
m_AnchorMax: {x: 1, y: 1}
|
||||||
|
m_AnchoredPosition: {x: 0, y: 0}
|
||||||
|
m_SizeDelta: {x: 0, y: 0}
|
||||||
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
|
--- !u!222 &5247721889939986312
|
||||||
|
CanvasRenderer:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 4311655460234232130}
|
||||||
|
m_CullTransparentMesh: 1
|
||||||
|
--- !u!114 &6478595621897622433
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 4311655460234232130}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_Color: {r: 0, g: 0, b: 0, a: 0.3137255}
|
||||||
|
m_RaycastTarget: 1
|
||||||
|
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
|
||||||
|
m_Maskable: 1
|
||||||
|
m_OnCullStateChanged:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_Sprite: {fileID: 0}
|
||||||
|
m_Type: 0
|
||||||
|
m_PreserveAspect: 0
|
||||||
|
m_FillCenter: 1
|
||||||
|
m_FillMethod: 4
|
||||||
|
m_FillAmount: 1
|
||||||
|
m_FillClockwise: 1
|
||||||
|
m_FillOrigin: 0
|
||||||
|
m_UseSpriteMesh: 0
|
||||||
|
m_PixelsPerUnitMultiplier: 1
|
||||||
|
--- !u!1 &4963433083723868393
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
serializedVersion: 6
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 2162986892486261689}
|
||||||
|
- component: {fileID: 3283271677454134346}
|
||||||
|
- component: {fileID: 5670163485366954041}
|
||||||
|
- component: {fileID: 4807762411146792209}
|
||||||
|
m_Layer: 5
|
||||||
|
m_Name: btnFilter
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!224 &2162986892486261689
|
||||||
|
RectTransform:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 4963433083723868393}
|
||||||
|
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||||
|
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||||
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
|
m_ConstrainProportionsScale: 0
|
||||||
|
m_Children:
|
||||||
|
- {fileID: 1826039324109191913}
|
||||||
|
m_Father: {fileID: 8453521026308253184}
|
||||||
|
m_RootOrder: 5
|
||||||
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
|
m_AnchorMin: {x: 0, y: 0}
|
||||||
|
m_AnchorMax: {x: 0, y: 0}
|
||||||
|
m_AnchoredPosition: {x: 622.8, y: 96.8}
|
||||||
|
m_SizeDelta: {x: 379, y: 132}
|
||||||
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
|
--- !u!222 &3283271677454134346
|
||||||
|
CanvasRenderer:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 4963433083723868393}
|
||||||
|
m_CullTransparentMesh: 1
|
||||||
|
--- !u!114 &5670163485366954041
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 4963433083723868393}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
m_RaycastTarget: 1
|
||||||
|
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
|
||||||
|
m_Maskable: 1
|
||||||
|
m_OnCullStateChanged:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_Sprite: {fileID: 21300000, guid: dacc5ee58693bf5469860b3c79c65675, type: 3}
|
||||||
|
m_Type: 0
|
||||||
|
m_PreserveAspect: 0
|
||||||
|
m_FillCenter: 1
|
||||||
|
m_FillMethod: 4
|
||||||
|
m_FillAmount: 1
|
||||||
|
m_FillClockwise: 1
|
||||||
|
m_FillOrigin: 0
|
||||||
|
m_UseSpriteMesh: 0
|
||||||
|
m_PixelsPerUnitMultiplier: 1
|
||||||
|
--- !u!114 &4807762411146792209
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 4963433083723868393}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Navigation:
|
||||||
|
m_Mode: 3
|
||||||
|
m_WrapAround: 0
|
||||||
|
m_SelectOnUp: {fileID: 0}
|
||||||
|
m_SelectOnDown: {fileID: 0}
|
||||||
|
m_SelectOnLeft: {fileID: 0}
|
||||||
|
m_SelectOnRight: {fileID: 0}
|
||||||
|
m_Transition: 1
|
||||||
|
m_Colors:
|
||||||
|
m_NormalColor: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
|
||||||
|
m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
|
||||||
|
m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
|
||||||
|
m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
|
||||||
|
m_ColorMultiplier: 1
|
||||||
|
m_FadeDuration: 0.1
|
||||||
|
m_SpriteState:
|
||||||
|
m_HighlightedSprite: {fileID: 0}
|
||||||
|
m_PressedSprite: {fileID: 0}
|
||||||
|
m_SelectedSprite: {fileID: 0}
|
||||||
|
m_DisabledSprite: {fileID: 0}
|
||||||
|
m_AnimationTriggers:
|
||||||
|
m_NormalTrigger: Normal
|
||||||
|
m_HighlightedTrigger: Highlighted
|
||||||
|
m_PressedTrigger: Pressed
|
||||||
|
m_SelectedTrigger: Selected
|
||||||
|
m_DisabledTrigger: Disabled
|
||||||
|
m_Interactable: 1
|
||||||
|
m_TargetGraphic: {fileID: 5670163485366954041}
|
||||||
|
m_OnClick:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
--- !u!1 &5792844890084315740
|
--- !u!1 &5792844890084315740
|
||||||
GameObject:
|
GameObject:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
|
|
@ -76,6 +476,86 @@ MonoBehaviour:
|
||||||
m_FillOrigin: 0
|
m_FillOrigin: 0
|
||||||
m_UseSpriteMesh: 0
|
m_UseSpriteMesh: 0
|
||||||
m_PixelsPerUnitMultiplier: 1
|
m_PixelsPerUnitMultiplier: 1
|
||||||
|
--- !u!1 &8440037034151253898
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
serializedVersion: 6
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 1826039324109191913}
|
||||||
|
- component: {fileID: 6230705635797672640}
|
||||||
|
- component: {fileID: 4315314024709541338}
|
||||||
|
m_Layer: 5
|
||||||
|
m_Name: Text
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!224 &1826039324109191913
|
||||||
|
RectTransform:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 8440037034151253898}
|
||||||
|
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
|
||||||
|
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||||
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
|
m_ConstrainProportionsScale: 0
|
||||||
|
m_Children: []
|
||||||
|
m_Father: {fileID: 2162986892486261689}
|
||||||
|
m_RootOrder: 0
|
||||||
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
|
m_AnchorMin: {x: 0, y: 0}
|
||||||
|
m_AnchorMax: {x: 1, y: 1}
|
||||||
|
m_AnchoredPosition: {x: 0, y: 0}
|
||||||
|
m_SizeDelta: {x: 0, y: 0}
|
||||||
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
|
--- !u!222 &6230705635797672640
|
||||||
|
CanvasRenderer:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 8440037034151253898}
|
||||||
|
m_CullTransparentMesh: 1
|
||||||
|
--- !u!114 &4315314024709541338
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 8440037034151253898}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
m_RaycastTarget: 1
|
||||||
|
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
|
||||||
|
m_Maskable: 1
|
||||||
|
m_OnCullStateChanged:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_FontData:
|
||||||
|
m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
|
||||||
|
m_FontSize: 50
|
||||||
|
m_FontStyle: 0
|
||||||
|
m_BestFit: 0
|
||||||
|
m_MinSize: 4
|
||||||
|
m_MaxSize: 50
|
||||||
|
m_Alignment: 4
|
||||||
|
m_AlignByGeometry: 0
|
||||||
|
m_RichText: 1
|
||||||
|
m_HorizontalOverflow: 0
|
||||||
|
m_VerticalOverflow: 0
|
||||||
|
m_LineSpacing: 1
|
||||||
|
m_Text: "\u5F00\u59CB\u7B5B\u9009"
|
||||||
--- !u!1 &8453521025474105040
|
--- !u!1 &8453521025474105040
|
||||||
GameObject:
|
GameObject:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
|
|
@ -110,11 +590,11 @@ RectTransform:
|
||||||
- {fileID: 8453521025970769319}
|
- {fileID: 8453521025970769319}
|
||||||
- {fileID: 1802137942673714341}
|
- {fileID: 1802137942673714341}
|
||||||
m_Father: {fileID: 8453521026308253184}
|
m_Father: {fileID: 8453521026308253184}
|
||||||
m_RootOrder: 1
|
m_RootOrder: 2
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
m_AnchorMin: {x: 1, y: 1}
|
m_AnchorMin: {x: 0, y: 1}
|
||||||
m_AnchorMax: {x: 1, y: 1}
|
m_AnchorMax: {x: 0, y: 1}
|
||||||
m_AnchoredPosition: {x: -395.99994, y: -94}
|
m_AnchoredPosition: {x: 774.00006, y: -94}
|
||||||
m_SizeDelta: {x: 30, y: 54}
|
m_SizeDelta: {x: 30, y: 54}
|
||||||
m_Pivot: {x: 0.5, y: 0.5}
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
--- !u!222 &8453521025474105036
|
--- !u!222 &8453521025474105036
|
||||||
|
|
@ -230,7 +710,7 @@ RectTransform:
|
||||||
m_ConstrainProportionsScale: 0
|
m_ConstrainProportionsScale: 0
|
||||||
m_Children: []
|
m_Children: []
|
||||||
m_Father: {fileID: 8453521026308253184}
|
m_Father: {fileID: 8453521026308253184}
|
||||||
m_RootOrder: 0
|
m_RootOrder: 1
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
m_AnchorMin: {x: 0, y: 0}
|
m_AnchorMin: {x: 0, y: 0}
|
||||||
m_AnchorMax: {x: 0, y: 1}
|
m_AnchorMax: {x: 0, y: 1}
|
||||||
|
|
@ -548,7 +1028,7 @@ RectTransform:
|
||||||
- {fileID: 8453521027516396210}
|
- {fileID: 8453521027516396210}
|
||||||
- {fileID: 8453521026286212024}
|
- {fileID: 8453521026286212024}
|
||||||
m_Father: {fileID: 8453521026308253184}
|
m_Father: {fileID: 8453521026308253184}
|
||||||
m_RootOrder: 2
|
m_RootOrder: 3
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
m_AnchorMin: {x: 0, y: 0}
|
m_AnchorMin: {x: 0, y: 0}
|
||||||
m_AnchorMax: {x: 0, y: 1}
|
m_AnchorMax: {x: 0, y: 1}
|
||||||
|
|
@ -871,10 +1351,12 @@ RectTransform:
|
||||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
m_ConstrainProportionsScale: 0
|
m_ConstrainProportionsScale: 0
|
||||||
m_Children:
|
m_Children:
|
||||||
|
- {fileID: 2698991910601655452}
|
||||||
- {fileID: 8453521025512941247}
|
- {fileID: 8453521025512941247}
|
||||||
- {fileID: 8453521025474105041}
|
- {fileID: 8453521025474105041}
|
||||||
- {fileID: 8453521026135380665}
|
- {fileID: 8453521026135380665}
|
||||||
- {fileID: 8453521026502165382}
|
- {fileID: 6603634118661495601}
|
||||||
|
- {fileID: 2162986892486261689}
|
||||||
m_Father: {fileID: 0}
|
m_Father: {fileID: 0}
|
||||||
m_RootOrder: 0
|
m_RootOrder: 0
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
|
|
@ -904,14 +1386,14 @@ MonoBehaviour:
|
||||||
m_Name:
|
m_Name:
|
||||||
m_EditorClassIdentifier:
|
m_EditorClassIdentifier:
|
||||||
m_Material: {fileID: 0}
|
m_Material: {fileID: 0}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.003921569}
|
||||||
m_RaycastTarget: 1
|
m_RaycastTarget: 1
|
||||||
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
|
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
|
||||||
m_Maskable: 1
|
m_Maskable: 1
|
||||||
m_OnCullStateChanged:
|
m_OnCullStateChanged:
|
||||||
m_PersistentCalls:
|
m_PersistentCalls:
|
||||||
m_Calls: []
|
m_Calls: []
|
||||||
m_Sprite: {fileID: 21300000, guid: 1076efdf396875048a4cb1c5d5ab163f, type: 3}
|
m_Sprite: {fileID: 0}
|
||||||
m_Type: 0
|
m_Type: 0
|
||||||
m_PreserveAspect: 0
|
m_PreserveAspect: 0
|
||||||
m_FillCenter: 1
|
m_FillCenter: 1
|
||||||
|
|
@ -1001,82 +1483,6 @@ MonoBehaviour:
|
||||||
m_VerticalOverflow: 0
|
m_VerticalOverflow: 0
|
||||||
m_LineSpacing: 1
|
m_LineSpacing: 1
|
||||||
m_Text: "\u5F3A\u6293"
|
m_Text: "\u5F3A\u6293"
|
||||||
--- !u!1 &8453521026502165381
|
|
||||||
GameObject:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
serializedVersion: 6
|
|
||||||
m_Component:
|
|
||||||
- component: {fileID: 8453521026502165382}
|
|
||||||
- component: {fileID: 8453521026502165376}
|
|
||||||
- component: {fileID: 8453521026502165383}
|
|
||||||
m_Layer: 5
|
|
||||||
m_Name: Image
|
|
||||||
m_TagString: Untagged
|
|
||||||
m_Icon: {fileID: 0}
|
|
||||||
m_NavMeshLayer: 0
|
|
||||||
m_StaticEditorFlags: 0
|
|
||||||
m_IsActive: 0
|
|
||||||
--- !u!224 &8453521026502165382
|
|
||||||
RectTransform:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 8453521026502165381}
|
|
||||||
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
|
|
||||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
|
||||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
|
||||||
m_ConstrainProportionsScale: 0
|
|
||||||
m_Children: []
|
|
||||||
m_Father: {fileID: 8453521026308253184}
|
|
||||||
m_RootOrder: 3
|
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
|
||||||
m_AnchorMin: {x: 0.5, y: 0.5}
|
|
||||||
m_AnchorMax: {x: 0.5, y: 0.5}
|
|
||||||
m_AnchoredPosition: {x: 0, y: 0}
|
|
||||||
m_SizeDelta: {x: 1170, y: 2532}
|
|
||||||
m_Pivot: {x: 0.5, y: 0.5}
|
|
||||||
--- !u!222 &8453521026502165376
|
|
||||||
CanvasRenderer:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 8453521026502165381}
|
|
||||||
m_CullTransparentMesh: 0
|
|
||||||
--- !u!114 &8453521026502165383
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 8453521026502165381}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
|
|
||||||
m_Name:
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
m_Material: {fileID: 0}
|
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.53333336}
|
|
||||||
m_RaycastTarget: 1
|
|
||||||
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
|
|
||||||
m_Maskable: 1
|
|
||||||
m_OnCullStateChanged:
|
|
||||||
m_PersistentCalls:
|
|
||||||
m_Calls: []
|
|
||||||
m_Sprite: {fileID: 21300000, guid: 9518a1457d09fd64f8c81d36eaf44860, type: 3}
|
|
||||||
m_Type: 0
|
|
||||||
m_PreserveAspect: 0
|
|
||||||
m_FillCenter: 1
|
|
||||||
m_FillMethod: 4
|
|
||||||
m_FillAmount: 1
|
|
||||||
m_FillClockwise: 1
|
|
||||||
m_FillOrigin: 0
|
|
||||||
m_UseSpriteMesh: 0
|
|
||||||
m_PixelsPerUnitMultiplier: 1
|
|
||||||
--- !u!1 &8453521026609758924
|
--- !u!1 &8453521026609758924
|
||||||
GameObject:
|
GameObject:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
|
|
@ -1328,6 +1734,7 @@ RectTransform:
|
||||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
m_ConstrainProportionsScale: 0
|
m_ConstrainProportionsScale: 0
|
||||||
m_Children:
|
m_Children:
|
||||||
|
- {fileID: 4937314655352207956}
|
||||||
- {fileID: 8453521027564759283}
|
- {fileID: 8453521027564759283}
|
||||||
m_Father: {fileID: 8453521027345352587}
|
m_Father: {fileID: 8453521027345352587}
|
||||||
m_RootOrder: 0
|
m_RootOrder: 0
|
||||||
|
|
@ -1910,12 +2317,12 @@ RectTransform:
|
||||||
m_ConstrainProportionsScale: 0
|
m_ConstrainProportionsScale: 0
|
||||||
m_Children: []
|
m_Children: []
|
||||||
m_Father: {fileID: 8453521026852755573}
|
m_Father: {fileID: 8453521026852755573}
|
||||||
m_RootOrder: 0
|
m_RootOrder: 1
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
m_AnchorMin: {x: 0.5, y: 0.5}
|
m_AnchorMin: {x: 0.5, y: 0.5}
|
||||||
m_AnchorMax: {x: 0.5, y: 0.5}
|
m_AnchorMax: {x: 0.5, y: 0.5}
|
||||||
m_AnchoredPosition: {x: 8.5835, y: 9}
|
m_AnchoredPosition: {x: 81.83301, y: -16}
|
||||||
m_SizeDelta: {x: 425.2362, y: 76.034}
|
m_SizeDelta: {x: 560.53, y: 76.034}
|
||||||
m_Pivot: {x: 0.5, y: 0.5}
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
--- !u!222 &8453521027564759277
|
--- !u!222 &8453521027564759277
|
||||||
CanvasRenderer:
|
CanvasRenderer:
|
||||||
|
|
@ -1959,3 +2366,79 @@ MonoBehaviour:
|
||||||
m_VerticalOverflow: 0
|
m_VerticalOverflow: 0
|
||||||
m_LineSpacing: 1
|
m_LineSpacing: 1
|
||||||
m_Text: "\u5FB7\u5DDE\u6251\u514B"
|
m_Text: "\u5FB7\u5DDE\u6251\u514B"
|
||||||
|
--- !u!1 &8856514943722328232
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
serializedVersion: 6
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 4937314655352207956}
|
||||||
|
- component: {fileID: 2271332450643878108}
|
||||||
|
- component: {fileID: 1006748315915284531}
|
||||||
|
m_Layer: 5
|
||||||
|
m_Name: Image (1)
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!224 &4937314655352207956
|
||||||
|
RectTransform:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 8856514943722328232}
|
||||||
|
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||||
|
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||||
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
|
m_ConstrainProportionsScale: 0
|
||||||
|
m_Children: []
|
||||||
|
m_Father: {fileID: 8453521026852755573}
|
||||||
|
m_RootOrder: 0
|
||||||
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
|
m_AnchorMin: {x: 0.5, y: 0.5}
|
||||||
|
m_AnchorMax: {x: 0.5, y: 0.5}
|
||||||
|
m_AnchoredPosition: {x: 79.1, y: -33.4}
|
||||||
|
m_SizeDelta: {x: 566, y: 26}
|
||||||
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
|
--- !u!222 &2271332450643878108
|
||||||
|
CanvasRenderer:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 8856514943722328232}
|
||||||
|
m_CullTransparentMesh: 1
|
||||||
|
--- !u!114 &1006748315915284531
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 8856514943722328232}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
m_RaycastTarget: 1
|
||||||
|
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
|
||||||
|
m_Maskable: 1
|
||||||
|
m_OnCullStateChanged:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_Sprite: {fileID: 21300000, guid: 8d1738f70bfc916468250e798e3fdf07, type: 3}
|
||||||
|
m_Type: 0
|
||||||
|
m_PreserveAspect: 0
|
||||||
|
m_FillCenter: 1
|
||||||
|
m_FillMethod: 4
|
||||||
|
m_FillAmount: 1
|
||||||
|
m_FillClockwise: 1
|
||||||
|
m_FillOrigin: 0
|
||||||
|
m_UseSpriteMesh: 0
|
||||||
|
m_PixelsPerUnitMultiplier: 1
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@ AnimationClip:
|
||||||
inWeight: 0.33333334
|
inWeight: 0.33333334
|
||||||
outWeight: 0.33333334
|
outWeight: 0.33333334
|
||||||
- serializedVersion: 3
|
- serializedVersion: 3
|
||||||
time: 1
|
time: 0.5
|
||||||
value: 1
|
value: 1
|
||||||
inSlope: 0
|
inSlope: 0
|
||||||
outSlope: 0
|
outSlope: 0
|
||||||
|
|
@ -58,7 +58,7 @@ AnimationClip:
|
||||||
inWeight: 0.33333334
|
inWeight: 0.33333334
|
||||||
outWeight: 0.33333334
|
outWeight: 0.33333334
|
||||||
- serializedVersion: 3
|
- serializedVersion: 3
|
||||||
time: 1
|
time: 0.5
|
||||||
value: 1
|
value: 1
|
||||||
inSlope: 0
|
inSlope: 0
|
||||||
outSlope: 0
|
outSlope: 0
|
||||||
|
|
@ -86,7 +86,7 @@ AnimationClip:
|
||||||
inWeight: 0.33333334
|
inWeight: 0.33333334
|
||||||
outWeight: 0.33333334
|
outWeight: 0.33333334
|
||||||
- serializedVersion: 3
|
- serializedVersion: 3
|
||||||
time: 1
|
time: 0.5
|
||||||
value: 1
|
value: 1
|
||||||
inSlope: 0
|
inSlope: 0
|
||||||
outSlope: 0
|
outSlope: 0
|
||||||
|
|
@ -114,7 +114,7 @@ AnimationClip:
|
||||||
inWeight: 0.33333334
|
inWeight: 0.33333334
|
||||||
outWeight: 0.33333334
|
outWeight: 0.33333334
|
||||||
- serializedVersion: 3
|
- serializedVersion: 3
|
||||||
time: 1
|
time: 0.5
|
||||||
value: 0
|
value: 0
|
||||||
inSlope: 0
|
inSlope: 0
|
||||||
outSlope: 0
|
outSlope: 0
|
||||||
|
|
@ -171,7 +171,7 @@ AnimationClip:
|
||||||
m_AdditiveReferencePoseClip: {fileID: 0}
|
m_AdditiveReferencePoseClip: {fileID: 0}
|
||||||
m_AdditiveReferencePoseTime: 0
|
m_AdditiveReferencePoseTime: 0
|
||||||
m_StartTime: 0
|
m_StartTime: 0
|
||||||
m_StopTime: 1
|
m_StopTime: 0.5
|
||||||
m_OrientationOffsetY: 0
|
m_OrientationOffsetY: 0
|
||||||
m_Level: 0
|
m_Level: 0
|
||||||
m_CycleOffset: 0
|
m_CycleOffset: 0
|
||||||
|
|
@ -200,7 +200,7 @@ AnimationClip:
|
||||||
inWeight: 0.33333334
|
inWeight: 0.33333334
|
||||||
outWeight: 0.33333334
|
outWeight: 0.33333334
|
||||||
- serializedVersion: 3
|
- serializedVersion: 3
|
||||||
time: 1
|
time: 0.5
|
||||||
value: 1
|
value: 1
|
||||||
inSlope: 0
|
inSlope: 0
|
||||||
outSlope: 0
|
outSlope: 0
|
||||||
|
|
@ -228,7 +228,7 @@ AnimationClip:
|
||||||
inWeight: 0.33333334
|
inWeight: 0.33333334
|
||||||
outWeight: 0.33333334
|
outWeight: 0.33333334
|
||||||
- serializedVersion: 3
|
- serializedVersion: 3
|
||||||
time: 1
|
time: 0.5
|
||||||
value: 1
|
value: 1
|
||||||
inSlope: 0
|
inSlope: 0
|
||||||
outSlope: 0
|
outSlope: 0
|
||||||
|
|
@ -256,7 +256,7 @@ AnimationClip:
|
||||||
inWeight: 0.33333334
|
inWeight: 0.33333334
|
||||||
outWeight: 0.33333334
|
outWeight: 0.33333334
|
||||||
- serializedVersion: 3
|
- serializedVersion: 3
|
||||||
time: 1
|
time: 0.5
|
||||||
value: 1
|
value: 1
|
||||||
inSlope: 0
|
inSlope: 0
|
||||||
outSlope: 0
|
outSlope: 0
|
||||||
|
|
@ -284,7 +284,7 @@ AnimationClip:
|
||||||
inWeight: 0.33333334
|
inWeight: 0.33333334
|
||||||
outWeight: 0.33333334
|
outWeight: 0.33333334
|
||||||
- serializedVersion: 3
|
- serializedVersion: 3
|
||||||
time: 1
|
time: 0.5
|
||||||
value: 0
|
value: 0
|
||||||
inSlope: 0
|
inSlope: 0
|
||||||
outSlope: 0
|
outSlope: 0
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@ AnimationClip:
|
||||||
inWeight: 0.33333334
|
inWeight: 0.33333334
|
||||||
outWeight: 0.33333334
|
outWeight: 0.33333334
|
||||||
- serializedVersion: 3
|
- serializedVersion: 3
|
||||||
time: 1
|
time: 0.5
|
||||||
value: 1
|
value: 1
|
||||||
inSlope: 0
|
inSlope: 0
|
||||||
outSlope: 0
|
outSlope: 0
|
||||||
|
|
@ -58,7 +58,7 @@ AnimationClip:
|
||||||
inWeight: 0.33333334
|
inWeight: 0.33333334
|
||||||
outWeight: 0.33333334
|
outWeight: 0.33333334
|
||||||
- serializedVersion: 3
|
- serializedVersion: 3
|
||||||
time: 1
|
time: 0.5
|
||||||
value: 1
|
value: 1
|
||||||
inSlope: 0
|
inSlope: 0
|
||||||
outSlope: 0
|
outSlope: 0
|
||||||
|
|
@ -86,7 +86,7 @@ AnimationClip:
|
||||||
inWeight: 0.33333334
|
inWeight: 0.33333334
|
||||||
outWeight: 0.33333334
|
outWeight: 0.33333334
|
||||||
- serializedVersion: 3
|
- serializedVersion: 3
|
||||||
time: 1
|
time: 0.5
|
||||||
value: 1
|
value: 1
|
||||||
inSlope: 0
|
inSlope: 0
|
||||||
outSlope: 0
|
outSlope: 0
|
||||||
|
|
@ -114,7 +114,7 @@ AnimationClip:
|
||||||
inWeight: 0.33333334
|
inWeight: 0.33333334
|
||||||
outWeight: 0.33333334
|
outWeight: 0.33333334
|
||||||
- serializedVersion: 3
|
- serializedVersion: 3
|
||||||
time: 1
|
time: 0.5
|
||||||
value: 1
|
value: 1
|
||||||
inSlope: 0
|
inSlope: 0
|
||||||
outSlope: 0
|
outSlope: 0
|
||||||
|
|
@ -171,7 +171,7 @@ AnimationClip:
|
||||||
m_AdditiveReferencePoseClip: {fileID: 0}
|
m_AdditiveReferencePoseClip: {fileID: 0}
|
||||||
m_AdditiveReferencePoseTime: 0
|
m_AdditiveReferencePoseTime: 0
|
||||||
m_StartTime: 0
|
m_StartTime: 0
|
||||||
m_StopTime: 1
|
m_StopTime: 0.5
|
||||||
m_OrientationOffsetY: 0
|
m_OrientationOffsetY: 0
|
||||||
m_Level: 0
|
m_Level: 0
|
||||||
m_CycleOffset: 0
|
m_CycleOffset: 0
|
||||||
|
|
@ -200,7 +200,7 @@ AnimationClip:
|
||||||
inWeight: 0.33333334
|
inWeight: 0.33333334
|
||||||
outWeight: 0.33333334
|
outWeight: 0.33333334
|
||||||
- serializedVersion: 3
|
- serializedVersion: 3
|
||||||
time: 1
|
time: 0.5
|
||||||
value: 1
|
value: 1
|
||||||
inSlope: 0
|
inSlope: 0
|
||||||
outSlope: 0
|
outSlope: 0
|
||||||
|
|
@ -228,7 +228,7 @@ AnimationClip:
|
||||||
inWeight: 0.33333334
|
inWeight: 0.33333334
|
||||||
outWeight: 0.33333334
|
outWeight: 0.33333334
|
||||||
- serializedVersion: 3
|
- serializedVersion: 3
|
||||||
time: 1
|
time: 0.5
|
||||||
value: 1
|
value: 1
|
||||||
inSlope: 0
|
inSlope: 0
|
||||||
outSlope: 0
|
outSlope: 0
|
||||||
|
|
@ -256,7 +256,7 @@ AnimationClip:
|
||||||
inWeight: 0.33333334
|
inWeight: 0.33333334
|
||||||
outWeight: 0.33333334
|
outWeight: 0.33333334
|
||||||
- serializedVersion: 3
|
- serializedVersion: 3
|
||||||
time: 1
|
time: 0.5
|
||||||
value: 1
|
value: 1
|
||||||
inSlope: 0
|
inSlope: 0
|
||||||
outSlope: 0
|
outSlope: 0
|
||||||
|
|
@ -284,7 +284,7 @@ AnimationClip:
|
||||||
inWeight: 0.33333334
|
inWeight: 0.33333334
|
||||||
outWeight: 0.33333334
|
outWeight: 0.33333334
|
||||||
- serializedVersion: 3
|
- serializedVersion: 3
|
||||||
time: 1
|
time: 0.5
|
||||||
value: 1
|
value: 1
|
||||||
inSlope: 0
|
inSlope: 0
|
||||||
outSlope: 0
|
outSlope: 0
|
||||||
|
|
|
||||||
|
After Width: | Height: | Size: 31 KiB |
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 7f887fa943fae554697d6a220354e0de
|
guid: dacc5ee58693bf5469860b3c79c65675
|
||||||
TextureImporter:
|
TextureImporter:
|
||||||
internalIDToNameTable: []
|
internalIDToNameTable: []
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
|
|
@ -63,7 +63,7 @@ TextureImporter:
|
||||||
textureFormatSet: 0
|
textureFormatSet: 0
|
||||||
ignorePngGamma: 0
|
ignorePngGamma: 0
|
||||||
applyGammaDecoding: 0
|
applyGammaDecoding: 0
|
||||||
cookieLightType: 1
|
cookieLightType: 0
|
||||||
platformSettings:
|
platformSettings:
|
||||||
- serializedVersion: 3
|
- serializedVersion: 3
|
||||||
buildTarget: DefaultTexturePlatform
|
buildTarget: DefaultTexturePlatform
|
||||||
|
|
@ -131,5 +131,5 @@ TextureImporter:
|
||||||
pSDRemoveMatte: 0
|
pSDRemoveMatte: 0
|
||||||
pSDShowRemoveMatteOption: 0
|
pSDShowRemoveMatteOption: 0
|
||||||
userData:
|
userData:
|
||||||
assetBundleName: ui/texture/main
|
assetBundleName:
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
||||||
|
After Width: | Height: | Size: 2.5 KiB |
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: f308565b554eff04ab4824a783c70622
|
guid: 0007404bf4e514542b87dfdb588ca6d8
|
||||||
TextureImporter:
|
TextureImporter:
|
||||||
internalIDToNameTable: []
|
internalIDToNameTable: []
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
|
|
@ -63,7 +63,7 @@ TextureImporter:
|
||||||
textureFormatSet: 0
|
textureFormatSet: 0
|
||||||
ignorePngGamma: 0
|
ignorePngGamma: 0
|
||||||
applyGammaDecoding: 0
|
applyGammaDecoding: 0
|
||||||
cookieLightType: 1
|
cookieLightType: 0
|
||||||
platformSettings:
|
platformSettings:
|
||||||
- serializedVersion: 3
|
- serializedVersion: 3
|
||||||
buildTarget: DefaultTexturePlatform
|
buildTarget: DefaultTexturePlatform
|
||||||
|
|
@ -131,5 +131,5 @@ TextureImporter:
|
||||||
pSDRemoveMatte: 0
|
pSDRemoveMatte: 0
|
||||||
pSDShowRemoveMatteOption: 0
|
pSDShowRemoveMatteOption: 0
|
||||||
userData:
|
userData:
|
||||||
assetBundleName: ui/texture/main
|
assetBundleName:
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
||||||
|
After Width: | Height: | Size: 20 KiB |
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 9fb2e362c69ca6d45a84191b1bc63c32
|
guid: 8d1738f70bfc916468250e798e3fdf07
|
||||||
TextureImporter:
|
TextureImporter:
|
||||||
internalIDToNameTable: []
|
internalIDToNameTable: []
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
|
|
@ -63,7 +63,7 @@ TextureImporter:
|
||||||
textureFormatSet: 0
|
textureFormatSet: 0
|
||||||
ignorePngGamma: 0
|
ignorePngGamma: 0
|
||||||
applyGammaDecoding: 0
|
applyGammaDecoding: 0
|
||||||
cookieLightType: 1
|
cookieLightType: 0
|
||||||
platformSettings:
|
platformSettings:
|
||||||
- serializedVersion: 3
|
- serializedVersion: 3
|
||||||
buildTarget: DefaultTexturePlatform
|
buildTarget: DefaultTexturePlatform
|
||||||
|
|
@ -131,5 +131,5 @@ TextureImporter:
|
||||||
pSDRemoveMatte: 0
|
pSDRemoveMatte: 0
|
||||||
pSDShowRemoveMatteOption: 0
|
pSDShowRemoveMatteOption: 0
|
||||||
userData:
|
userData:
|
||||||
assetBundleName: ui/texture/main
|
assetBundleName:
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
||||||
|
Before Width: | Height: | Size: 982 B |
|
Before Width: | Height: | Size: 23 KiB |
|
Before Width: | Height: | Size: 23 KiB |
|
Before Width: | Height: | Size: 24 KiB |
|
|
@ -1,135 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: db2ef64c6ca055840b12d191b7b391cc
|
|
||||||
TextureImporter:
|
|
||||||
internalIDToNameTable: []
|
|
||||||
externalObjects: {}
|
|
||||||
serializedVersion: 12
|
|
||||||
mipmaps:
|
|
||||||
mipMapMode: 0
|
|
||||||
enableMipMap: 0
|
|
||||||
sRGBTexture: 1
|
|
||||||
linearTexture: 0
|
|
||||||
fadeOut: 0
|
|
||||||
borderMipMap: 0
|
|
||||||
mipMapsPreserveCoverage: 0
|
|
||||||
alphaTestReferenceValue: 0.5
|
|
||||||
mipMapFadeDistanceStart: 1
|
|
||||||
mipMapFadeDistanceEnd: 3
|
|
||||||
bumpmap:
|
|
||||||
convertToNormalMap: 0
|
|
||||||
externalNormalMap: 0
|
|
||||||
heightScale: 0.25
|
|
||||||
normalMapFilter: 0
|
|
||||||
isReadable: 0
|
|
||||||
streamingMipmaps: 0
|
|
||||||
streamingMipmapsPriority: 0
|
|
||||||
vTOnly: 0
|
|
||||||
ignoreMasterTextureLimit: 0
|
|
||||||
grayScaleToAlpha: 0
|
|
||||||
generateCubemap: 6
|
|
||||||
cubemapConvolution: 0
|
|
||||||
seamlessCubemap: 0
|
|
||||||
textureFormat: 1
|
|
||||||
maxTextureSize: 2048
|
|
||||||
textureSettings:
|
|
||||||
serializedVersion: 2
|
|
||||||
filterMode: 1
|
|
||||||
aniso: 1
|
|
||||||
mipBias: 0
|
|
||||||
wrapU: 1
|
|
||||||
wrapV: 1
|
|
||||||
wrapW: 0
|
|
||||||
nPOTScale: 0
|
|
||||||
lightmap: 0
|
|
||||||
compressionQuality: 50
|
|
||||||
spriteMode: 1
|
|
||||||
spriteExtrude: 1
|
|
||||||
spriteMeshType: 1
|
|
||||||
alignment: 0
|
|
||||||
spritePivot: {x: 0.5, y: 0.5}
|
|
||||||
spritePixelsToUnits: 100
|
|
||||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
|
||||||
spriteGenerateFallbackPhysicsShape: 1
|
|
||||||
alphaUsage: 1
|
|
||||||
alphaIsTransparency: 1
|
|
||||||
spriteTessellationDetail: -1
|
|
||||||
textureType: 8
|
|
||||||
textureShape: 1
|
|
||||||
singleChannelComponent: 0
|
|
||||||
flipbookRows: 1
|
|
||||||
flipbookColumns: 1
|
|
||||||
maxTextureSizeSet: 0
|
|
||||||
compressionQualitySet: 0
|
|
||||||
textureFormatSet: 0
|
|
||||||
ignorePngGamma: 0
|
|
||||||
applyGammaDecoding: 0
|
|
||||||
cookieLightType: 1
|
|
||||||
platformSettings:
|
|
||||||
- serializedVersion: 3
|
|
||||||
buildTarget: DefaultTexturePlatform
|
|
||||||
maxTextureSize: 2048
|
|
||||||
resizeAlgorithm: 0
|
|
||||||
textureFormat: -1
|
|
||||||
textureCompression: 1
|
|
||||||
compressionQuality: 50
|
|
||||||
crunchedCompression: 0
|
|
||||||
allowsAlphaSplitting: 0
|
|
||||||
overridden: 0
|
|
||||||
androidETC2FallbackOverride: 0
|
|
||||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
||||||
- serializedVersion: 3
|
|
||||||
buildTarget: Standalone
|
|
||||||
maxTextureSize: 2048
|
|
||||||
resizeAlgorithm: 0
|
|
||||||
textureFormat: -1
|
|
||||||
textureCompression: 1
|
|
||||||
compressionQuality: 50
|
|
||||||
crunchedCompression: 0
|
|
||||||
allowsAlphaSplitting: 0
|
|
||||||
overridden: 0
|
|
||||||
androidETC2FallbackOverride: 0
|
|
||||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
||||||
- serializedVersion: 3
|
|
||||||
buildTarget: iPhone
|
|
||||||
maxTextureSize: 2048
|
|
||||||
resizeAlgorithm: 0
|
|
||||||
textureFormat: -1
|
|
||||||
textureCompression: 1
|
|
||||||
compressionQuality: 50
|
|
||||||
crunchedCompression: 0
|
|
||||||
allowsAlphaSplitting: 0
|
|
||||||
overridden: 0
|
|
||||||
androidETC2FallbackOverride: 0
|
|
||||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
||||||
- serializedVersion: 3
|
|
||||||
buildTarget: Android
|
|
||||||
maxTextureSize: 2048
|
|
||||||
resizeAlgorithm: 0
|
|
||||||
textureFormat: -1
|
|
||||||
textureCompression: 1
|
|
||||||
compressionQuality: 50
|
|
||||||
crunchedCompression: 0
|
|
||||||
allowsAlphaSplitting: 0
|
|
||||||
overridden: 0
|
|
||||||
androidETC2FallbackOverride: 0
|
|
||||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
||||||
spriteSheet:
|
|
||||||
serializedVersion: 2
|
|
||||||
sprites: []
|
|
||||||
outline: []
|
|
||||||
physicsShape: []
|
|
||||||
bones: []
|
|
||||||
spriteID: 5e97eb03825dee720800000000000000
|
|
||||||
internalID: 0
|
|
||||||
vertices: []
|
|
||||||
indices:
|
|
||||||
edges: []
|
|
||||||
weights: []
|
|
||||||
secondaryTextures: []
|
|
||||||
nameFileIdTable: {}
|
|
||||||
spritePackingTag:
|
|
||||||
pSDRemoveMatte: 0
|
|
||||||
pSDShowRemoveMatteOption: 0
|
|
||||||
userData:
|
|
||||||
assetBundleName: ui/texture/main
|
|
||||||
assetBundleVariant:
|
|
||||||
|
Before Width: | Height: | Size: 3.6 KiB |
|
|
@ -1,135 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: c773cea637eaced43876d01b7669cb9e
|
|
||||||
TextureImporter:
|
|
||||||
internalIDToNameTable: []
|
|
||||||
externalObjects: {}
|
|
||||||
serializedVersion: 12
|
|
||||||
mipmaps:
|
|
||||||
mipMapMode: 0
|
|
||||||
enableMipMap: 0
|
|
||||||
sRGBTexture: 1
|
|
||||||
linearTexture: 0
|
|
||||||
fadeOut: 0
|
|
||||||
borderMipMap: 0
|
|
||||||
mipMapsPreserveCoverage: 0
|
|
||||||
alphaTestReferenceValue: 0.5
|
|
||||||
mipMapFadeDistanceStart: 1
|
|
||||||
mipMapFadeDistanceEnd: 3
|
|
||||||
bumpmap:
|
|
||||||
convertToNormalMap: 0
|
|
||||||
externalNormalMap: 0
|
|
||||||
heightScale: 0.25
|
|
||||||
normalMapFilter: 0
|
|
||||||
isReadable: 0
|
|
||||||
streamingMipmaps: 0
|
|
||||||
streamingMipmapsPriority: 0
|
|
||||||
vTOnly: 0
|
|
||||||
ignoreMasterTextureLimit: 0
|
|
||||||
grayScaleToAlpha: 0
|
|
||||||
generateCubemap: 6
|
|
||||||
cubemapConvolution: 0
|
|
||||||
seamlessCubemap: 0
|
|
||||||
textureFormat: 1
|
|
||||||
maxTextureSize: 2048
|
|
||||||
textureSettings:
|
|
||||||
serializedVersion: 2
|
|
||||||
filterMode: 1
|
|
||||||
aniso: 1
|
|
||||||
mipBias: 0
|
|
||||||
wrapU: 1
|
|
||||||
wrapV: 1
|
|
||||||
wrapW: 0
|
|
||||||
nPOTScale: 0
|
|
||||||
lightmap: 0
|
|
||||||
compressionQuality: 50
|
|
||||||
spriteMode: 1
|
|
||||||
spriteExtrude: 1
|
|
||||||
spriteMeshType: 1
|
|
||||||
alignment: 0
|
|
||||||
spritePivot: {x: 0.5, y: 0.5}
|
|
||||||
spritePixelsToUnits: 100
|
|
||||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
|
||||||
spriteGenerateFallbackPhysicsShape: 1
|
|
||||||
alphaUsage: 1
|
|
||||||
alphaIsTransparency: 1
|
|
||||||
spriteTessellationDetail: -1
|
|
||||||
textureType: 8
|
|
||||||
textureShape: 1
|
|
||||||
singleChannelComponent: 0
|
|
||||||
flipbookRows: 1
|
|
||||||
flipbookColumns: 1
|
|
||||||
maxTextureSizeSet: 0
|
|
||||||
compressionQualitySet: 0
|
|
||||||
textureFormatSet: 0
|
|
||||||
ignorePngGamma: 0
|
|
||||||
applyGammaDecoding: 0
|
|
||||||
cookieLightType: 1
|
|
||||||
platformSettings:
|
|
||||||
- serializedVersion: 3
|
|
||||||
buildTarget: DefaultTexturePlatform
|
|
||||||
maxTextureSize: 2048
|
|
||||||
resizeAlgorithm: 0
|
|
||||||
textureFormat: -1
|
|
||||||
textureCompression: 1
|
|
||||||
compressionQuality: 50
|
|
||||||
crunchedCompression: 0
|
|
||||||
allowsAlphaSplitting: 0
|
|
||||||
overridden: 0
|
|
||||||
androidETC2FallbackOverride: 0
|
|
||||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
||||||
- serializedVersion: 3
|
|
||||||
buildTarget: Standalone
|
|
||||||
maxTextureSize: 2048
|
|
||||||
resizeAlgorithm: 0
|
|
||||||
textureFormat: -1
|
|
||||||
textureCompression: 1
|
|
||||||
compressionQuality: 50
|
|
||||||
crunchedCompression: 0
|
|
||||||
allowsAlphaSplitting: 0
|
|
||||||
overridden: 0
|
|
||||||
androidETC2FallbackOverride: 0
|
|
||||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
||||||
- serializedVersion: 3
|
|
||||||
buildTarget: iPhone
|
|
||||||
maxTextureSize: 2048
|
|
||||||
resizeAlgorithm: 0
|
|
||||||
textureFormat: -1
|
|
||||||
textureCompression: 1
|
|
||||||
compressionQuality: 50
|
|
||||||
crunchedCompression: 0
|
|
||||||
allowsAlphaSplitting: 0
|
|
||||||
overridden: 0
|
|
||||||
androidETC2FallbackOverride: 0
|
|
||||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
||||||
- serializedVersion: 3
|
|
||||||
buildTarget: Android
|
|
||||||
maxTextureSize: 2048
|
|
||||||
resizeAlgorithm: 0
|
|
||||||
textureFormat: -1
|
|
||||||
textureCompression: 1
|
|
||||||
compressionQuality: 50
|
|
||||||
crunchedCompression: 0
|
|
||||||
allowsAlphaSplitting: 0
|
|
||||||
overridden: 0
|
|
||||||
androidETC2FallbackOverride: 0
|
|
||||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
||||||
spriteSheet:
|
|
||||||
serializedVersion: 2
|
|
||||||
sprites: []
|
|
||||||
outline: []
|
|
||||||
physicsShape: []
|
|
||||||
bones: []
|
|
||||||
spriteID: 5e97eb03825dee720800000000000000
|
|
||||||
internalID: 0
|
|
||||||
vertices: []
|
|
||||||
indices:
|
|
||||||
edges: []
|
|
||||||
weights: []
|
|
||||||
secondaryTextures: []
|
|
||||||
nameFileIdTable: {}
|
|
||||||
spritePackingTag:
|
|
||||||
pSDRemoveMatte: 0
|
|
||||||
pSDShowRemoveMatteOption: 0
|
|
||||||
userData:
|
|
||||||
assetBundleName: ui/texture/main
|
|
||||||
assetBundleVariant:
|
|
||||||
|
Before Width: | Height: | Size: 5.7 KiB |
|
|
@ -1,135 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: 899bdc8d09b18f442afb6878811f3885
|
|
||||||
TextureImporter:
|
|
||||||
internalIDToNameTable: []
|
|
||||||
externalObjects: {}
|
|
||||||
serializedVersion: 12
|
|
||||||
mipmaps:
|
|
||||||
mipMapMode: 0
|
|
||||||
enableMipMap: 0
|
|
||||||
sRGBTexture: 1
|
|
||||||
linearTexture: 0
|
|
||||||
fadeOut: 0
|
|
||||||
borderMipMap: 0
|
|
||||||
mipMapsPreserveCoverage: 0
|
|
||||||
alphaTestReferenceValue: 0.5
|
|
||||||
mipMapFadeDistanceStart: 1
|
|
||||||
mipMapFadeDistanceEnd: 3
|
|
||||||
bumpmap:
|
|
||||||
convertToNormalMap: 0
|
|
||||||
externalNormalMap: 0
|
|
||||||
heightScale: 0.25
|
|
||||||
normalMapFilter: 0
|
|
||||||
isReadable: 0
|
|
||||||
streamingMipmaps: 0
|
|
||||||
streamingMipmapsPriority: 0
|
|
||||||
vTOnly: 0
|
|
||||||
ignoreMasterTextureLimit: 0
|
|
||||||
grayScaleToAlpha: 0
|
|
||||||
generateCubemap: 6
|
|
||||||
cubemapConvolution: 0
|
|
||||||
seamlessCubemap: 0
|
|
||||||
textureFormat: 1
|
|
||||||
maxTextureSize: 2048
|
|
||||||
textureSettings:
|
|
||||||
serializedVersion: 2
|
|
||||||
filterMode: 1
|
|
||||||
aniso: 1
|
|
||||||
mipBias: 0
|
|
||||||
wrapU: 1
|
|
||||||
wrapV: 1
|
|
||||||
wrapW: 0
|
|
||||||
nPOTScale: 0
|
|
||||||
lightmap: 0
|
|
||||||
compressionQuality: 50
|
|
||||||
spriteMode: 1
|
|
||||||
spriteExtrude: 1
|
|
||||||
spriteMeshType: 1
|
|
||||||
alignment: 0
|
|
||||||
spritePivot: {x: 0.5, y: 0.5}
|
|
||||||
spritePixelsToUnits: 100
|
|
||||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
|
||||||
spriteGenerateFallbackPhysicsShape: 1
|
|
||||||
alphaUsage: 1
|
|
||||||
alphaIsTransparency: 1
|
|
||||||
spriteTessellationDetail: -1
|
|
||||||
textureType: 8
|
|
||||||
textureShape: 1
|
|
||||||
singleChannelComponent: 0
|
|
||||||
flipbookRows: 1
|
|
||||||
flipbookColumns: 1
|
|
||||||
maxTextureSizeSet: 0
|
|
||||||
compressionQualitySet: 0
|
|
||||||
textureFormatSet: 0
|
|
||||||
ignorePngGamma: 0
|
|
||||||
applyGammaDecoding: 0
|
|
||||||
cookieLightType: 1
|
|
||||||
platformSettings:
|
|
||||||
- serializedVersion: 3
|
|
||||||
buildTarget: DefaultTexturePlatform
|
|
||||||
maxTextureSize: 2048
|
|
||||||
resizeAlgorithm: 0
|
|
||||||
textureFormat: -1
|
|
||||||
textureCompression: 1
|
|
||||||
compressionQuality: 50
|
|
||||||
crunchedCompression: 0
|
|
||||||
allowsAlphaSplitting: 0
|
|
||||||
overridden: 0
|
|
||||||
androidETC2FallbackOverride: 0
|
|
||||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
||||||
- serializedVersion: 3
|
|
||||||
buildTarget: Standalone
|
|
||||||
maxTextureSize: 2048
|
|
||||||
resizeAlgorithm: 0
|
|
||||||
textureFormat: -1
|
|
||||||
textureCompression: 1
|
|
||||||
compressionQuality: 50
|
|
||||||
crunchedCompression: 0
|
|
||||||
allowsAlphaSplitting: 0
|
|
||||||
overridden: 0
|
|
||||||
androidETC2FallbackOverride: 0
|
|
||||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
||||||
- serializedVersion: 3
|
|
||||||
buildTarget: iPhone
|
|
||||||
maxTextureSize: 2048
|
|
||||||
resizeAlgorithm: 0
|
|
||||||
textureFormat: -1
|
|
||||||
textureCompression: 1
|
|
||||||
compressionQuality: 50
|
|
||||||
crunchedCompression: 0
|
|
||||||
allowsAlphaSplitting: 0
|
|
||||||
overridden: 0
|
|
||||||
androidETC2FallbackOverride: 0
|
|
||||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
||||||
- serializedVersion: 3
|
|
||||||
buildTarget: Android
|
|
||||||
maxTextureSize: 2048
|
|
||||||
resizeAlgorithm: 0
|
|
||||||
textureFormat: -1
|
|
||||||
textureCompression: 1
|
|
||||||
compressionQuality: 50
|
|
||||||
crunchedCompression: 0
|
|
||||||
allowsAlphaSplitting: 0
|
|
||||||
overridden: 0
|
|
||||||
androidETC2FallbackOverride: 0
|
|
||||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
||||||
spriteSheet:
|
|
||||||
serializedVersion: 2
|
|
||||||
sprites: []
|
|
||||||
outline: []
|
|
||||||
physicsShape: []
|
|
||||||
bones: []
|
|
||||||
spriteID: 5e97eb03825dee720800000000000000
|
|
||||||
internalID: 0
|
|
||||||
vertices: []
|
|
||||||
indices:
|
|
||||||
edges: []
|
|
||||||
weights: []
|
|
||||||
secondaryTextures: []
|
|
||||||
nameFileIdTable: {}
|
|
||||||
spritePackingTag:
|
|
||||||
pSDRemoveMatte: 0
|
|
||||||
pSDShowRemoveMatteOption: 0
|
|
||||||
userData:
|
|
||||||
assetBundleName: ui/texture/main
|
|
||||||
assetBundleVariant:
|
|
||||||
|
Before Width: | Height: | Size: 1.3 KiB |
|
|
@ -1,135 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: f433efacce7219541a63730961433964
|
|
||||||
TextureImporter:
|
|
||||||
internalIDToNameTable: []
|
|
||||||
externalObjects: {}
|
|
||||||
serializedVersion: 12
|
|
||||||
mipmaps:
|
|
||||||
mipMapMode: 0
|
|
||||||
enableMipMap: 0
|
|
||||||
sRGBTexture: 1
|
|
||||||
linearTexture: 0
|
|
||||||
fadeOut: 0
|
|
||||||
borderMipMap: 0
|
|
||||||
mipMapsPreserveCoverage: 0
|
|
||||||
alphaTestReferenceValue: 0.5
|
|
||||||
mipMapFadeDistanceStart: 1
|
|
||||||
mipMapFadeDistanceEnd: 3
|
|
||||||
bumpmap:
|
|
||||||
convertToNormalMap: 0
|
|
||||||
externalNormalMap: 0
|
|
||||||
heightScale: 0.25
|
|
||||||
normalMapFilter: 0
|
|
||||||
isReadable: 0
|
|
||||||
streamingMipmaps: 0
|
|
||||||
streamingMipmapsPriority: 0
|
|
||||||
vTOnly: 0
|
|
||||||
ignoreMasterTextureLimit: 0
|
|
||||||
grayScaleToAlpha: 0
|
|
||||||
generateCubemap: 6
|
|
||||||
cubemapConvolution: 0
|
|
||||||
seamlessCubemap: 0
|
|
||||||
textureFormat: 1
|
|
||||||
maxTextureSize: 2048
|
|
||||||
textureSettings:
|
|
||||||
serializedVersion: 2
|
|
||||||
filterMode: 1
|
|
||||||
aniso: 1
|
|
||||||
mipBias: 0
|
|
||||||
wrapU: 1
|
|
||||||
wrapV: 1
|
|
||||||
wrapW: 0
|
|
||||||
nPOTScale: 0
|
|
||||||
lightmap: 0
|
|
||||||
compressionQuality: 50
|
|
||||||
spriteMode: 1
|
|
||||||
spriteExtrude: 1
|
|
||||||
spriteMeshType: 1
|
|
||||||
alignment: 0
|
|
||||||
spritePivot: {x: 0.5, y: 0.5}
|
|
||||||
spritePixelsToUnits: 100
|
|
||||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
|
||||||
spriteGenerateFallbackPhysicsShape: 1
|
|
||||||
alphaUsage: 1
|
|
||||||
alphaIsTransparency: 1
|
|
||||||
spriteTessellationDetail: -1
|
|
||||||
textureType: 8
|
|
||||||
textureShape: 1
|
|
||||||
singleChannelComponent: 0
|
|
||||||
flipbookRows: 1
|
|
||||||
flipbookColumns: 1
|
|
||||||
maxTextureSizeSet: 0
|
|
||||||
compressionQualitySet: 0
|
|
||||||
textureFormatSet: 0
|
|
||||||
ignorePngGamma: 0
|
|
||||||
applyGammaDecoding: 0
|
|
||||||
cookieLightType: 1
|
|
||||||
platformSettings:
|
|
||||||
- serializedVersion: 3
|
|
||||||
buildTarget: DefaultTexturePlatform
|
|
||||||
maxTextureSize: 2048
|
|
||||||
resizeAlgorithm: 0
|
|
||||||
textureFormat: -1
|
|
||||||
textureCompression: 1
|
|
||||||
compressionQuality: 50
|
|
||||||
crunchedCompression: 0
|
|
||||||
allowsAlphaSplitting: 0
|
|
||||||
overridden: 0
|
|
||||||
androidETC2FallbackOverride: 0
|
|
||||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
||||||
- serializedVersion: 3
|
|
||||||
buildTarget: Standalone
|
|
||||||
maxTextureSize: 2048
|
|
||||||
resizeAlgorithm: 0
|
|
||||||
textureFormat: -1
|
|
||||||
textureCompression: 1
|
|
||||||
compressionQuality: 50
|
|
||||||
crunchedCompression: 0
|
|
||||||
allowsAlphaSplitting: 0
|
|
||||||
overridden: 0
|
|
||||||
androidETC2FallbackOverride: 0
|
|
||||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
||||||
- serializedVersion: 3
|
|
||||||
buildTarget: iPhone
|
|
||||||
maxTextureSize: 2048
|
|
||||||
resizeAlgorithm: 0
|
|
||||||
textureFormat: -1
|
|
||||||
textureCompression: 1
|
|
||||||
compressionQuality: 50
|
|
||||||
crunchedCompression: 0
|
|
||||||
allowsAlphaSplitting: 0
|
|
||||||
overridden: 0
|
|
||||||
androidETC2FallbackOverride: 0
|
|
||||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
||||||
- serializedVersion: 3
|
|
||||||
buildTarget: Android
|
|
||||||
maxTextureSize: 2048
|
|
||||||
resizeAlgorithm: 0
|
|
||||||
textureFormat: -1
|
|
||||||
textureCompression: 1
|
|
||||||
compressionQuality: 50
|
|
||||||
crunchedCompression: 0
|
|
||||||
allowsAlphaSplitting: 0
|
|
||||||
overridden: 0
|
|
||||||
androidETC2FallbackOverride: 0
|
|
||||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
||||||
spriteSheet:
|
|
||||||
serializedVersion: 2
|
|
||||||
sprites: []
|
|
||||||
outline: []
|
|
||||||
physicsShape: []
|
|
||||||
bones: []
|
|
||||||
spriteID: 5e97eb03825dee720800000000000000
|
|
||||||
internalID: 0
|
|
||||||
vertices: []
|
|
||||||
indices:
|
|
||||||
edges: []
|
|
||||||
weights: []
|
|
||||||
secondaryTextures: []
|
|
||||||
nameFileIdTable: {}
|
|
||||||
spritePackingTag:
|
|
||||||
pSDRemoveMatte: 0
|
|
||||||
pSDShowRemoveMatteOption: 0
|
|
||||||
userData:
|
|
||||||
assetBundleName: ui/texture/main
|
|
||||||
assetBundleVariant:
|
|
||||||
|
|
@ -968,7 +968,6 @@ public class PageSliderManager : MonoBehaviour, IBeginDragHandler, IDragHandler,
|
||||||
// 处理页面切换动画
|
// 处理页面切换动画
|
||||||
HandleDirectJumpAnimation(previousPageIndex, targetIndex);
|
HandleDirectJumpAnimation(previousPageIndex, targetIndex);
|
||||||
|
|
||||||
Debug.Log($"直接跳转到页面 {targetIndex},起始位置: {jumpStartX},目标位置: {jumpTargetX}");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// 添加停止所有动画的方法
|
// 添加停止所有动画的方法
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@ MonoBehaviour:
|
||||||
m_EditorClassIdentifier:
|
m_EditorClassIdentifier:
|
||||||
m_Children:
|
m_Children:
|
||||||
- {fileID: 3}
|
- {fileID: 3}
|
||||||
- {fileID: 18}
|
- {fileID: 17}
|
||||||
m_Position:
|
m_Position:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
|
|
@ -24,7 +24,7 @@ MonoBehaviour:
|
||||||
m_MinSize: {x: 400, y: 200}
|
m_MinSize: {x: 400, y: 200}
|
||||||
m_MaxSize: {x: 32384, y: 16192}
|
m_MaxSize: {x: 32384, y: 16192}
|
||||||
vertical: 0
|
vertical: 0
|
||||||
controlID: 28
|
controlID: 2144
|
||||||
--- !u!114 &2
|
--- !u!114 &2
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
|
|
@ -46,10 +46,10 @@ MonoBehaviour:
|
||||||
m_Tooltip:
|
m_Tooltip:
|
||||||
m_Pos:
|
m_Pos:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 1610
|
x: 1500
|
||||||
y: 643
|
y: 574
|
||||||
width: 455
|
width: 565
|
||||||
height: 700
|
height: 769
|
||||||
m_ViewDataDictionary: {fileID: 0}
|
m_ViewDataDictionary: {fileID: 0}
|
||||||
m_OverlayCanvas:
|
m_OverlayCanvas:
|
||||||
m_LastAppliedPresetName: Default
|
m_LastAppliedPresetName: Default
|
||||||
|
|
@ -97,23 +97,23 @@ MonoBehaviour:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
y: 21
|
y: 21
|
||||||
width: 455
|
width: 565
|
||||||
height: 679
|
height: 748
|
||||||
m_Scale: {x: 0.26816747, y: 0.26816747}
|
m_Scale: {x: 0.29541865, y: 0.29541865}
|
||||||
m_Translation: {x: 227.5, y: 339.5}
|
m_Translation: {x: 282.5, y: 374}
|
||||||
m_MarginLeft: 0
|
m_MarginLeft: 0
|
||||||
m_MarginRight: 0
|
m_MarginRight: 0
|
||||||
m_MarginTop: 0
|
m_MarginTop: 0
|
||||||
m_MarginBottom: 0
|
m_MarginBottom: 0
|
||||||
m_LastShownAreaInsideMargins:
|
m_LastShownAreaInsideMargins:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: -848.35046
|
x: -956.27
|
||||||
y: -1266
|
y: -1266
|
||||||
width: 1696.7009
|
width: 1912.54
|
||||||
height: 2532
|
height: 2532
|
||||||
m_MinimalGUI: 1
|
m_MinimalGUI: 1
|
||||||
m_defaultScale: 0.26816747
|
m_defaultScale: 0.29541865
|
||||||
m_LastWindowPixelSize: {x: 455, y: 700}
|
m_LastWindowPixelSize: {x: 565, y: 769}
|
||||||
m_ClearInEditMode: 1
|
m_ClearInEditMode: 1
|
||||||
m_NoCameraWarning: 1
|
m_NoCameraWarning: 1
|
||||||
m_LowResolutionForAspectRatios: 01000001000000000000
|
m_LowResolutionForAspectRatios: 01000001000000000000
|
||||||
|
|
@ -133,7 +133,7 @@ MonoBehaviour:
|
||||||
m_EditorClassIdentifier:
|
m_EditorClassIdentifier:
|
||||||
m_Children:
|
m_Children:
|
||||||
- {fileID: 4}
|
- {fileID: 4}
|
||||||
- {fileID: 12}
|
- {fileID: 11}
|
||||||
m_Position:
|
m_Position:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
|
|
@ -143,7 +143,7 @@ MonoBehaviour:
|
||||||
m_MinSize: {x: 300, y: 200}
|
m_MinSize: {x: 300, y: 200}
|
||||||
m_MaxSize: {x: 24288, y: 16192}
|
m_MaxSize: {x: 24288, y: 16192}
|
||||||
vertical: 1
|
vertical: 1
|
||||||
controlID: 29
|
controlID: 2145
|
||||||
--- !u!114 &4
|
--- !u!114 &4
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
|
|
@ -164,11 +164,11 @@ MonoBehaviour:
|
||||||
x: 0
|
x: 0
|
||||||
y: 0
|
y: 0
|
||||||
width: 2055
|
width: 2055
|
||||||
height: 562
|
height: 493
|
||||||
m_MinSize: {x: 200, y: 100}
|
m_MinSize: {x: 200, y: 100}
|
||||||
m_MaxSize: {x: 16192, y: 8096}
|
m_MaxSize: {x: 16192, y: 8096}
|
||||||
vertical: 0
|
vertical: 0
|
||||||
controlID: 17
|
controlID: 2114
|
||||||
--- !u!114 &5
|
--- !u!114 &5
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
|
|
@ -187,7 +187,7 @@ MonoBehaviour:
|
||||||
x: 0
|
x: 0
|
||||||
y: 0
|
y: 0
|
||||||
width: 458
|
width: 458
|
||||||
height: 562
|
height: 493
|
||||||
m_MinSize: {x: 201, y: 221}
|
m_MinSize: {x: 201, y: 221}
|
||||||
m_MaxSize: {x: 4001, y: 4021}
|
m_MaxSize: {x: 4001, y: 4021}
|
||||||
m_ActualView: {fileID: 6}
|
m_ActualView: {fileID: 6}
|
||||||
|
|
@ -219,7 +219,7 @@ MonoBehaviour:
|
||||||
x: 12
|
x: 12
|
||||||
y: 81
|
y: 81
|
||||||
width: 457
|
width: 457
|
||||||
height: 541
|
height: 472
|
||||||
m_ViewDataDictionary: {fileID: 0}
|
m_ViewDataDictionary: {fileID: 0}
|
||||||
m_OverlayCanvas:
|
m_OverlayCanvas:
|
||||||
m_LastAppliedPresetName: Default
|
m_LastAppliedPresetName: Default
|
||||||
|
|
@ -228,9 +228,9 @@ MonoBehaviour:
|
||||||
m_SceneHierarchy:
|
m_SceneHierarchy:
|
||||||
m_TreeViewState:
|
m_TreeViewState:
|
||||||
scrollPos: {x: 0, y: 0}
|
scrollPos: {x: 0, y: 0}
|
||||||
m_SelectedIDs: c24a0000
|
m_SelectedIDs:
|
||||||
m_LastClickedID: 0
|
m_LastClickedID: 0
|
||||||
m_ExpandedIDs: 1663feff2063feff2a63feff3863feff7c63feff3a73feff2cfbffff4455000052550000
|
m_ExpandedIDs: 14f2fbff20f2fbff2eb6000052b600006ab6000076b6000086b6000090b600009eb60000aeb60000b6b60000
|
||||||
m_RenameOverlay:
|
m_RenameOverlay:
|
||||||
m_UserAcceptedRename: 0
|
m_UserAcceptedRename: 0
|
||||||
m_Name:
|
m_Name:
|
||||||
|
|
@ -272,48 +272,17 @@ MonoBehaviour:
|
||||||
x: 458
|
x: 458
|
||||||
y: 0
|
y: 0
|
||||||
width: 1597
|
width: 1597
|
||||||
height: 562
|
height: 493
|
||||||
m_MinSize: {x: 202, y: 221}
|
m_MinSize: {x: 202, y: 221}
|
||||||
m_MaxSize: {x: 4002, y: 4021}
|
m_MaxSize: {x: 4002, y: 4021}
|
||||||
m_ActualView: {fileID: 11}
|
m_ActualView: {fileID: 10}
|
||||||
m_Panes:
|
m_Panes:
|
||||||
- {fileID: 8}
|
- {fileID: 8}
|
||||||
- {fileID: 9}
|
- {fileID: 9}
|
||||||
- {fileID: 10}
|
- {fileID: 10}
|
||||||
- {fileID: 11}
|
m_Selected: 2
|
||||||
m_Selected: 3
|
|
||||||
m_LastSelected: 2
|
m_LastSelected: 2
|
||||||
--- !u!114 &8
|
--- !u!114 &8
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 52
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 0}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 1
|
|
||||||
m_Script: {fileID: 12111, guid: 0000000000000000e000000000000000, type: 0}
|
|
||||||
m_Name:
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
m_MinSize: {x: 400, y: 100}
|
|
||||||
m_MaxSize: {x: 2048, y: 2048}
|
|
||||||
m_TitleContent:
|
|
||||||
m_Text: Asset Store
|
|
||||||
m_Image: {fileID: -8693916549880196297, guid: 0000000000000000d000000000000000,
|
|
||||||
type: 0}
|
|
||||||
m_Tooltip:
|
|
||||||
m_Pos:
|
|
||||||
serializedVersion: 2
|
|
||||||
x: 462
|
|
||||||
y: 81
|
|
||||||
width: 1401
|
|
||||||
height: 484
|
|
||||||
m_ViewDataDictionary: {fileID: 0}
|
|
||||||
m_OverlayCanvas:
|
|
||||||
m_LastAppliedPresetName: Default
|
|
||||||
m_SaveData: []
|
|
||||||
m_OverlaysVisible: 1
|
|
||||||
--- !u!114 &9
|
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
|
@ -337,7 +306,7 @@ MonoBehaviour:
|
||||||
x: 470
|
x: 470
|
||||||
y: 81
|
y: 81
|
||||||
width: 1595
|
width: 1595
|
||||||
height: 473
|
height: 513
|
||||||
m_ViewDataDictionary: {fileID: 0}
|
m_ViewDataDictionary: {fileID: 0}
|
||||||
m_OverlayCanvas:
|
m_OverlayCanvas:
|
||||||
m_LastAppliedPresetName: Default
|
m_LastAppliedPresetName: Default
|
||||||
|
|
@ -349,6 +318,8 @@ MonoBehaviour:
|
||||||
- {fileID: 6493954791980047924, guid: 3d06c6180fdee4b4f934170a2ae76e29, type: 2}
|
- {fileID: 6493954791980047924, guid: 3d06c6180fdee4b4f934170a2ae76e29, type: 2}
|
||||||
- {fileID: 1236729993981667375, guid: a77bfa5dcfc291748b7fb88e0754ca87, type: 2}
|
- {fileID: 1236729993981667375, guid: a77bfa5dcfc291748b7fb88e0754ca87, type: 2}
|
||||||
- {fileID: -8850320641527390869, guid: db5d169666ca05c41b863adbbe697fcc, type: 2}
|
- {fileID: -8850320641527390869, guid: db5d169666ca05c41b863adbbe697fcc, type: 2}
|
||||||
|
- {fileID: 8017737070514627443, guid: 981a69e23d26fde428f70211d6babd0e, type: 2}
|
||||||
|
- {fileID: -3236372629044136465, guid: a77c42034a9b1c34d914815329be7871, type: 2}
|
||||||
m_ValueSerializationHelper:
|
m_ValueSerializationHelper:
|
||||||
- e00: 0.9360825
|
- e00: 0.9360825
|
||||||
e01: 0
|
e01: 0
|
||||||
|
|
@ -414,11 +385,43 @@ MonoBehaviour:
|
||||||
e31: 0
|
e31: 0
|
||||||
e32: 0
|
e32: 0
|
||||||
e33: 1
|
e33: 1
|
||||||
|
- e00: 1
|
||||||
|
e01: 0
|
||||||
|
e02: 0
|
||||||
|
e03: 0
|
||||||
|
e10: 0
|
||||||
|
e11: 1
|
||||||
|
e12: 0
|
||||||
|
e13: 0
|
||||||
|
e20: 0
|
||||||
|
e21: 0
|
||||||
|
e22: 1
|
||||||
|
e23: 0
|
||||||
|
e30: 0
|
||||||
|
e31: 0
|
||||||
|
e32: 0
|
||||||
|
e33: 1
|
||||||
|
- e00: 1
|
||||||
|
e01: 0
|
||||||
|
e02: 0
|
||||||
|
e03: 0
|
||||||
|
e10: 0
|
||||||
|
e11: 1
|
||||||
|
e12: 0
|
||||||
|
e13: 0
|
||||||
|
e20: 0
|
||||||
|
e21: 0
|
||||||
|
e22: 1
|
||||||
|
e23: 0
|
||||||
|
e30: 0
|
||||||
|
e31: 0
|
||||||
|
e32: 0
|
||||||
|
e33: 1
|
||||||
m_PreviewAnimator: {fileID: 0}
|
m_PreviewAnimator: {fileID: 0}
|
||||||
m_AnimatorController: {fileID: 9100000, guid: db5d169666ca05c41b863adbbe697fcc,
|
m_AnimatorController: {fileID: 9100000, guid: a77c42034a9b1c34d914815329be7871,
|
||||||
type: 2}
|
type: 2}
|
||||||
m_BreadCrumbs:
|
m_BreadCrumbs:
|
||||||
- m_Target: {fileID: -8850320641527390869, guid: db5d169666ca05c41b863adbbe697fcc,
|
- m_Target: {fileID: -3236372629044136465, guid: a77c42034a9b1c34d914815329be7871,
|
||||||
type: 2}
|
type: 2}
|
||||||
m_ScrollPosition: {x: 0, y: 0}
|
m_ScrollPosition: {x: 0, y: 0}
|
||||||
stateMachineGraph: {fileID: 0}
|
stateMachineGraph: {fileID: 0}
|
||||||
|
|
@ -432,7 +435,7 @@ MonoBehaviour:
|
||||||
m_CurrentEditor: 0
|
m_CurrentEditor: 0
|
||||||
m_LayerEditor:
|
m_LayerEditor:
|
||||||
m_SelectedLayerIndex: 0
|
m_SelectedLayerIndex: 0
|
||||||
--- !u!114 &10
|
--- !u!114 &9
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
|
@ -456,7 +459,7 @@ MonoBehaviour:
|
||||||
x: 470
|
x: 470
|
||||||
y: 81
|
y: 81
|
||||||
width: 1595
|
width: 1595
|
||||||
height: 473
|
height: 472
|
||||||
m_ViewDataDictionary: {fileID: 0}
|
m_ViewDataDictionary: {fileID: 0}
|
||||||
m_OverlayCanvas:
|
m_OverlayCanvas:
|
||||||
m_LastAppliedPresetName: Default
|
m_LastAppliedPresetName: Default
|
||||||
|
|
@ -464,8 +467,8 @@ MonoBehaviour:
|
||||||
m_OverlaysVisible: 1
|
m_OverlaysVisible: 1
|
||||||
m_LockTracker:
|
m_LockTracker:
|
||||||
m_IsLocked: 0
|
m_IsLocked: 0
|
||||||
m_LastSelectedObjectID: -6122
|
m_LastSelectedObjectID: 32210
|
||||||
--- !u!114 &11
|
--- !u!114 &10
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
|
@ -489,7 +492,7 @@ MonoBehaviour:
|
||||||
x: 470
|
x: 470
|
||||||
y: 81
|
y: 81
|
||||||
width: 1595
|
width: 1595
|
||||||
height: 541
|
height: 472
|
||||||
m_ViewDataDictionary: {fileID: 0}
|
m_ViewDataDictionary: {fileID: 0}
|
||||||
m_OverlayCanvas:
|
m_OverlayCanvas:
|
||||||
m_LastAppliedPresetName: Default
|
m_LastAppliedPresetName: Default
|
||||||
|
|
@ -500,7 +503,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 1
|
displayed: 1
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: -101, y: -26}
|
snapOffsetDelta: {x: -101, y: -1}
|
||||||
snapCorner: 3
|
snapCorner: 3
|
||||||
id: Tool Settings
|
id: Tool Settings
|
||||||
index: 0
|
index: 0
|
||||||
|
|
@ -533,7 +536,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 0}
|
snapOffsetDelta: {x: 0, y: 25}
|
||||||
snapCorner: 1
|
snapCorner: 1
|
||||||
id: unity-search-toolbar
|
id: unity-search-toolbar
|
||||||
index: 1
|
index: 1
|
||||||
|
|
@ -544,7 +547,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 1
|
displayed: 1
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 0}
|
snapOffsetDelta: {x: 0, y: 25}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: unity-transform-toolbar
|
id: unity-transform-toolbar
|
||||||
index: 0
|
index: 0
|
||||||
|
|
@ -577,7 +580,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 0}
|
snapOffsetDelta: {x: 0, y: 25}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: Scene View/Light Settings
|
id: Scene View/Light Settings
|
||||||
index: 0
|
index: 0
|
||||||
|
|
@ -588,7 +591,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 0}
|
snapOffsetDelta: {x: 0, y: 25}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: Scene View/Camera
|
id: Scene View/Camera
|
||||||
index: 1
|
index: 1
|
||||||
|
|
@ -599,7 +602,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 0}
|
snapOffsetDelta: {x: 0, y: 25}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: Scene View/Cloth Constraints
|
id: Scene View/Cloth Constraints
|
||||||
index: 2
|
index: 2
|
||||||
|
|
@ -610,7 +613,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 0}
|
snapOffsetDelta: {x: 0, y: 25}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: Scene View/Cloth Collisions
|
id: Scene View/Cloth Collisions
|
||||||
index: 3
|
index: 3
|
||||||
|
|
@ -621,7 +624,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 0}
|
snapOffsetDelta: {x: 0, y: 25}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: Scene View/Navmesh Display
|
id: Scene View/Navmesh Display
|
||||||
index: 5
|
index: 5
|
||||||
|
|
@ -632,7 +635,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 0}
|
snapOffsetDelta: {x: 0, y: 25}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: Scene View/Agent Display
|
id: Scene View/Agent Display
|
||||||
index: 7
|
index: 7
|
||||||
|
|
@ -643,7 +646,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 0}
|
snapOffsetDelta: {x: 0, y: 25}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: Scene View/Obstacle Display
|
id: Scene View/Obstacle Display
|
||||||
index: 9
|
index: 9
|
||||||
|
|
@ -654,7 +657,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 0}
|
snapOffsetDelta: {x: 0, y: 25}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: Scene View/Occlusion Culling
|
id: Scene View/Occlusion Culling
|
||||||
index: 4
|
index: 4
|
||||||
|
|
@ -665,7 +668,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 0}
|
snapOffsetDelta: {x: 0, y: 25}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: Scene View/Physics Debugger
|
id: Scene View/Physics Debugger
|
||||||
index: 6
|
index: 6
|
||||||
|
|
@ -676,7 +679,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 0}
|
snapOffsetDelta: {x: 0, y: 25}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: Scene View/Scene Visibility
|
id: Scene View/Scene Visibility
|
||||||
index: 8
|
index: 8
|
||||||
|
|
@ -687,7 +690,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 0}
|
snapOffsetDelta: {x: 0, y: 25}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: Scene View/Particles
|
id: Scene View/Particles
|
||||||
index: 10
|
index: 10
|
||||||
|
|
@ -731,7 +734,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 0}
|
snapOffsetDelta: {x: 0, y: 25}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: Scene View/Open Tile Palette
|
id: Scene View/Open Tile Palette
|
||||||
index: 2
|
index: 2
|
||||||
|
|
@ -742,7 +745,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 0}
|
snapOffsetDelta: {x: 0, y: 25}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: Scene View/Tilemap Focus
|
id: Scene View/Tilemap Focus
|
||||||
index: 3
|
index: 3
|
||||||
|
|
@ -750,17 +753,17 @@ MonoBehaviour:
|
||||||
m_OverlaysVisible: 1
|
m_OverlaysVisible: 1
|
||||||
m_WindowGUID: e07c16a66c31ae440bdbc5a34c43feb6
|
m_WindowGUID: e07c16a66c31ae440bdbc5a34c43feb6
|
||||||
m_Gizmos: 1
|
m_Gizmos: 1
|
||||||
m_OverrideSceneCullingMask: 6917529027641081856
|
m_OverrideSceneCullingMask: 0
|
||||||
m_SceneIsLit: 1
|
m_SceneIsLit: 0
|
||||||
m_SceneLighting: 1
|
m_SceneLighting: 1
|
||||||
m_2DMode: 1
|
m_2DMode: 1
|
||||||
m_isRotationLocked: 0
|
m_isRotationLocked: 0
|
||||||
m_PlayAudio: 0
|
m_PlayAudio: 0
|
||||||
m_AudioPlay: 0
|
m_AudioPlay: 0
|
||||||
m_Position:
|
m_Position:
|
||||||
m_Target: {x: 615.6854, y: 2438.5596, z: 3.1519747}
|
m_Target: {x: 1498.1542, y: 710.29254, z: -10.221394}
|
||||||
speed: 2
|
speed: 2
|
||||||
m_Value: {x: 615.6854, y: 2438.5596, z: 3.1519747}
|
m_Value: {x: 1498.1542, y: 710.29254, z: -10.221394}
|
||||||
m_RenderMode: 0
|
m_RenderMode: 0
|
||||||
m_CameraMode:
|
m_CameraMode:
|
||||||
drawMode: 0
|
drawMode: 0
|
||||||
|
|
@ -772,7 +775,7 @@ MonoBehaviour:
|
||||||
m_SceneViewState:
|
m_SceneViewState:
|
||||||
m_AlwaysRefresh: 0
|
m_AlwaysRefresh: 0
|
||||||
showFog: 1
|
showFog: 1
|
||||||
showSkybox: 1
|
showSkybox: 0
|
||||||
showFlares: 1
|
showFlares: 1
|
||||||
showImageEffects: 1
|
showImageEffects: 1
|
||||||
showParticleSystems: 1
|
showParticleSystems: 1
|
||||||
|
|
@ -811,9 +814,9 @@ MonoBehaviour:
|
||||||
speed: 2
|
speed: 2
|
||||||
m_Value: {x: 0, y: 0, z: 0, w: 1}
|
m_Value: {x: 0, y: 0, z: 0, w: 1}
|
||||||
m_Size:
|
m_Size:
|
||||||
m_Target: 1079.846
|
m_Target: 2416.766
|
||||||
speed: 2
|
speed: 2
|
||||||
m_Value: 1079.846
|
m_Value: 2416.766
|
||||||
m_Ortho:
|
m_Ortho:
|
||||||
m_Target: 1
|
m_Target: 1
|
||||||
speed: 2
|
speed: 2
|
||||||
|
|
@ -838,7 +841,7 @@ MonoBehaviour:
|
||||||
m_SceneVisActive: 1
|
m_SceneVisActive: 1
|
||||||
m_LastLockedObject: {fileID: 0}
|
m_LastLockedObject: {fileID: 0}
|
||||||
m_ViewIsLockedToObject: 0
|
m_ViewIsLockedToObject: 0
|
||||||
--- !u!114 &12
|
--- !u!114 &11
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
|
@ -851,20 +854,20 @@ MonoBehaviour:
|
||||||
m_Name:
|
m_Name:
|
||||||
m_EditorClassIdentifier:
|
m_EditorClassIdentifier:
|
||||||
m_Children:
|
m_Children:
|
||||||
- {fileID: 13}
|
- {fileID: 12}
|
||||||
- {fileID: 15}
|
- {fileID: 14}
|
||||||
- {fileID: 17}
|
- {fileID: 16}
|
||||||
m_Position:
|
m_Position:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
y: 562
|
y: 493
|
||||||
width: 2055
|
width: 2055
|
||||||
height: 721
|
height: 790
|
||||||
m_MinSize: {x: 300, y: 100}
|
m_MinSize: {x: 300, y: 100}
|
||||||
m_MaxSize: {x: 24288, y: 8096}
|
m_MaxSize: {x: 24288, y: 8096}
|
||||||
vertical: 0
|
vertical: 0
|
||||||
controlID: 30
|
controlID: 2146
|
||||||
--- !u!114 &13
|
--- !u!114 &12
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
|
@ -881,16 +884,16 @@ MonoBehaviour:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
y: 0
|
y: 0
|
||||||
width: 684
|
width: 686
|
||||||
height: 721
|
height: 790
|
||||||
m_MinSize: {x: 231, y: 271}
|
m_MinSize: {x: 231, y: 271}
|
||||||
m_MaxSize: {x: 10001, y: 10021}
|
m_MaxSize: {x: 10001, y: 10021}
|
||||||
m_ActualView: {fileID: 14}
|
m_ActualView: {fileID: 13}
|
||||||
m_Panes:
|
m_Panes:
|
||||||
- {fileID: 14}
|
- {fileID: 13}
|
||||||
m_Selected: 0
|
m_Selected: 0
|
||||||
m_LastSelected: 0
|
m_LastSelected: 0
|
||||||
--- !u!114 &14
|
--- !u!114 &13
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
|
@ -912,9 +915,9 @@ MonoBehaviour:
|
||||||
m_Pos:
|
m_Pos:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 12
|
x: 12
|
||||||
y: 643
|
y: 574
|
||||||
width: 683
|
width: 685
|
||||||
height: 700
|
height: 769
|
||||||
m_ViewDataDictionary: {fileID: 0}
|
m_ViewDataDictionary: {fileID: 0}
|
||||||
m_OverlayCanvas:
|
m_OverlayCanvas:
|
||||||
m_LastAppliedPresetName: Default
|
m_LastAppliedPresetName: Default
|
||||||
|
|
@ -931,23 +934,23 @@ MonoBehaviour:
|
||||||
m_SkipHidden: 0
|
m_SkipHidden: 0
|
||||||
m_SearchArea: 1
|
m_SearchArea: 1
|
||||||
m_Folders:
|
m_Folders:
|
||||||
- Assets/Scripts/Core
|
- Assets/ART/base/lobby
|
||||||
m_Globs: []
|
m_Globs: []
|
||||||
m_OriginalText:
|
m_OriginalText:
|
||||||
m_FilterByTypeIntersection: 0
|
m_FilterByTypeIntersection: 0
|
||||||
m_ViewMode: 1
|
m_ViewMode: 1
|
||||||
m_StartGridSize: 16
|
m_StartGridSize: 16
|
||||||
m_LastFolders:
|
m_LastFolders:
|
||||||
- Assets/Scripts/Core
|
- Assets/ART/base/lobby
|
||||||
m_LastFoldersGridSize: 16
|
m_LastFoldersGridSize: 16
|
||||||
m_LastProjectPath: D:\UnityProject\dezhou\dezhou_client\wb_unity_pro
|
m_LastProjectPath: D:\UnityProject\dezhou\dezhou_client\wb_unity_pro
|
||||||
m_LockTracker:
|
m_LockTracker:
|
||||||
m_IsLocked: 0
|
m_IsLocked: 0
|
||||||
m_FolderTreeState:
|
m_FolderTreeState:
|
||||||
scrollPos: {x: 0, y: 219}
|
scrollPos: {x: 0, y: 19}
|
||||||
m_SelectedIDs: b09d0000
|
m_SelectedIDs: d8550000
|
||||||
m_LastClickedID: 40368
|
m_LastClickedID: 21976
|
||||||
m_ExpandedIDs: 00000000f89c0000fa9c0000fc9c0000fe9c0000009d0000229d0000409d000000ca9a3bffffff7f
|
m_ExpandedIDs: 00000000ce550000d0550000d2550000d4550000d6550000d8550000fe5500001856000000ca9a3bffffff7f
|
||||||
m_RenameOverlay:
|
m_RenameOverlay:
|
||||||
m_UserAcceptedRename: 0
|
m_UserAcceptedRename: 0
|
||||||
m_Name:
|
m_Name:
|
||||||
|
|
@ -963,7 +966,7 @@ MonoBehaviour:
|
||||||
m_IsRenaming: 0
|
m_IsRenaming: 0
|
||||||
m_OriginalEventType: 11
|
m_OriginalEventType: 11
|
||||||
m_IsRenamingFilename: 1
|
m_IsRenamingFilename: 1
|
||||||
m_ClientGUIView: {fileID: 13}
|
m_ClientGUIView: {fileID: 12}
|
||||||
m_SearchString:
|
m_SearchString:
|
||||||
m_CreateAssetUtility:
|
m_CreateAssetUtility:
|
||||||
m_EndAction: {fileID: 0}
|
m_EndAction: {fileID: 0}
|
||||||
|
|
@ -975,7 +978,7 @@ MonoBehaviour:
|
||||||
scrollPos: {x: 0, y: 0}
|
scrollPos: {x: 0, y: 0}
|
||||||
m_SelectedIDs:
|
m_SelectedIDs:
|
||||||
m_LastClickedID: 0
|
m_LastClickedID: 0
|
||||||
m_ExpandedIDs: 00000000f89c0000fa9c0000fc9c0000fe9c0000009d0000
|
m_ExpandedIDs: 00000000ce550000d0550000d2550000d4550000d6550000d855000000ca9a3bffffff7f
|
||||||
m_RenameOverlay:
|
m_RenameOverlay:
|
||||||
m_UserAcceptedRename: 0
|
m_UserAcceptedRename: 0
|
||||||
m_Name:
|
m_Name:
|
||||||
|
|
@ -1000,10 +1003,10 @@ MonoBehaviour:
|
||||||
m_Icon: {fileID: 0}
|
m_Icon: {fileID: 0}
|
||||||
m_ResourceFile:
|
m_ResourceFile:
|
||||||
m_ListAreaState:
|
m_ListAreaState:
|
||||||
m_SelectedInstanceIDs: c24a0000
|
m_SelectedInstanceIDs:
|
||||||
m_LastClickedInstanceID: 19138
|
m_LastClickedInstanceID: 0
|
||||||
m_HadKeyboardFocusLastEvent: 1
|
m_HadKeyboardFocusLastEvent: 1
|
||||||
m_ExpandedInstanceIDs: c6230000d8c2000054c40000ba0c0100c49200006293000066660000167d0000ea85000038610000f85f0000dc5e00000a60000006600000ea5f000012600000ec5f0000987900005438030014600000106000009c6e040054640000165900001c590000a2c804005c730000725e0000645e000068a907007e5d00008a5e0000449c0e00a2970000665d0000765d0000785e0000fa920000f692000002930000f4920000f2980000c05d0000e8730000c4730000f2730000ecdc0400e2730000d6730000da730000e47300003a0d0400e25e0000de5e0000d25d0000e25d0000f25e0000ea5e0000cc5e0000fa5e0000dc5d00002e600000e85e0000de5d0000ca5f0000d25f0000005f0000ce590b00fe5e0000ec690000f4690000ee6900004e670000125f00004edfecff26b7ffffa89d00007a9d000000000000
|
m_ExpandedInstanceIDs: c6230000d8c2000054c40000ba0c0100c49200006293000066660000167d0000ea85000038610000f85f0000dc5e00000a60000006600000ea5f000012600000ec5f0000987900005438030014600000106000009c6e040054640000165900001c590000a2c804005c730000725e0000645e000068a907007e5d00008a5e0000449c0e00a2970000665d0000765d0000785e0000fa920000f692000002930000f4920000f2980000c05d0000e8730000c4730000f2730000ecdc0400e2730000d6730000da730000e47300003a0d0400e25e0000de5e0000d25d0000e25d0000f25e0000ea5e0000cc5e0000fa5e0000dc5d00002e600000e85e0000de5d0000ca5f0000d25f0000005f0000ce590b00fe5e0000ec690000f4690000ee6900004e670000125f00004edfecff26b7ffffa89d00007a9d0000000000004ebc00001e560000b0010000ca570000f85700008c8a0000e65d0000247f00003a690000
|
||||||
m_RenameOverlay:
|
m_RenameOverlay:
|
||||||
m_UserAcceptedRename: 0
|
m_UserAcceptedRename: 0
|
||||||
m_Name:
|
m_Name:
|
||||||
|
|
@ -1019,7 +1022,7 @@ MonoBehaviour:
|
||||||
m_IsRenaming: 0
|
m_IsRenaming: 0
|
||||||
m_OriginalEventType: 11
|
m_OriginalEventType: 11
|
||||||
m_IsRenamingFilename: 1
|
m_IsRenamingFilename: 1
|
||||||
m_ClientGUIView: {fileID: 13}
|
m_ClientGUIView: {fileID: 12}
|
||||||
m_CreateAssetUtility:
|
m_CreateAssetUtility:
|
||||||
m_EndAction: {fileID: 0}
|
m_EndAction: {fileID: 0}
|
||||||
m_InstanceID: 0
|
m_InstanceID: 0
|
||||||
|
|
@ -1031,7 +1034,7 @@ MonoBehaviour:
|
||||||
m_GridSize: 16
|
m_GridSize: 16
|
||||||
m_SkipHiddenPackages: 0
|
m_SkipHiddenPackages: 0
|
||||||
m_DirectoriesAreaWidth: 243
|
m_DirectoriesAreaWidth: 243
|
||||||
--- !u!114 &15
|
--- !u!114 &14
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
|
@ -1046,18 +1049,18 @@ MonoBehaviour:
|
||||||
m_Children: []
|
m_Children: []
|
||||||
m_Position:
|
m_Position:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 684
|
x: 686
|
||||||
y: 0
|
y: 0
|
||||||
width: 914
|
width: 802
|
||||||
height: 721
|
height: 790
|
||||||
m_MinSize: {x: 102, y: 121}
|
m_MinSize: {x: 102, y: 121}
|
||||||
m_MaxSize: {x: 4002, y: 4021}
|
m_MaxSize: {x: 4002, y: 4021}
|
||||||
m_ActualView: {fileID: 16}
|
m_ActualView: {fileID: 15}
|
||||||
m_Panes:
|
m_Panes:
|
||||||
- {fileID: 16}
|
- {fileID: 15}
|
||||||
m_Selected: 0
|
m_Selected: 0
|
||||||
m_LastSelected: 0
|
m_LastSelected: 0
|
||||||
--- !u!114 &16
|
--- !u!114 &15
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
|
@ -1078,16 +1081,16 @@ MonoBehaviour:
|
||||||
m_Tooltip:
|
m_Tooltip:
|
||||||
m_Pos:
|
m_Pos:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 696
|
x: 698
|
||||||
y: 643
|
y: 574
|
||||||
width: 912
|
width: 800
|
||||||
height: 700
|
height: 769
|
||||||
m_ViewDataDictionary: {fileID: 0}
|
m_ViewDataDictionary: {fileID: 0}
|
||||||
m_OverlayCanvas:
|
m_OverlayCanvas:
|
||||||
m_LastAppliedPresetName: Default
|
m_LastAppliedPresetName: Default
|
||||||
m_SaveData: []
|
m_SaveData: []
|
||||||
m_OverlaysVisible: 1
|
m_OverlaysVisible: 1
|
||||||
--- !u!114 &17
|
--- !u!114 &16
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
|
@ -1102,10 +1105,10 @@ MonoBehaviour:
|
||||||
m_Children: []
|
m_Children: []
|
||||||
m_Position:
|
m_Position:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 1598
|
x: 1488
|
||||||
y: 0
|
y: 0
|
||||||
width: 457
|
width: 567
|
||||||
height: 721
|
height: 790
|
||||||
m_MinSize: {x: 202, y: 221}
|
m_MinSize: {x: 202, y: 221}
|
||||||
m_MaxSize: {x: 4002, y: 4021}
|
m_MaxSize: {x: 4002, y: 4021}
|
||||||
m_ActualView: {fileID: 2}
|
m_ActualView: {fileID: 2}
|
||||||
|
|
@ -1113,7 +1116,7 @@ MonoBehaviour:
|
||||||
- {fileID: 2}
|
- {fileID: 2}
|
||||||
m_Selected: 0
|
m_Selected: 0
|
||||||
m_LastSelected: 0
|
m_LastSelected: 0
|
||||||
--- !u!114 &18
|
--- !u!114 &17
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
|
@ -1134,12 +1137,12 @@ MonoBehaviour:
|
||||||
height: 1283
|
height: 1283
|
||||||
m_MinSize: {x: 276, y: 71}
|
m_MinSize: {x: 276, y: 71}
|
||||||
m_MaxSize: {x: 4001, y: 4021}
|
m_MaxSize: {x: 4001, y: 4021}
|
||||||
m_ActualView: {fileID: 19}
|
m_ActualView: {fileID: 18}
|
||||||
m_Panes:
|
m_Panes:
|
||||||
- {fileID: 19}
|
- {fileID: 18}
|
||||||
m_Selected: 0
|
m_Selected: 0
|
||||||
m_LastSelected: 0
|
m_LastSelected: 0
|
||||||
--- !u!114 &19
|
--- !u!114 &18
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
|
@ -1172,7 +1175,7 @@ MonoBehaviour:
|
||||||
m_ObjectsLockedBeforeSerialization: []
|
m_ObjectsLockedBeforeSerialization: []
|
||||||
m_InstanceIDsLockedBeforeSerialization:
|
m_InstanceIDsLockedBeforeSerialization:
|
||||||
m_PreviewResizer:
|
m_PreviewResizer:
|
||||||
m_CachedPref: -560
|
m_CachedPref: 518
|
||||||
m_ControlHash: -371814159
|
m_ControlHash: -371814159
|
||||||
m_PrefName: Preview_InspectorPreview
|
m_PrefName: Preview_InspectorPreview
|
||||||
m_LastInspectedObjectInstanceID: -1
|
m_LastInspectedObjectInstanceID: -1
|
||||||
|
|
|
||||||
|
|
@ -119,7 +119,7 @@ MonoBehaviour:
|
||||||
m_MinSize: {x: 400, y: 200}
|
m_MinSize: {x: 400, y: 200}
|
||||||
m_MaxSize: {x: 32384, y: 16192}
|
m_MaxSize: {x: 32384, y: 16192}
|
||||||
vertical: 0
|
vertical: 0
|
||||||
controlID: 195
|
controlID: 19
|
||||||
--- !u!114 &6
|
--- !u!114 &6
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
|
|
@ -144,7 +144,7 @@ MonoBehaviour:
|
||||||
m_MinSize: {x: 300, y: 200}
|
m_MinSize: {x: 300, y: 200}
|
||||||
m_MaxSize: {x: 24288, y: 16192}
|
m_MaxSize: {x: 24288, y: 16192}
|
||||||
vertical: 1
|
vertical: 1
|
||||||
controlID: 123
|
controlID: 113
|
||||||
--- !u!114 &7
|
--- !u!114 &7
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
|
|
@ -165,11 +165,11 @@ MonoBehaviour:
|
||||||
x: 0
|
x: 0
|
||||||
y: 0
|
y: 0
|
||||||
width: 2055
|
width: 2055
|
||||||
height: 534
|
height: 493
|
||||||
m_MinSize: {x: 200, y: 100}
|
m_MinSize: {x: 200, y: 100}
|
||||||
m_MaxSize: {x: 16192, y: 8096}
|
m_MaxSize: {x: 16192, y: 8096}
|
||||||
vertical: 0
|
vertical: 0
|
||||||
controlID: 124
|
controlID: 114
|
||||||
--- !u!114 &8
|
--- !u!114 &8
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
|
|
@ -188,7 +188,7 @@ MonoBehaviour:
|
||||||
x: 0
|
x: 0
|
||||||
y: 0
|
y: 0
|
||||||
width: 458
|
width: 458
|
||||||
height: 534
|
height: 493
|
||||||
m_MinSize: {x: 201, y: 221}
|
m_MinSize: {x: 201, y: 221}
|
||||||
m_MaxSize: {x: 4001, y: 4021}
|
m_MaxSize: {x: 4001, y: 4021}
|
||||||
m_ActualView: {fileID: 16}
|
m_ActualView: {fileID: 16}
|
||||||
|
|
@ -214,7 +214,7 @@ MonoBehaviour:
|
||||||
x: 458
|
x: 458
|
||||||
y: 0
|
y: 0
|
||||||
width: 1597
|
width: 1597
|
||||||
height: 534
|
height: 493
|
||||||
m_MinSize: {x: 202, y: 221}
|
m_MinSize: {x: 202, y: 221}
|
||||||
m_MaxSize: {x: 4002, y: 4021}
|
m_MaxSize: {x: 4002, y: 4021}
|
||||||
m_ActualView: {fileID: 20}
|
m_ActualView: {fileID: 20}
|
||||||
|
|
@ -224,7 +224,7 @@ MonoBehaviour:
|
||||||
- {fileID: 19}
|
- {fileID: 19}
|
||||||
- {fileID: 20}
|
- {fileID: 20}
|
||||||
m_Selected: 3
|
m_Selected: 3
|
||||||
m_LastSelected: 2
|
m_LastSelected: 1
|
||||||
--- !u!114 &10
|
--- !u!114 &10
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
|
|
@ -244,13 +244,13 @@ MonoBehaviour:
|
||||||
m_Position:
|
m_Position:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
y: 534
|
y: 493
|
||||||
width: 2055
|
width: 2055
|
||||||
height: 749
|
height: 790
|
||||||
m_MinSize: {x: 300, y: 100}
|
m_MinSize: {x: 300, y: 100}
|
||||||
m_MaxSize: {x: 24288, y: 8096}
|
m_MaxSize: {x: 24288, y: 8096}
|
||||||
vertical: 0
|
vertical: 0
|
||||||
controlID: 165
|
controlID: 65
|
||||||
--- !u!114 &11
|
--- !u!114 &11
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
|
|
@ -268,8 +268,8 @@ MonoBehaviour:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
y: 0
|
y: 0
|
||||||
width: 684
|
width: 686
|
||||||
height: 749
|
height: 790
|
||||||
m_MinSize: {x: 231, y: 271}
|
m_MinSize: {x: 231, y: 271}
|
||||||
m_MaxSize: {x: 10001, y: 10021}
|
m_MaxSize: {x: 10001, y: 10021}
|
||||||
m_ActualView: {fileID: 21}
|
m_ActualView: {fileID: 21}
|
||||||
|
|
@ -292,10 +292,10 @@ MonoBehaviour:
|
||||||
m_Children: []
|
m_Children: []
|
||||||
m_Position:
|
m_Position:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 684
|
x: 686
|
||||||
y: 0
|
y: 0
|
||||||
width: 804
|
width: 802
|
||||||
height: 749
|
height: 790
|
||||||
m_MinSize: {x: 102, y: 121}
|
m_MinSize: {x: 102, y: 121}
|
||||||
m_MaxSize: {x: 4002, y: 4021}
|
m_MaxSize: {x: 4002, y: 4021}
|
||||||
m_ActualView: {fileID: 22}
|
m_ActualView: {fileID: 22}
|
||||||
|
|
@ -321,7 +321,7 @@ MonoBehaviour:
|
||||||
x: 1488
|
x: 1488
|
||||||
y: 0
|
y: 0
|
||||||
width: 567
|
width: 567
|
||||||
height: 749
|
height: 790
|
||||||
m_MinSize: {x: 202, y: 221}
|
m_MinSize: {x: 202, y: 221}
|
||||||
m_MaxSize: {x: 4002, y: 4021}
|
m_MaxSize: {x: 4002, y: 4021}
|
||||||
m_ActualView: {fileID: 15}
|
m_ActualView: {fileID: 15}
|
||||||
|
|
@ -348,8 +348,8 @@ MonoBehaviour:
|
||||||
y: 0
|
y: 0
|
||||||
width: 445
|
width: 445
|
||||||
height: 1283
|
height: 1283
|
||||||
m_MinSize: {x: 275, y: 50}
|
m_MinSize: {x: 276, y: 71}
|
||||||
m_MaxSize: {x: 4000, y: 4000}
|
m_MaxSize: {x: 4001, y: 4021}
|
||||||
m_ActualView: {fileID: 23}
|
m_ActualView: {fileID: 23}
|
||||||
m_Panes:
|
m_Panes:
|
||||||
- {fileID: 23}
|
- {fileID: 23}
|
||||||
|
|
@ -377,9 +377,9 @@ MonoBehaviour:
|
||||||
m_Pos:
|
m_Pos:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 1500
|
x: 1500
|
||||||
y: 615
|
y: 574
|
||||||
width: 565
|
width: 565
|
||||||
height: 728
|
height: 769
|
||||||
m_ViewDataDictionary: {fileID: 0}
|
m_ViewDataDictionary: {fileID: 0}
|
||||||
m_OverlayCanvas:
|
m_OverlayCanvas:
|
||||||
m_LastAppliedPresetName: Default
|
m_LastAppliedPresetName: Default
|
||||||
|
|
@ -428,22 +428,22 @@ MonoBehaviour:
|
||||||
x: 0
|
x: 0
|
||||||
y: 21
|
y: 21
|
||||||
width: 565
|
width: 565
|
||||||
height: 707
|
height: 748
|
||||||
m_Scale: {x: 0.27922592, y: 0.27922592}
|
m_Scale: {x: 0.29541865, y: 0.29541865}
|
||||||
m_Translation: {x: 282.5, y: 353.5}
|
m_Translation: {x: 282.5, y: 374}
|
||||||
m_MarginLeft: 0
|
m_MarginLeft: 0
|
||||||
m_MarginRight: 0
|
m_MarginRight: 0
|
||||||
m_MarginTop: 0
|
m_MarginTop: 0
|
||||||
m_MarginBottom: 0
|
m_MarginBottom: 0
|
||||||
m_LastShownAreaInsideMargins:
|
m_LastShownAreaInsideMargins:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: -1011.7256
|
x: -956.27
|
||||||
y: -1266
|
y: -1266
|
||||||
width: 2023.4512
|
width: 1912.54
|
||||||
height: 2532
|
height: 2532
|
||||||
m_MinimalGUI: 1
|
m_MinimalGUI: 1
|
||||||
m_defaultScale: 0.27922592
|
m_defaultScale: 0.29541865
|
||||||
m_LastWindowPixelSize: {x: 565, y: 728}
|
m_LastWindowPixelSize: {x: 565, y: 769}
|
||||||
m_ClearInEditMode: 1
|
m_ClearInEditMode: 1
|
||||||
m_NoCameraWarning: 1
|
m_NoCameraWarning: 1
|
||||||
m_LowResolutionForAspectRatios: 01000001000000000000
|
m_LowResolutionForAspectRatios: 01000001000000000000
|
||||||
|
|
@ -473,7 +473,7 @@ MonoBehaviour:
|
||||||
x: 12
|
x: 12
|
||||||
y: 81
|
y: 81
|
||||||
width: 457
|
width: 457
|
||||||
height: 513
|
height: 472
|
||||||
m_ViewDataDictionary: {fileID: 0}
|
m_ViewDataDictionary: {fileID: 0}
|
||||||
m_OverlayCanvas:
|
m_OverlayCanvas:
|
||||||
m_LastAppliedPresetName: Default
|
m_LastAppliedPresetName: Default
|
||||||
|
|
@ -482,9 +482,9 @@ MonoBehaviour:
|
||||||
m_SceneHierarchy:
|
m_SceneHierarchy:
|
||||||
m_TreeViewState:
|
m_TreeViewState:
|
||||||
scrollPos: {x: 0, y: 0}
|
scrollPos: {x: 0, y: 0}
|
||||||
m_SelectedIDs: 2631ffff
|
m_SelectedIDs: 189d0000
|
||||||
m_LastClickedID: 0
|
m_LastClickedID: 40216
|
||||||
m_ExpandedIDs: 3831ffff8c31ffff9c31ffffac31ffff2a32ffff3432ffff3e32ffff6832ffff1053ffff1a53ffff2453ffff4e53ffff2cfbffffe254000036550000
|
m_ExpandedIDs: 5aaafcff66aafcffb09c0000c09c0000da9c0000e49c0000f49c0000fc9c0000109d00002a9d0000349d0000389d0000489d0000509d0000
|
||||||
m_RenameOverlay:
|
m_RenameOverlay:
|
||||||
m_UserAcceptedRename: 0
|
m_UserAcceptedRename: 0
|
||||||
m_Name:
|
m_Name:
|
||||||
|
|
@ -529,10 +529,10 @@ MonoBehaviour:
|
||||||
m_Tooltip:
|
m_Tooltip:
|
||||||
m_Pos:
|
m_Pos:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 462
|
x: 470
|
||||||
y: 81
|
y: 81
|
||||||
width: 1401
|
width: 1595
|
||||||
height: 484
|
height: 513
|
||||||
m_ViewDataDictionary: {fileID: 0}
|
m_ViewDataDictionary: {fileID: 0}
|
||||||
m_OverlayCanvas:
|
m_OverlayCanvas:
|
||||||
m_LastAppliedPresetName: Default
|
m_LastAppliedPresetName: Default
|
||||||
|
|
@ -562,7 +562,7 @@ MonoBehaviour:
|
||||||
x: 470
|
x: 470
|
||||||
y: 81
|
y: 81
|
||||||
width: 1595
|
width: 1595
|
||||||
height: 473
|
height: 513
|
||||||
m_ViewDataDictionary: {fileID: 0}
|
m_ViewDataDictionary: {fileID: 0}
|
||||||
m_OverlayCanvas:
|
m_OverlayCanvas:
|
||||||
m_LastAppliedPresetName: Default
|
m_LastAppliedPresetName: Default
|
||||||
|
|
@ -574,6 +574,8 @@ MonoBehaviour:
|
||||||
- {fileID: 6493954791980047924, guid: 3d06c6180fdee4b4f934170a2ae76e29, type: 2}
|
- {fileID: 6493954791980047924, guid: 3d06c6180fdee4b4f934170a2ae76e29, type: 2}
|
||||||
- {fileID: 1236729993981667375, guid: a77bfa5dcfc291748b7fb88e0754ca87, type: 2}
|
- {fileID: 1236729993981667375, guid: a77bfa5dcfc291748b7fb88e0754ca87, type: 2}
|
||||||
- {fileID: -8850320641527390869, guid: db5d169666ca05c41b863adbbe697fcc, type: 2}
|
- {fileID: -8850320641527390869, guid: db5d169666ca05c41b863adbbe697fcc, type: 2}
|
||||||
|
- {fileID: 8017737070514627443, guid: 981a69e23d26fde428f70211d6babd0e, type: 2}
|
||||||
|
- {fileID: -3236372629044136465, guid: a77c42034a9b1c34d914815329be7871, type: 2}
|
||||||
m_ValueSerializationHelper:
|
m_ValueSerializationHelper:
|
||||||
- e00: 0.9360825
|
- e00: 0.9360825
|
||||||
e01: 0
|
e01: 0
|
||||||
|
|
@ -639,11 +641,43 @@ MonoBehaviour:
|
||||||
e31: 0
|
e31: 0
|
||||||
e32: 0
|
e32: 0
|
||||||
e33: 1
|
e33: 1
|
||||||
|
- e00: 1
|
||||||
|
e01: 0
|
||||||
|
e02: 0
|
||||||
|
e03: 0
|
||||||
|
e10: 0
|
||||||
|
e11: 1
|
||||||
|
e12: 0
|
||||||
|
e13: 0
|
||||||
|
e20: 0
|
||||||
|
e21: 0
|
||||||
|
e22: 1
|
||||||
|
e23: 0
|
||||||
|
e30: 0
|
||||||
|
e31: 0
|
||||||
|
e32: 0
|
||||||
|
e33: 1
|
||||||
|
- e00: 1
|
||||||
|
e01: 0
|
||||||
|
e02: 0
|
||||||
|
e03: 0
|
||||||
|
e10: 0
|
||||||
|
e11: 1
|
||||||
|
e12: 0
|
||||||
|
e13: 0
|
||||||
|
e20: 0
|
||||||
|
e21: 0
|
||||||
|
e22: 1
|
||||||
|
e23: 0
|
||||||
|
e30: 0
|
||||||
|
e31: 0
|
||||||
|
e32: 0
|
||||||
|
e33: 1
|
||||||
m_PreviewAnimator: {fileID: 0}
|
m_PreviewAnimator: {fileID: 0}
|
||||||
m_AnimatorController: {fileID: 9100000, guid: db5d169666ca05c41b863adbbe697fcc,
|
m_AnimatorController: {fileID: 9100000, guid: a77c42034a9b1c34d914815329be7871,
|
||||||
type: 2}
|
type: 2}
|
||||||
m_BreadCrumbs:
|
m_BreadCrumbs:
|
||||||
- m_Target: {fileID: -8850320641527390869, guid: db5d169666ca05c41b863adbbe697fcc,
|
- m_Target: {fileID: -3236372629044136465, guid: a77c42034a9b1c34d914815329be7871,
|
||||||
type: 2}
|
type: 2}
|
||||||
m_ScrollPosition: {x: 0, y: 0}
|
m_ScrollPosition: {x: 0, y: 0}
|
||||||
stateMachineGraph: {fileID: 0}
|
stateMachineGraph: {fileID: 0}
|
||||||
|
|
@ -681,7 +715,7 @@ MonoBehaviour:
|
||||||
x: 470
|
x: 470
|
||||||
y: 81
|
y: 81
|
||||||
width: 1595
|
width: 1595
|
||||||
height: 473
|
height: 513
|
||||||
m_ViewDataDictionary: {fileID: 0}
|
m_ViewDataDictionary: {fileID: 0}
|
||||||
m_OverlayCanvas:
|
m_OverlayCanvas:
|
||||||
m_LastAppliedPresetName: Default
|
m_LastAppliedPresetName: Default
|
||||||
|
|
@ -689,7 +723,7 @@ MonoBehaviour:
|
||||||
m_OverlaysVisible: 1
|
m_OverlaysVisible: 1
|
||||||
m_LockTracker:
|
m_LockTracker:
|
||||||
m_IsLocked: 0
|
m_IsLocked: 0
|
||||||
m_LastSelectedObjectID: 133458
|
m_LastSelectedObjectID: 21946
|
||||||
--- !u!114 &20
|
--- !u!114 &20
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
|
|
@ -714,7 +748,7 @@ MonoBehaviour:
|
||||||
x: 470
|
x: 470
|
||||||
y: 81
|
y: 81
|
||||||
width: 1595
|
width: 1595
|
||||||
height: 513
|
height: 472
|
||||||
m_ViewDataDictionary: {fileID: 0}
|
m_ViewDataDictionary: {fileID: 0}
|
||||||
m_OverlayCanvas:
|
m_OverlayCanvas:
|
||||||
m_LastAppliedPresetName: Default
|
m_LastAppliedPresetName: Default
|
||||||
|
|
@ -725,7 +759,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 1
|
displayed: 1
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: -101, y: -26}
|
snapOffsetDelta: {x: -101, y: -1}
|
||||||
snapCorner: 3
|
snapCorner: 3
|
||||||
id: Tool Settings
|
id: Tool Settings
|
||||||
index: 0
|
index: 0
|
||||||
|
|
@ -758,7 +792,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 0}
|
snapOffsetDelta: {x: 0, y: 25}
|
||||||
snapCorner: 1
|
snapCorner: 1
|
||||||
id: unity-search-toolbar
|
id: unity-search-toolbar
|
||||||
index: 1
|
index: 1
|
||||||
|
|
@ -769,7 +803,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 1
|
displayed: 1
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 0}
|
snapOffsetDelta: {x: 0, y: 25}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: unity-transform-toolbar
|
id: unity-transform-toolbar
|
||||||
index: 0
|
index: 0
|
||||||
|
|
@ -802,7 +836,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 0}
|
snapOffsetDelta: {x: 0, y: 25}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: Scene View/Light Settings
|
id: Scene View/Light Settings
|
||||||
index: 0
|
index: 0
|
||||||
|
|
@ -813,7 +847,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 0}
|
snapOffsetDelta: {x: 0, y: 25}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: Scene View/Camera
|
id: Scene View/Camera
|
||||||
index: 1
|
index: 1
|
||||||
|
|
@ -824,7 +858,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 0}
|
snapOffsetDelta: {x: 0, y: 25}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: Scene View/Cloth Constraints
|
id: Scene View/Cloth Constraints
|
||||||
index: 2
|
index: 2
|
||||||
|
|
@ -835,7 +869,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 0}
|
snapOffsetDelta: {x: 0, y: 25}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: Scene View/Cloth Collisions
|
id: Scene View/Cloth Collisions
|
||||||
index: 3
|
index: 3
|
||||||
|
|
@ -846,7 +880,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 0}
|
snapOffsetDelta: {x: 0, y: 25}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: Scene View/Navmesh Display
|
id: Scene View/Navmesh Display
|
||||||
index: 5
|
index: 5
|
||||||
|
|
@ -857,7 +891,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 0}
|
snapOffsetDelta: {x: 0, y: 25}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: Scene View/Agent Display
|
id: Scene View/Agent Display
|
||||||
index: 7
|
index: 7
|
||||||
|
|
@ -868,7 +902,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 0}
|
snapOffsetDelta: {x: 0, y: 25}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: Scene View/Obstacle Display
|
id: Scene View/Obstacle Display
|
||||||
index: 9
|
index: 9
|
||||||
|
|
@ -879,7 +913,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 0}
|
snapOffsetDelta: {x: 0, y: 25}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: Scene View/Occlusion Culling
|
id: Scene View/Occlusion Culling
|
||||||
index: 4
|
index: 4
|
||||||
|
|
@ -890,7 +924,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 0}
|
snapOffsetDelta: {x: 0, y: 25}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: Scene View/Physics Debugger
|
id: Scene View/Physics Debugger
|
||||||
index: 6
|
index: 6
|
||||||
|
|
@ -901,7 +935,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 0}
|
snapOffsetDelta: {x: 0, y: 25}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: Scene View/Scene Visibility
|
id: Scene View/Scene Visibility
|
||||||
index: 8
|
index: 8
|
||||||
|
|
@ -912,7 +946,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 0}
|
snapOffsetDelta: {x: 0, y: 25}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: Scene View/Particles
|
id: Scene View/Particles
|
||||||
index: 10
|
index: 10
|
||||||
|
|
@ -956,7 +990,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 0}
|
snapOffsetDelta: {x: 0, y: 25}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: Scene View/Open Tile Palette
|
id: Scene View/Open Tile Palette
|
||||||
index: 2
|
index: 2
|
||||||
|
|
@ -967,7 +1001,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 0}
|
snapOffsetDelta: {x: 0, y: 25}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: Scene View/Tilemap Focus
|
id: Scene View/Tilemap Focus
|
||||||
index: 3
|
index: 3
|
||||||
|
|
@ -975,17 +1009,17 @@ MonoBehaviour:
|
||||||
m_OverlaysVisible: 1
|
m_OverlaysVisible: 1
|
||||||
m_WindowGUID: e07c16a66c31ae440bdbc5a34c43feb6
|
m_WindowGUID: e07c16a66c31ae440bdbc5a34c43feb6
|
||||||
m_Gizmos: 1
|
m_Gizmos: 1
|
||||||
m_OverrideSceneCullingMask: 6917529027641081856
|
m_OverrideSceneCullingMask: 0
|
||||||
m_SceneIsLit: 1
|
m_SceneIsLit: 0
|
||||||
m_SceneLighting: 1
|
m_SceneLighting: 1
|
||||||
m_2DMode: 1
|
m_2DMode: 1
|
||||||
m_isRotationLocked: 0
|
m_isRotationLocked: 0
|
||||||
m_PlayAudio: 0
|
m_PlayAudio: 0
|
||||||
m_AudioPlay: 0
|
m_AudioPlay: 0
|
||||||
m_Position:
|
m_Position:
|
||||||
m_Target: {x: 1314.0447, y: 1667.7003, z: -2.5761037}
|
m_Target: {x: 405.76392, y: 1817.716, z: 11.247792}
|
||||||
speed: 2
|
speed: 2
|
||||||
m_Value: {x: 1314.0447, y: 1667.7003, z: -2.5761037}
|
m_Value: {x: 405.76392, y: 1817.716, z: 11.247792}
|
||||||
m_RenderMode: 0
|
m_RenderMode: 0
|
||||||
m_CameraMode:
|
m_CameraMode:
|
||||||
drawMode: 0
|
drawMode: 0
|
||||||
|
|
@ -997,7 +1031,7 @@ MonoBehaviour:
|
||||||
m_SceneViewState:
|
m_SceneViewState:
|
||||||
m_AlwaysRefresh: 0
|
m_AlwaysRefresh: 0
|
||||||
showFog: 1
|
showFog: 1
|
||||||
showSkybox: 1
|
showSkybox: 0
|
||||||
showFlares: 1
|
showFlares: 1
|
||||||
showImageEffects: 1
|
showImageEffects: 1
|
||||||
showParticleSystems: 1
|
showParticleSystems: 1
|
||||||
|
|
@ -1036,9 +1070,9 @@ MonoBehaviour:
|
||||||
speed: 2
|
speed: 2
|
||||||
m_Value: {x: 0, y: 0, z: 0, w: 1}
|
m_Value: {x: 0, y: 0, z: 0, w: 1}
|
||||||
m_Size:
|
m_Size:
|
||||||
m_Target: 1653.084
|
m_Target: 269.8482
|
||||||
speed: 2
|
speed: 2
|
||||||
m_Value: 1653.084
|
m_Value: 269.8482
|
||||||
m_Ortho:
|
m_Ortho:
|
||||||
m_Target: 1
|
m_Target: 1
|
||||||
speed: 2
|
speed: 2
|
||||||
|
|
@ -1085,9 +1119,9 @@ MonoBehaviour:
|
||||||
m_Pos:
|
m_Pos:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 12
|
x: 12
|
||||||
y: 615
|
y: 574
|
||||||
width: 683
|
width: 685
|
||||||
height: 728
|
height: 769
|
||||||
m_ViewDataDictionary: {fileID: 0}
|
m_ViewDataDictionary: {fileID: 0}
|
||||||
m_OverlayCanvas:
|
m_OverlayCanvas:
|
||||||
m_LastAppliedPresetName: Default
|
m_LastAppliedPresetName: Default
|
||||||
|
|
@ -1104,23 +1138,23 @@ MonoBehaviour:
|
||||||
m_SkipHidden: 1
|
m_SkipHidden: 1
|
||||||
m_SearchArea: 1
|
m_SearchArea: 1
|
||||||
m_Folders:
|
m_Folders:
|
||||||
- Assets/ART/base/prefab
|
- Assets/Scripts/Core
|
||||||
m_Globs: []
|
m_Globs: []
|
||||||
m_OriginalText:
|
m_OriginalText:
|
||||||
m_FilterByTypeIntersection: 0
|
m_FilterByTypeIntersection: 0
|
||||||
m_ViewMode: 1
|
m_ViewMode: 1
|
||||||
m_StartGridSize: 16
|
m_StartGridSize: 16
|
||||||
m_LastFolders:
|
m_LastFolders:
|
||||||
- Assets/ART/base/prefab
|
- Assets/Scripts/Core
|
||||||
m_LastFoldersGridSize: 16
|
m_LastFoldersGridSize: 16
|
||||||
m_LastProjectPath: D:\UnityProject\dezhouNew\dezhou_client\wb_unity_pro
|
m_LastProjectPath: D:\UnityProject\dezhou\dezhou_client\wb_unity_pro
|
||||||
m_LockTracker:
|
m_LockTracker:
|
||||||
m_IsLocked: 0
|
m_IsLocked: 0
|
||||||
m_FolderTreeState:
|
m_FolderTreeState:
|
||||||
scrollPos: {x: 0, y: 192}
|
scrollPos: {x: 0, y: 19}
|
||||||
m_SelectedIDs: 0a560000
|
m_SelectedIDs: 7c800000
|
||||||
m_LastClickedID: 22026
|
m_LastClickedID: 32892
|
||||||
m_ExpandedIDs: 00000000d4550000d6550000d8550000da550000dc550000de550000e0550000e2550000e4550000e6550000e8550000ea55000000ca9a3bffffff7f
|
m_ExpandedIDs: 00000000c0550000e2550000f45500000274000006740000107400005288000000ca9a3bffffff7f
|
||||||
m_RenameOverlay:
|
m_RenameOverlay:
|
||||||
m_UserAcceptedRename: 0
|
m_UserAcceptedRename: 0
|
||||||
m_Name:
|
m_Name:
|
||||||
|
|
@ -1148,7 +1182,7 @@ MonoBehaviour:
|
||||||
scrollPos: {x: 0, y: 0}
|
scrollPos: {x: 0, y: 0}
|
||||||
m_SelectedIDs:
|
m_SelectedIDs:
|
||||||
m_LastClickedID: 0
|
m_LastClickedID: 0
|
||||||
m_ExpandedIDs: 00000000d4550000d6550000d8550000da550000dc550000de550000e0550000e2550000e4550000e6550000e8550000ea550000
|
m_ExpandedIDs: 00000000c0550000
|
||||||
m_RenameOverlay:
|
m_RenameOverlay:
|
||||||
m_UserAcceptedRename: 0
|
m_UserAcceptedRename: 0
|
||||||
m_Name:
|
m_Name:
|
||||||
|
|
@ -1179,18 +1213,18 @@ MonoBehaviour:
|
||||||
m_ExpandedInstanceIDs: c6230000d8c2000054c40000ba0c0100c49200006293000066660000167d0000ea85000038610000f85f0000dc5e00000a60000006600000ea5f000012600000ec5f0000987900005438030014600000106000009c6e040054640000165900001c590000a2c804005c730000725e0000645e000068a907007e5d00008a5e0000449c0e00a2970000665d0000765d0000785e0000fa920000f692000002930000f4920000f2980000c05d0000e8730000c4730000f2730000ecdc0400e2730000d6730000da730000e47300003a0d0400e25e0000de5e0000d25d0000e25d0000f25e0000ea5e0000cc5e0000fa5e0000dc5d00002e600000e85e0000de5d0000ca5f0000d25f0000005f0000ce590b00fe5e0000ec690000f4690000ee6900004e670000125f00004edfecff26b7ffffa89d00007a9d0000000000004ebc00001e560000b0010000ca570000f85700008c8a0000
|
m_ExpandedInstanceIDs: c6230000d8c2000054c40000ba0c0100c49200006293000066660000167d0000ea85000038610000f85f0000dc5e00000a60000006600000ea5f000012600000ec5f0000987900005438030014600000106000009c6e040054640000165900001c590000a2c804005c730000725e0000645e000068a907007e5d00008a5e0000449c0e00a2970000665d0000765d0000785e0000fa920000f692000002930000f4920000f2980000c05d0000e8730000c4730000f2730000ecdc0400e2730000d6730000da730000e47300003a0d0400e25e0000de5e0000d25d0000e25d0000f25e0000ea5e0000cc5e0000fa5e0000dc5d00002e600000e85e0000de5d0000ca5f0000d25f0000005f0000ce590b00fe5e0000ec690000f4690000ee6900004e670000125f00004edfecff26b7ffffa89d00007a9d0000000000004ebc00001e560000b0010000ca570000f85700008c8a0000
|
||||||
m_RenameOverlay:
|
m_RenameOverlay:
|
||||||
m_UserAcceptedRename: 0
|
m_UserAcceptedRename: 0
|
||||||
m_Name:
|
m_Name: imageShow
|
||||||
m_OriginalName:
|
m_OriginalName: imageShow
|
||||||
m_EditFieldRect:
|
m_EditFieldRect:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
y: 0
|
y: 0
|
||||||
width: 0
|
width: 0
|
||||||
height: 0
|
height: 0
|
||||||
m_UserData: 0
|
m_UserData: -167552
|
||||||
m_IsWaitingForDelay: 0
|
m_IsWaitingForDelay: 0
|
||||||
m_IsRenaming: 0
|
m_IsRenaming: 0
|
||||||
m_OriginalEventType: 11
|
m_OriginalEventType: 0
|
||||||
m_IsRenamingFilename: 1
|
m_IsRenamingFilename: 1
|
||||||
m_ClientGUIView: {fileID: 11}
|
m_ClientGUIView: {fileID: 11}
|
||||||
m_CreateAssetUtility:
|
m_CreateAssetUtility:
|
||||||
|
|
@ -1225,10 +1259,10 @@ MonoBehaviour:
|
||||||
m_Tooltip:
|
m_Tooltip:
|
||||||
m_Pos:
|
m_Pos:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 696
|
x: 698
|
||||||
y: 615
|
y: 574
|
||||||
width: 802
|
width: 800
|
||||||
height: 728
|
height: 769
|
||||||
m_ViewDataDictionary: {fileID: 0}
|
m_ViewDataDictionary: {fileID: 0}
|
||||||
m_OverlayCanvas:
|
m_OverlayCanvas:
|
||||||
m_LastAppliedPresetName: Default
|
m_LastAppliedPresetName: Default
|
||||||
|
|
|
||||||