Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
M
MDPro3
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Alexis_chen
MDPro3
Commits
aa60e631
Commit
aa60e631
authored
Mar 17, 2024
by
SherryChaos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix server creation args
parent
d10be7d4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
9 deletions
+15
-9
Assets/Main.unity
Assets/Main.unity
+3
-3
Assets/Scripts/MDPro3/Managers/UIManager.cs
Assets/Scripts/MDPro3/Managers/UIManager.cs
+1
-0
Assets/Scripts/MDPro3/Servants/Online.cs
Assets/Scripts/MDPro3/Servants/Online.cs
+11
-6
No files found.
Assets/Main.unity
View file @
aa60e631
...
...
@@ -33135,7 +33135,7 @@ CanvasGroup:
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 679615499}
m_Enabled: 1
m_Alpha:
1
m_Alpha:
0
m_Interactable: 1
m_BlocksRaycasts: 1
m_IgnoreParentGroups: 0
...
...
@@ -52788,7 +52788,7 @@ RectTransform:
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 1}
m_AnchorMax: {x: 1, y: 1}
m_AnchoredPosition: {x: 0, y:
0
}
m_AnchoredPosition: {x: 0, y:
-0.000030517578
}
m_SizeDelta: {x: 0, y: 300}
m_Pivot: {x: 0, y: 1}
--- !u!1 &1110086322
...
...
@@ -104850,7 +104850,7 @@ CanvasGroup:
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2140741781}
m_Enabled: 1
m_Alpha:
0
m_Alpha:
1
m_Interactable: 1
m_BlocksRaycasts: 1
m_IgnoreParentGroups: 0
Assets/Scripts/MDPro3/Managers/UIManager.cs
View file @
aa60e631
...
...
@@ -86,6 +86,7 @@ namespace MDPro3
Program
.
I
().
cutin
.
Load
();
Program
.
I
().
mate
.
Load
();
Program
.
I
().
solo
.
Load
();
Online
.
severSelectionsInitialized
=
false
;
}
IEnumerator
LoadDiyWallpaperAsync
(
string
path
,
Transform
parent
)
...
...
Assets/Scripts/MDPro3/Servants/Online.cs
View file @
aa60e631
...
...
@@ -195,20 +195,25 @@ namespace MDPro3
string
GetPoolCodeByName
(
string
pool
)
{
for
(
int
i
=
1481
;
i
<
1487
;
i
++)
{
if
(
StringHelper
.
GetUnsafe
(
i
)
==
pool
)
return
(
i
-
1481
).
ToString
();
}
return
"5"
;
}
string
GetModeCodeByName
(
string
mode
)
{
for
(
int
i
=
1244
;
i
<
1247
;
i
++)
{
if
(
StringHelper
.
GetUnsafe
(
i
)
==
mode
)
return
(
i
-
1244
).
ToString
();
}
return
"0"
;
}
public
List
<
string
>
serverSelections
;
bool
severSelectionsInitialized
;
public
static
bool
severSelectionsInitialized
;
public
void
OnServer
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment