master
parent
0865e1f0f3
commit
0ea4eb41c0
|
|
@ -7,12 +7,10 @@ function FilterView.new()
|
||||||
local self = setmetatable({}, { __index = M })
|
local self = setmetatable({}, { __index = M })
|
||||||
self.class = "FilterView"
|
self.class = "FilterView"
|
||||||
self._full = true
|
self._full = true
|
||||||
self:init()
|
|
||||||
return self
|
return self
|
||||||
end
|
end
|
||||||
|
|
||||||
function M:Init()
|
function M:init()
|
||||||
self:InitView("base/prefab/ViewFilter.prefab", "base/prefab/ViewFilter")
|
|
||||||
local view = self._view
|
local view = self._view
|
||||||
|
|
||||||
local bg = view.transform:GetComponent(typeof(UnityEngine.UI.Image))
|
local bg = view.transform:GetComponent(typeof(UnityEngine.UI.Image))
|
||||||
|
|
@ -26,17 +24,6 @@ function M:Init()
|
||||||
ViewManager.ChangeView(ViewManager.View_MainNew)
|
ViewManager.ChangeView(ViewManager.View_MainNew)
|
||||||
end)
|
end)
|
||||||
|
|
||||||
self.filter = view.transform:Find("imagefilter")
|
|
||||||
self.filter.position = self.imagePoint.position
|
|
||||||
self.filter.gameObject:SetActive(false)
|
|
||||||
self.filter_itemCopy = self.filter:Find("scroll/Viewport/Content/item")
|
|
||||||
self.filter_itemCopy.gameObject:SetActive(false)
|
|
||||||
for index, value in ipairs(self.gamePlayData) do
|
|
||||||
local goFilterTemp = self.filter_itemCopy.gameObject
|
|
||||||
goFilterTemp = UnityEngine.GameObject.Instantiate(goFilterTemp, self.filter_itemCopy.parent, false)
|
|
||||||
goFilterTemp:SetActive(true)
|
|
||||||
end
|
|
||||||
|
|
||||||
self.titleCopy = view.transform:Find("scroll/Viewport/Content/imageTitle")
|
self.titleCopy = view.transform:Find("scroll/Viewport/Content/imageTitle")
|
||||||
self.itemCopy = view.transform:Find("scroll/Viewport/Content/item")
|
self.itemCopy = view.transform:Find("scroll/Viewport/Content/item")
|
||||||
self.titleCopy.gameObject:SetActive(false)
|
self.titleCopy.gameObject:SetActive(false)
|
||||||
|
|
@ -55,10 +42,25 @@ function M:SetList(v)
|
||||||
local tempCount = #self.list + 1
|
local tempCount = #self.list + 1
|
||||||
self.list[tempCount] = {}
|
self.list[tempCount] = {}
|
||||||
local title = UnityEngine.GameObject.Instantiate(self.titleCopy, self.titleCopy.parent, false)
|
local title = UnityEngine.GameObject.Instantiate(self.titleCopy, self.titleCopy.parent, false)
|
||||||
|
local itemTs = UnityEngine.GameObject.Instantiate(self.itemCopy, self.itemCopy.transform.parent,
|
||||||
|
false)
|
||||||
|
local itemRank = UnityEngine.GameObject.Instantiate(self.itemCopy, self.itemCopy.transform.parent,
|
||||||
|
false)
|
||||||
|
self.list[tempCount].goTs = itemTs
|
||||||
|
self.list[tempCount].goRank = itemRank
|
||||||
self.list[tempCount].goTitle = title
|
self.list[tempCount].goTitle = title
|
||||||
title = title.transform:Find("textTitle")
|
title = title.transform:Find("textTitle")
|
||||||
self.list[tempCount].textTitle = title:GetComponent(typeof(UnityEngine.UI.Text))
|
self.list[tempCount].textTitle = title:GetComponent(typeof(UnityEngine.UI.Text))
|
||||||
self.list[tempCount].listItem = {}
|
self.list[tempCount].TS = {}
|
||||||
|
local subTitle = itemTs.transform:Find("textPersionNum")
|
||||||
|
subTitle = subTitle:GetComponent(typeof(UnityEngine.UI.Text))
|
||||||
|
self.list[tempCount].TS.textTitle = subTitle
|
||||||
|
self.list[tempCount].TS.list = {}
|
||||||
|
self.list[tempCount].Rank = {}
|
||||||
|
subTitle = itemRank.transform:Find("textPersionNum")
|
||||||
|
subTitle = subTitle:GetComponent(typeof(UnityEngine.UI.Text))
|
||||||
|
self.list[tempCount].Rank.textTitle = subTitle
|
||||||
|
self.list[tempCount].Rank.list = {}
|
||||||
end
|
end
|
||||||
self:ShowData(self.list[index], value)
|
self:ShowData(self.list[index], value)
|
||||||
self.list[index].goTitle:SetActive(true)
|
self.list[index].goTitle:SetActive(true)
|
||||||
|
|
@ -69,11 +71,61 @@ end
|
||||||
function M:ShowData(val, v)
|
function M:ShowData(val, v)
|
||||||
local data = FilterData[v]
|
local data = FilterData[v]
|
||||||
val.textTitle.text = data.name
|
val.textTitle.text = data.name
|
||||||
for index,value in ipairs(val.listItem) do
|
local listTs = val.TS.list
|
||||||
|
for index, value in ipairs(listTs) do
|
||||||
value.goItem:SetActive(false)
|
value.goItem:SetActive(false)
|
||||||
-- value.
|
|
||||||
end
|
end
|
||||||
val.goItem = UnityEngine.GameObject.Instantiate(self.titleItemCopy, self.titleItemCopy.transform.parent, false)
|
for index, value in ipairs(data.ts.data) do
|
||||||
|
if index > #listTs then
|
||||||
|
local tempItem = val.goTs.transform:Find("grid/btnItem")
|
||||||
|
tempItem.gameObject:SetActive(false)
|
||||||
|
local tempTs = {}
|
||||||
|
tempTs.goItem = UnityEngine.GameObject.Instantiate(tempItem, tempItem.parent, false)
|
||||||
|
tempTs.goItem.gameObject:SetActive(true)
|
||||||
|
tempTs.textName = tempTs.goItem.transform:Find("textName")
|
||||||
|
tempTs.textName = tempTs.textName:GetComponent(typeof(UnityEngine.UI.Text))
|
||||||
|
tempTs.imageShow = tempTs.goItem.transform:Find("imageShow")
|
||||||
|
local btnItem = tempTs.goItem:GetComponent(typeof(UnityEngine.UI.Button))
|
||||||
|
LuaUIHelper:AddButtonClick(btnItem, function(val)
|
||||||
|
self:OnClickItemTS(val)
|
||||||
|
end, index)
|
||||||
|
listTs[#listTs + 1] = tempTs
|
||||||
|
end
|
||||||
|
-- listTs[#listTs].textName.text = value
|
||||||
|
-- listTs[#listTs].goItem:SetActive(true)
|
||||||
|
end
|
||||||
|
|
||||||
|
local listRank = val.Rank.list
|
||||||
|
for index, value in ipairs(listRank) do
|
||||||
|
value.goItem:SetActive(false)
|
||||||
|
end
|
||||||
|
for index, value in ipairs(listRank) do
|
||||||
|
if index > #listRank then
|
||||||
|
local tempItem = val.goTs.transform:Find("grid/btnItem")
|
||||||
|
tempItem.gameObject:SetActive(false)
|
||||||
|
local tempTs = {}
|
||||||
|
tempTs.goItem = UnityEngine.GameObject.Instantiate(tempItem, tempItem.parent, false)
|
||||||
|
tempTs.goItem:SetActive(true)
|
||||||
|
tempTs.textName = tempTs.goItem.transform:Find("textName")
|
||||||
|
tempTs.textName = tempTs:GetComponent(typeof(UnityEngine.UI.Text))
|
||||||
|
tempTs.imageShow = tempTs.goItem.transform:Find("imageShow")
|
||||||
|
local btnItem = tempTs.goItem:GetComponent(typeof(UnityEngine.UI.Button))
|
||||||
|
LuaUIHelper:AddButtonClick(btnItem, function(val)
|
||||||
|
self:OnClickItemRank(val)
|
||||||
|
end, index)
|
||||||
|
listRank[#listRank + 1] = tempTs
|
||||||
|
end
|
||||||
|
-- listRank[#listRank].textName.text = value
|
||||||
|
-- listRank[#listRank].goItem:SetActive(true)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
function M:OnClickItemTS(val)
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
|
function M:OnClickItemRank(val)
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,13 @@ function M:init(view)
|
||||||
local btnNews = view:Find("btnNews")
|
local btnNews = view:Find("btnNews")
|
||||||
self.btn__activepoint = btnNews:Find("imagePoint")
|
self.btn__activepoint = btnNews:Find("imagePoint")
|
||||||
btnNews = btnNews:GetComponent(typeof(UnityEngine.UI.Button))
|
btnNews = btnNews:GetComponent(typeof(UnityEngine.UI.Button))
|
||||||
LuaUIHelper.AddButtonClick(btnNews, function()
|
LuaUIHelper:AddButtonClick(btnNews, function()
|
||||||
|
|
||||||
|
end)
|
||||||
|
local btnFilter = view:Find("btnFilter")
|
||||||
|
self.btnFilter_activepoint = btnFilter:Find("imagePoint")
|
||||||
|
btnFilter = btnFilter:GetComponent(typeof(UnityEngine.UI.Button))
|
||||||
|
LuaUIHelper:AddButtonClick(btnFilter, function()
|
||||||
local viewTemp = UIManager.ShowUI(UIManager.ViewFilter)
|
local viewTemp = UIManager.ShowUI(UIManager.ViewFilter)
|
||||||
viewTemp:SetList(self.aar_title[self.enumTitle.Home].page)
|
viewTemp:SetList(self.aar_title[self.enumTitle.Home].page)
|
||||||
end)
|
end)
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,7 @@ function LobbyView.new()
|
||||||
return self
|
return self
|
||||||
end
|
end
|
||||||
|
|
||||||
function M:init(url)
|
function M:init()
|
||||||
local view = self._view
|
local view = self._view
|
||||||
|
|
||||||
local bg = view.transform:GetComponent(typeof(UnityEngine.UI.Image))
|
local bg = view.transform:GetComponent(typeof(UnityEngine.UI.Image))
|
||||||
|
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -3,23 +3,23 @@
|
||||||
"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\\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\\hotupdate.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
"AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\hotupdate.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||||
"RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\hotupdate.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
"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\\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}"
|
"RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\source\\generate\\hotupdatewrap.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|d:\\unityproject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\core\\luauihelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
"AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|d:\\unityproject\\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\\scripts\\core\\pageslidermanager.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
"AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\core\\pageslidermanager.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||||
"RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\core\\pageslidermanager.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
"RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\core\\pageslidermanager.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -54,11 +54,11 @@
|
||||||
"DocumentGroups": [
|
"DocumentGroups": [
|
||||||
{
|
{
|
||||||
"DockedWidth": 222,
|
"DockedWidth": 222,
|
||||||
"SelectedChildIndex": 0,
|
"SelectedChildIndex": 3,
|
||||||
"Children": [
|
"Children": [
|
||||||
{
|
{
|
||||||
"$type": "Document",
|
"$type": "Document",
|
||||||
"DocumentIndex": 0,
|
"DocumentIndex": 2,
|
||||||
"Title": "HotupdateWrap.cs",
|
"Title": "HotupdateWrap.cs",
|
||||||
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Source\\Generate\\HotupdateWrap.cs",
|
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Source\\Generate\\HotupdateWrap.cs",
|
||||||
"RelativeDocumentMoniker": "Assets\\Source\\Generate\\HotupdateWrap.cs",
|
"RelativeDocumentMoniker": "Assets\\Source\\Generate\\HotupdateWrap.cs",
|
||||||
|
|
@ -77,7 +77,7 @@
|
||||||
"RelativeDocumentMoniker": "Assets\\Scripts\\HotUpdate.cs",
|
"RelativeDocumentMoniker": "Assets\\Scripts\\HotUpdate.cs",
|
||||||
"ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\HotUpdate.cs",
|
"ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\HotUpdate.cs",
|
||||||
"RelativeToolTip": "Assets\\Scripts\\HotUpdate.cs",
|
"RelativeToolTip": "Assets\\Scripts\\HotUpdate.cs",
|
||||||
"ViewState": "AgIAAJIAAAAAAAAAAAAAAKYAAAAmAAAAAAAAAA==",
|
"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": ""
|
"EditorCaption": ""
|
||||||
|
|
@ -96,13 +96,13 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"$type": "Document",
|
"$type": "Document",
|
||||||
"DocumentIndex": 2,
|
"DocumentIndex": 0,
|
||||||
"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",
|
||||||
"ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\VerCheck.cs",
|
"ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\VerCheck.cs",
|
||||||
"RelativeToolTip": "Assets\\Scripts\\VerCheck.cs",
|
"RelativeToolTip": "Assets\\Scripts\\VerCheck.cs",
|
||||||
"ViewState": "AgIAACgBAAAAAAAAAAAAwDkBAAAAAAAAAAAAAA==",
|
"ViewState": "AgIAALQBAAAAAAAAAAAIwM8BAAAtAAAAAAAAAA==",
|
||||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||||
"WhenOpened": "2025-12-11T08:27:32.177Z",
|
"WhenOpened": "2025-12-11T08:27:32.177Z",
|
||||||
"EditorCaption": ""
|
"EditorCaption": ""
|
||||||
|
|
@ -129,8 +129,7 @@
|
||||||
"RelativeToolTip": "Assets\\Scripts\\Core\\PageSliderManager.cs",
|
"RelativeToolTip": "Assets\\Scripts\\Core\\PageSliderManager.cs",
|
||||||
"ViewState": "AgIAANIDAAAAAAAAAABIwAUEAAABAAAAAAAAAA==",
|
"ViewState": "AgIAANIDAAAAAAAAAABIwAUEAAABAAAAAAAAAA==",
|
||||||
"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",
|
||||||
|
|
@ -182,7 +181,7 @@
|
||||||
"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": "AgIAAHMBAAAAAAAAAAAAAIwBAAAAAAAAAAAAAA==",
|
"ViewState": "AgIAAAAAAAAAAAAAAAAAAIwBAAAAAAAAAAAAAA==",
|
||||||
"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": ""
|
||||||
|
|
|
||||||
|
|
@ -1,49 +1,49 @@
|
||||||
{
|
{
|
||||||
"Version": 1,
|
"Version": 1,
|
||||||
"WorkspaceRootPath": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\",
|
"WorkspaceRootPath": "D:\\UnityProject\\dezhouNew\\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\\vercheck.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
"AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|d:\\unityproject\\dezhounew\\dezhou_client\\wb_unity_pro\\assets\\scripts\\vercheck.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||||
"RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\vercheck.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
"RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\vercheck.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\hotupdate.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
"AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\assets\\scripts\\hotupdate.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||||
"RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\hotupdate.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
"RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\hotupdate.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|d:\\unityproject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\source\\generate\\hotupdatewrap.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
"AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\assets\\source\\generate\\hotupdatewrap.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||||
"RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\source\\generate\\hotupdatewrap.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
"RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\source\\generate\\hotupdatewrap.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|d:\\unityproject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\core\\luauihelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
"AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|d:\\unityproject\\dezhounew\\dezhou_client\\wb_unity_pro\\assets\\scripts\\core\\luauihelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||||
"RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\core\\luauihelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
"RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\core\\luauihelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\core\\pageslidermanager.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
"AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\assets\\scripts\\core\\pageslidermanager.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||||
"RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\core\\pageslidermanager.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
"RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\core\\pageslidermanager.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"AbsoluteMoniker": "D:0:0:{D75A4DC2-9F64-A98D-0D87-0D117969F0D9}|Assembly-CSharp-Editor.csproj|D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\editor\\customsettings.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
"AbsoluteMoniker": "D:0:0:{D75A4DC2-9F64-A98D-0D87-0D117969F0D9}|Assembly-CSharp-Editor.csproj|D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\assets\\scripts\\editor\\customsettings.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||||
"RelativeMoniker": "D:0:0:{D75A4DC2-9F64-A98D-0D87-0D117969F0D9}|Assembly-CSharp-Editor.csproj|solutionrelative:assets\\scripts\\editor\\customsettings.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
"RelativeMoniker": "D:0:0:{D75A4DC2-9F64-A98D-0D87-0D117969F0D9}|Assembly-CSharp-Editor.csproj|solutionrelative:assets\\scripts\\editor\\customsettings.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"AbsoluteMoniker": "D:0:0:{D75A4DC2-9F64-A98D-0D87-0D117969F0D9}|Assembly-CSharp-Editor.csproj|D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\editor\\buildbasewindow.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
"AbsoluteMoniker": "D:0:0:{D75A4DC2-9F64-A98D-0D87-0D117969F0D9}|Assembly-CSharp-Editor.csproj|D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\assets\\scripts\\editor\\buildbasewindow.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||||
"RelativeMoniker": "D:0:0:{D75A4DC2-9F64-A98D-0D87-0D117969F0D9}|Assembly-CSharp-Editor.csproj|solutionrelative:assets\\scripts\\editor\\buildbasewindow.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
"RelativeMoniker": "D:0:0:{D75A4DC2-9F64-A98D-0D87-0D117969F0D9}|Assembly-CSharp-Editor.csproj|solutionrelative:assets\\scripts\\editor\\buildbasewindow.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\core\\luauihelpertext.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
"AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\assets\\scripts\\core\\luauihelpertext.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||||
"RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\core\\luauihelpertext.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
"RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\core\\luauihelpertext.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\core\\luanetclient.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
"AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\assets\\scripts\\core\\luanetclient.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||||
"RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\core\\luanetclient.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
"RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\core\\luanetclient.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\core\\luauihelpersprite.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
"AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\assets\\scripts\\core\\luauihelpersprite.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||||
"RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\core\\luauihelpersprite.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
"RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\core\\luauihelpersprite.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\assets\\scripts\\gameapplication.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
"AbsoluteMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\assets\\scripts\\gameapplication.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||||
"RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\gameapplication.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
"RelativeMoniker": "D:0:0:{447B58C1-7AFB-29A7-57FF-8787F9E109CD}|Assembly-CSharp.csproj|solutionrelative:assets\\scripts\\gameapplication.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -60,35 +60,33 @@
|
||||||
"$type": "Document",
|
"$type": "Document",
|
||||||
"DocumentIndex": 2,
|
"DocumentIndex": 2,
|
||||||
"Title": "HotupdateWrap.cs",
|
"Title": "HotupdateWrap.cs",
|
||||||
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Source\\Generate\\HotupdateWrap.cs",
|
"DocumentMoniker": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Source\\Generate\\HotupdateWrap.cs",
|
||||||
"RelativeDocumentMoniker": "Assets\\Source\\Generate\\HotupdateWrap.cs",
|
"RelativeDocumentMoniker": "Assets\\Source\\Generate\\HotupdateWrap.cs",
|
||||||
"ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Source\\Generate\\HotupdateWrap.cs",
|
"ToolTip": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Source\\Generate\\HotupdateWrap.cs",
|
||||||
"RelativeToolTip": "Assets\\Source\\Generate\\HotupdateWrap.cs",
|
"RelativeToolTip": "Assets\\Source\\Generate\\HotupdateWrap.cs",
|
||||||
"ViewState": "AgIAAAAAAAAAAAAAAAAAAAQAAAANAAAAAAAAAA==",
|
"ViewState": "AgIAAAAAAAAAAAAAAAAAAAQAAAANAAAAAAAAAA==",
|
||||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||||
"WhenOpened": "2025-12-16T12:10:36.126Z",
|
"WhenOpened": "2025-12-16T12:10:36.126Z"
|
||||||
"EditorCaption": ""
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"$type": "Document",
|
"$type": "Document",
|
||||||
"DocumentIndex": 1,
|
"DocumentIndex": 1,
|
||||||
"Title": "HotUpdate.cs",
|
"Title": "HotUpdate.cs",
|
||||||
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\HotUpdate.cs",
|
"DocumentMoniker": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\HotUpdate.cs",
|
||||||
"RelativeDocumentMoniker": "Assets\\Scripts\\HotUpdate.cs",
|
"RelativeDocumentMoniker": "Assets\\Scripts\\HotUpdate.cs",
|
||||||
"ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\HotUpdate.cs",
|
"ToolTip": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\HotUpdate.cs",
|
||||||
"RelativeToolTip": "Assets\\Scripts\\HotUpdate.cs",
|
"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": 5,
|
"DocumentIndex": 5,
|
||||||
"Title": "CustomSettings.cs",
|
"Title": "CustomSettings.cs",
|
||||||
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Editor\\CustomSettings.cs",
|
"DocumentMoniker": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Editor\\CustomSettings.cs",
|
||||||
"RelativeDocumentMoniker": "Assets\\Scripts\\Editor\\CustomSettings.cs",
|
"RelativeDocumentMoniker": "Assets\\Scripts\\Editor\\CustomSettings.cs",
|
||||||
"ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Editor\\CustomSettings.cs",
|
"ToolTip": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Editor\\CustomSettings.cs",
|
||||||
"RelativeToolTip": "Assets\\Scripts\\Editor\\CustomSettings.cs",
|
"RelativeToolTip": "Assets\\Scripts\\Editor\\CustomSettings.cs",
|
||||||
"ViewState": "AgIAAJ4AAAAAAAAAAADgv7cAAAAkAAAAAAAAAA==",
|
"ViewState": "AgIAAJ4AAAAAAAAAAADgv7cAAAAkAAAAAAAAAA==",
|
||||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||||
|
|
@ -98,11 +96,11 @@
|
||||||
"$type": "Document",
|
"$type": "Document",
|
||||||
"DocumentIndex": 0,
|
"DocumentIndex": 0,
|
||||||
"Title": "VerCheck.cs",
|
"Title": "VerCheck.cs",
|
||||||
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\VerCheck.cs",
|
"DocumentMoniker": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\VerCheck.cs",
|
||||||
"RelativeDocumentMoniker": "Assets\\Scripts\\VerCheck.cs",
|
"RelativeDocumentMoniker": "Assets\\Scripts\\VerCheck.cs",
|
||||||
"ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\VerCheck.cs",
|
"ToolTip": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\VerCheck.cs",
|
||||||
"RelativeToolTip": "Assets\\Scripts\\VerCheck.cs",
|
"RelativeToolTip": "Assets\\Scripts\\VerCheck.cs",
|
||||||
"ViewState": "AgIAALQBAAAAAAAAAAAIwM8BAAAtAAAAAAAAAA==",
|
"ViewState": "AgIAAAAAAAAAAAAAAAAAAEwAAABIAAAAAAAAAA==",
|
||||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||||
"WhenOpened": "2025-12-11T08:27:32.177Z",
|
"WhenOpened": "2025-12-11T08:27:32.177Z",
|
||||||
"EditorCaption": ""
|
"EditorCaption": ""
|
||||||
|
|
@ -111,9 +109,9 @@
|
||||||
"$type": "Document",
|
"$type": "Document",
|
||||||
"DocumentIndex": 6,
|
"DocumentIndex": 6,
|
||||||
"Title": "BuildBaseWindow.cs",
|
"Title": "BuildBaseWindow.cs",
|
||||||
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Editor\\BuildBaseWindow.cs",
|
"DocumentMoniker": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Editor\\BuildBaseWindow.cs",
|
||||||
"RelativeDocumentMoniker": "Assets\\Scripts\\Editor\\BuildBaseWindow.cs",
|
"RelativeDocumentMoniker": "Assets\\Scripts\\Editor\\BuildBaseWindow.cs",
|
||||||
"ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Editor\\BuildBaseWindow.cs",
|
"ToolTip": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Editor\\BuildBaseWindow.cs",
|
||||||
"RelativeToolTip": "Assets\\Scripts\\Editor\\BuildBaseWindow.cs",
|
"RelativeToolTip": "Assets\\Scripts\\Editor\\BuildBaseWindow.cs",
|
||||||
"ViewState": "AgIAAGEAAAAAAAAAAAAUwHMAAAAxAAAAAAAAAA==",
|
"ViewState": "AgIAAGEAAAAAAAAAAAAUwHMAAAAxAAAAAAAAAA==",
|
||||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||||
|
|
@ -123,9 +121,9 @@
|
||||||
"$type": "Document",
|
"$type": "Document",
|
||||||
"DocumentIndex": 4,
|
"DocumentIndex": 4,
|
||||||
"Title": "PageSliderManager.cs",
|
"Title": "PageSliderManager.cs",
|
||||||
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\PageSliderManager.cs",
|
"DocumentMoniker": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\PageSliderManager.cs",
|
||||||
"RelativeDocumentMoniker": "Assets\\Scripts\\Core\\PageSliderManager.cs",
|
"RelativeDocumentMoniker": "Assets\\Scripts\\Core\\PageSliderManager.cs",
|
||||||
"ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\PageSliderManager.cs",
|
"ToolTip": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\PageSliderManager.cs",
|
||||||
"RelativeToolTip": "Assets\\Scripts\\Core\\PageSliderManager.cs",
|
"RelativeToolTip": "Assets\\Scripts\\Core\\PageSliderManager.cs",
|
||||||
"ViewState": "AgIAANIDAAAAAAAAAABIwAUEAAABAAAAAAAAAA==",
|
"ViewState": "AgIAANIDAAAAAAAAAABIwAUEAAABAAAAAAAAAA==",
|
||||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||||
|
|
@ -135,9 +133,9 @@
|
||||||
"$type": "Document",
|
"$type": "Document",
|
||||||
"DocumentIndex": 9,
|
"DocumentIndex": 9,
|
||||||
"Title": "LuaUIHelperSprite.cs",
|
"Title": "LuaUIHelperSprite.cs",
|
||||||
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelperSprite.cs",
|
"DocumentMoniker": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelperSprite.cs",
|
||||||
"RelativeDocumentMoniker": "Assets\\Scripts\\Core\\LuaUIHelperSprite.cs",
|
"RelativeDocumentMoniker": "Assets\\Scripts\\Core\\LuaUIHelperSprite.cs",
|
||||||
"ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelperSprite.cs",
|
"ToolTip": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelperSprite.cs",
|
||||||
"RelativeToolTip": "Assets\\Scripts\\Core\\LuaUIHelperSprite.cs",
|
"RelativeToolTip": "Assets\\Scripts\\Core\\LuaUIHelperSprite.cs",
|
||||||
"ViewState": "AgIAAAAAAAAAAAAAAAAAAB8AAAAeAAAAAAAAAA==",
|
"ViewState": "AgIAAAAAAAAAAAAAAAAAAB8AAAAeAAAAAAAAAA==",
|
||||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||||
|
|
@ -153,9 +151,9 @@
|
||||||
"$type": "Document",
|
"$type": "Document",
|
||||||
"DocumentIndex": 7,
|
"DocumentIndex": 7,
|
||||||
"Title": "LuaUIHelperText.cs",
|
"Title": "LuaUIHelperText.cs",
|
||||||
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelperText.cs",
|
"DocumentMoniker": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelperText.cs",
|
||||||
"RelativeDocumentMoniker": "Assets\\Scripts\\Core\\LuaUIHelperText.cs",
|
"RelativeDocumentMoniker": "Assets\\Scripts\\Core\\LuaUIHelperText.cs",
|
||||||
"ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelperText.cs",
|
"ToolTip": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelperText.cs",
|
||||||
"RelativeToolTip": "Assets\\Scripts\\Core\\LuaUIHelperText.cs",
|
"RelativeToolTip": "Assets\\Scripts\\Core\\LuaUIHelperText.cs",
|
||||||
"ViewState": "AgIAAAAAAAAAAAAAAAAAABYAAAA0AAAAAAAAAA==",
|
"ViewState": "AgIAAAAAAAAAAAAAAAAAABYAAAA0AAAAAAAAAA==",
|
||||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||||
|
|
@ -165,9 +163,9 @@
|
||||||
"$type": "Document",
|
"$type": "Document",
|
||||||
"DocumentIndex": 8,
|
"DocumentIndex": 8,
|
||||||
"Title": "LuaNetClient.cs",
|
"Title": "LuaNetClient.cs",
|
||||||
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaNetClient.cs",
|
"DocumentMoniker": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaNetClient.cs",
|
||||||
"RelativeDocumentMoniker": "Assets\\Scripts\\Core\\LuaNetClient.cs",
|
"RelativeDocumentMoniker": "Assets\\Scripts\\Core\\LuaNetClient.cs",
|
||||||
"ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaNetClient.cs",
|
"ToolTip": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaNetClient.cs",
|
||||||
"RelativeToolTip": "Assets\\Scripts\\Core\\LuaNetClient.cs",
|
"RelativeToolTip": "Assets\\Scripts\\Core\\LuaNetClient.cs",
|
||||||
"ViewState": "AgIAAAAAAAAAAAAAAAAAABoAAAANAAAAAAAAAA==",
|
"ViewState": "AgIAAAAAAAAAAAAAAAAAABoAAAANAAAAAAAAAA==",
|
||||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||||
|
|
@ -177,9 +175,9 @@
|
||||||
"$type": "Document",
|
"$type": "Document",
|
||||||
"DocumentIndex": 3,
|
"DocumentIndex": 3,
|
||||||
"Title": "LuaUIHelper.cs",
|
"Title": "LuaUIHelper.cs",
|
||||||
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelper.cs",
|
"DocumentMoniker": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelper.cs",
|
||||||
"RelativeDocumentMoniker": "Assets\\Scripts\\Core\\LuaUIHelper.cs",
|
"RelativeDocumentMoniker": "Assets\\Scripts\\Core\\LuaUIHelper.cs",
|
||||||
"ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelper.cs",
|
"ToolTip": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\Core\\LuaUIHelper.cs",
|
||||||
"RelativeToolTip": "Assets\\Scripts\\Core\\LuaUIHelper.cs",
|
"RelativeToolTip": "Assets\\Scripts\\Core\\LuaUIHelper.cs",
|
||||||
"ViewState": "AgIAAAAAAAAAAAAAAAAAAIwBAAAAAAAAAAAAAA==",
|
"ViewState": "AgIAAAAAAAAAAAAAAAAAAIwBAAAAAAAAAAAAAA==",
|
||||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||||
|
|
@ -190,9 +188,9 @@
|
||||||
"$type": "Document",
|
"$type": "Document",
|
||||||
"DocumentIndex": 10,
|
"DocumentIndex": 10,
|
||||||
"Title": "GameApplication.cs",
|
"Title": "GameApplication.cs",
|
||||||
"DocumentMoniker": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\GameApplication.cs",
|
"DocumentMoniker": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\GameApplication.cs",
|
||||||
"RelativeDocumentMoniker": "Assets\\Scripts\\GameApplication.cs",
|
"RelativeDocumentMoniker": "Assets\\Scripts\\GameApplication.cs",
|
||||||
"ToolTip": "D:\\UnityProject\\dezhou\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\GameApplication.cs",
|
"ToolTip": "D:\\UnityProject\\dezhouNew\\dezhou_client\\wb_unity_pro\\Assets\\Scripts\\GameApplication.cs",
|
||||||
"RelativeToolTip": "Assets\\Scripts\\GameApplication.cs",
|
"RelativeToolTip": "Assets\\Scripts\\GameApplication.cs",
|
||||||
"ViewState": "AgIAAN4AAAAAAAAAAAArwOYAAAAFAAAAAAAAAA==",
|
"ViewState": "AgIAAN4AAAAAAAAAAAArwOYAAAAFAAAAAAAAAA==",
|
||||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||||
|
|
|
||||||
|
|
@ -74,7 +74,7 @@ public class VerCheck : MonoBehaviour
|
||||||
|
|
||||||
//string init_url = "http://8.138.94.89:9898/NewFK/config/init2_1.json";
|
//string init_url = "http://8.138.94.89:9898/NewFK/config/init2_1.json";
|
||||||
|
|
||||||
string init_url = "http://8.148.219.235:19898/DZ/config/init.json";
|
string init_url = "http://8.134.198.183:80/DZ/config/init.json";
|
||||||
|
|
||||||
if (isGFF == false && isDXYGFF == false)
|
if (isGFF == false && isDXYGFF == false)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
|
@ -19,7 +19,7 @@ MonoBehaviour:
|
||||||
width: 2500
|
width: 2500
|
||||||
height: 1333
|
height: 1333
|
||||||
m_ShowMode: 4
|
m_ShowMode: 4
|
||||||
m_Title: Hierarchy
|
m_Title: Console
|
||||||
m_RootView: {fileID: 2}
|
m_RootView: {fileID: 2}
|
||||||
m_MinSize: {x: 875, y: 350}
|
m_MinSize: {x: 875, y: 350}
|
||||||
m_MaxSize: {x: 10000, y: 10000}
|
m_MaxSize: {x: 10000, y: 10000}
|
||||||
|
|
@ -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: 81
|
controlID: 195
|
||||||
--- !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: 92
|
controlID: 123
|
||||||
--- !u!114 &7
|
--- !u!114 &7
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
|
|
@ -169,7 +169,7 @@ MonoBehaviour:
|
||||||
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: 93
|
controlID: 124
|
||||||
--- !u!114 &8
|
--- !u!114 &8
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
|
|
@ -250,7 +250,7 @@ MonoBehaviour:
|
||||||
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: 170
|
controlID: 165
|
||||||
--- !u!114 &11
|
--- !u!114 &11
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
|
|
@ -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: 04700200
|
m_SelectedIDs: 2631ffff
|
||||||
m_LastClickedID: 159748
|
m_LastClickedID: 0
|
||||||
m_ExpandedIDs: e81ffdfff41ffdffe06f0200047002001e700200287002004070020094700200ac700200
|
m_ExpandedIDs: 3831ffff8c31ffff9c31ffffac31ffff2a32ffff3432ffff3e32ffff6832ffff1053ffff1a53ffff2453ffff4e53ffff2cfbffffe254000036550000
|
||||||
m_RenameOverlay:
|
m_RenameOverlay:
|
||||||
m_UserAcceptedRename: 0
|
m_UserAcceptedRename: 0
|
||||||
m_Name:
|
m_Name:
|
||||||
|
|
@ -725,7 +725,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 1
|
displayed: 1
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: -101, y: -1}
|
snapOffsetDelta: {x: -101, y: -26}
|
||||||
snapCorner: 3
|
snapCorner: 3
|
||||||
id: Tool Settings
|
id: Tool Settings
|
||||||
index: 0
|
index: 0
|
||||||
|
|
@ -758,7 +758,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 25}
|
snapOffsetDelta: {x: 0, y: 0}
|
||||||
snapCorner: 1
|
snapCorner: 1
|
||||||
id: unity-search-toolbar
|
id: unity-search-toolbar
|
||||||
index: 1
|
index: 1
|
||||||
|
|
@ -769,7 +769,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 1
|
displayed: 1
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 25}
|
snapOffsetDelta: {x: 0, y: 0}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: unity-transform-toolbar
|
id: unity-transform-toolbar
|
||||||
index: 0
|
index: 0
|
||||||
|
|
@ -802,7 +802,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 25}
|
snapOffsetDelta: {x: 0, y: 0}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: Scene View/Light Settings
|
id: Scene View/Light Settings
|
||||||
index: 0
|
index: 0
|
||||||
|
|
@ -813,7 +813,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 25}
|
snapOffsetDelta: {x: 0, y: 0}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: Scene View/Camera
|
id: Scene View/Camera
|
||||||
index: 1
|
index: 1
|
||||||
|
|
@ -824,7 +824,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 25}
|
snapOffsetDelta: {x: 0, y: 0}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: Scene View/Cloth Constraints
|
id: Scene View/Cloth Constraints
|
||||||
index: 2
|
index: 2
|
||||||
|
|
@ -835,7 +835,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 25}
|
snapOffsetDelta: {x: 0, y: 0}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: Scene View/Cloth Collisions
|
id: Scene View/Cloth Collisions
|
||||||
index: 3
|
index: 3
|
||||||
|
|
@ -846,7 +846,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 25}
|
snapOffsetDelta: {x: 0, y: 0}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: Scene View/Navmesh Display
|
id: Scene View/Navmesh Display
|
||||||
index: 5
|
index: 5
|
||||||
|
|
@ -857,7 +857,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 25}
|
snapOffsetDelta: {x: 0, y: 0}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: Scene View/Agent Display
|
id: Scene View/Agent Display
|
||||||
index: 7
|
index: 7
|
||||||
|
|
@ -868,7 +868,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 25}
|
snapOffsetDelta: {x: 0, y: 0}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: Scene View/Obstacle Display
|
id: Scene View/Obstacle Display
|
||||||
index: 9
|
index: 9
|
||||||
|
|
@ -879,7 +879,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 25}
|
snapOffsetDelta: {x: 0, y: 0}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: Scene View/Occlusion Culling
|
id: Scene View/Occlusion Culling
|
||||||
index: 4
|
index: 4
|
||||||
|
|
@ -890,7 +890,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 25}
|
snapOffsetDelta: {x: 0, y: 0}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: Scene View/Physics Debugger
|
id: Scene View/Physics Debugger
|
||||||
index: 6
|
index: 6
|
||||||
|
|
@ -901,7 +901,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 25}
|
snapOffsetDelta: {x: 0, y: 0}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: Scene View/Scene Visibility
|
id: Scene View/Scene Visibility
|
||||||
index: 8
|
index: 8
|
||||||
|
|
@ -912,7 +912,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 25}
|
snapOffsetDelta: {x: 0, y: 0}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: Scene View/Particles
|
id: Scene View/Particles
|
||||||
index: 10
|
index: 10
|
||||||
|
|
@ -956,7 +956,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 25}
|
snapOffsetDelta: {x: 0, y: 0}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: Scene View/Open Tile Palette
|
id: Scene View/Open Tile Palette
|
||||||
index: 2
|
index: 2
|
||||||
|
|
@ -967,7 +967,7 @@ MonoBehaviour:
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 0
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 25}
|
snapOffsetDelta: {x: 0, y: 0}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: Scene View/Tilemap Focus
|
id: Scene View/Tilemap Focus
|
||||||
index: 3
|
index: 3
|
||||||
|
|
@ -975,17 +975,17 @@ MonoBehaviour:
|
||||||
m_OverlaysVisible: 1
|
m_OverlaysVisible: 1
|
||||||
m_WindowGUID: e07c16a66c31ae440bdbc5a34c43feb6
|
m_WindowGUID: e07c16a66c31ae440bdbc5a34c43feb6
|
||||||
m_Gizmos: 1
|
m_Gizmos: 1
|
||||||
m_OverrideSceneCullingMask: 0
|
m_OverrideSceneCullingMask: 6917529027641081856
|
||||||
m_SceneIsLit: 0
|
m_SceneIsLit: 1
|
||||||
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: 230.9297, y: 2003.0482, z: 1.9848838}
|
m_Target: {x: 1314.0447, y: 1667.7003, z: -2.5761037}
|
||||||
speed: 2
|
speed: 2
|
||||||
m_Value: {x: 233.36331, y: 2001.0342, z: 1.8556515}
|
m_Value: {x: 1314.0447, y: 1667.7003, z: -2.5761037}
|
||||||
m_RenderMode: 0
|
m_RenderMode: 0
|
||||||
m_CameraMode:
|
m_CameraMode:
|
||||||
drawMode: 0
|
drawMode: 0
|
||||||
|
|
@ -997,7 +997,7 @@ MonoBehaviour:
|
||||||
m_SceneViewState:
|
m_SceneViewState:
|
||||||
m_AlwaysRefresh: 0
|
m_AlwaysRefresh: 0
|
||||||
showFog: 1
|
showFog: 1
|
||||||
showSkybox: 0
|
showSkybox: 1
|
||||||
showFlares: 1
|
showFlares: 1
|
||||||
showImageEffects: 1
|
showImageEffects: 1
|
||||||
showParticleSystems: 1
|
showParticleSystems: 1
|
||||||
|
|
@ -1036,9 +1036,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: 274.26123
|
m_Target: 1653.084
|
||||||
speed: 2
|
speed: 2
|
||||||
m_Value: 287.18454
|
m_Value: 1653.084
|
||||||
m_Ortho:
|
m_Ortho:
|
||||||
m_Target: 1
|
m_Target: 1
|
||||||
speed: 2
|
speed: 2
|
||||||
|
|
@ -1113,14 +1113,14 @@ MonoBehaviour:
|
||||||
m_LastFolders:
|
m_LastFolders:
|
||||||
- Assets/ART/base/prefab
|
- Assets/ART/base/prefab
|
||||||
m_LastFoldersGridSize: 16
|
m_LastFoldersGridSize: 16
|
||||||
m_LastProjectPath: D:\UnityProject\dezhou\dezhou_client\wb_unity_pro
|
m_LastProjectPath: D:\UnityProject\dezhouNew\dezhou_client\wb_unity_pro
|
||||||
m_LockTracker:
|
m_LockTracker:
|
||||||
m_IsLocked: 0
|
m_IsLocked: 0
|
||||||
m_FolderTreeState:
|
m_FolderTreeState:
|
||||||
scrollPos: {x: 0, y: 120}
|
scrollPos: {x: 0, y: 192}
|
||||||
m_SelectedIDs: 20560000
|
m_SelectedIDs: 0a560000
|
||||||
m_LastClickedID: 22048
|
m_LastClickedID: 22026
|
||||||
m_ExpandedIDs: 00000000d4550000d6550000d8550000da550000dc550000de550000e0550000e4550000e6550000e85500000e560000125600001456000000ca9a3bffffff7f
|
m_ExpandedIDs: 00000000d4550000d6550000d8550000da550000dc550000de550000e0550000e2550000e4550000e6550000e8550000ea55000000ca9a3bffffff7f
|
||||||
m_RenameOverlay:
|
m_RenameOverlay:
|
||||||
m_UserAcceptedRename: 0
|
m_UserAcceptedRename: 0
|
||||||
m_Name:
|
m_Name:
|
||||||
|
|
@ -1148,7 +1148,7 @@ MonoBehaviour:
|
||||||
scrollPos: {x: 0, y: 0}
|
scrollPos: {x: 0, y: 0}
|
||||||
m_SelectedIDs:
|
m_SelectedIDs:
|
||||||
m_LastClickedID: 0
|
m_LastClickedID: 0
|
||||||
m_ExpandedIDs: 00000000d4550000d6550000d8550000da550000dc550000de550000e0550000e2550000e4550000e6550000e8550000
|
m_ExpandedIDs: 00000000d4550000d6550000d8550000da550000dc550000de550000e0550000e2550000e4550000e6550000e8550000ea550000
|
||||||
m_RenameOverlay:
|
m_RenameOverlay:
|
||||||
m_UserAcceptedRename: 0
|
m_UserAcceptedRename: 0
|
||||||
m_Name:
|
m_Name:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue