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
AKABA RIJI
MDPro3
Commits
959ac6b9
Commit
959ac6b9
authored
May 26, 2024
by
SherryChaos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix hot key bug
parent
6b484926
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
288 deletions
+13
-288
Assets/AddressableAssetsData/link.xml
Assets/AddressableAssetsData/link.xml
+0
-280
Assets/AddressableAssetsData/link.xml.meta
Assets/AddressableAssetsData/link.xml.meta
+0
-7
Assets/Addressables/Text/UpdateContent.txt
Assets/Addressables/Text/UpdateContent.txt
+4
-0
Assets/Scripts/MDPro3/Servants/OcgCore.cs
Assets/Scripts/MDPro3/Servants/OcgCore.cs
+3
-1
Assets/Scripts/MDPro3/UI/Popup/PopupDuelInput.cs
Assets/Scripts/MDPro3/UI/Popup/PopupDuelInput.cs
+6
-0
No files found.
Assets/AddressableAssetsData/link.xml
deleted
100644 → 0
View file @
6b484926
This diff is collapsed.
Click to expand it.
Assets/AddressableAssetsData/link.xml.meta
deleted
100644 → 0
View file @
6b484926
fileFormatVersion: 2
guid: b10cc5464e906614ba465559d4c007de
TextScriptImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
Assets/Addressables/Text/UpdateContent.txt
View file @
959ac6b9
MDPro3 v1.1.2更新:
1.修复了在决斗中需要输入文字时(如抹杀之指名者),会响应快捷键功能的错误。
MDPro3 v1.1.1更新:
1.新投稿动画:琰魔龙 红莲魔·渊、龙骑士 D-终。
2.现在在决斗中也能开启加速了,回放模式下为2倍速,其他模式下为1.5倍速。
...
...
Assets/Scripts/MDPro3/Servants/OcgCore.cs
View file @
959ac6b9
...
...
@@ -424,6 +424,8 @@ namespace MDPro3
bool
mate0Random
;
bool
mate1Random
;
public
static
bool
inputMode
;
public
override
void
PerFrameFunction
()
{
if
(
isShowed
)
...
...
@@ -571,7 +573,7 @@ namespace MDPro3
ToChat
();
}
if (Program.I().room.chatOn)
if
(
Program
.
I
().
room
.
chatOn
||
inputMode
)
return
;
if
(
Input
.
GetKeyDown
(
KeyCode
.
Q
))
...
...
Assets/Scripts/MDPro3/UI/Popup/PopupDuelInput.cs
View file @
959ac6b9
...
...
@@ -26,6 +26,8 @@ namespace MDPro3.UI
float
height
=
btnConfirm
.
GetComponent
<
RectTransform
>().
anchoredPosition
.
y
;
btnConfirm
.
GetComponent
<
RectTransform
>().
anchoredPosition
=
new
Vector2
(
0f
,
height
);
}
OcgCore
.
inputMode
=
true
;
}
public
override
void
OnConfirm
()
...
...
@@ -41,5 +43,9 @@ namespace MDPro3.UI
Hide
();
}
private
void
OnDestroy
()
{
OcgCore
.
inputMode
=
false
;
}
}
}
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