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
Dark_Zane
MDPro3
Commits
117ecad5
Commit
117ecad5
authored
Apr 29, 2024
by
SherryChaos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug fixing
parent
f5512878
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
Assets/Scripts/MDPro3/Duel/GameCard.cs
Assets/Scripts/MDPro3/Duel/GameCard.cs
+3
-2
Assets/Scripts/MDPro3/Servants/OcgCore.cs
Assets/Scripts/MDPro3/Servants/OcgCore.cs
+1
-1
No files found.
Assets/Scripts/MDPro3/Duel/GameCard.cs
View file @
117ecad5
...
...
@@ -1194,7 +1194,8 @@ namespace MDPro3
}));
if
((
p
.
location
&
(
uint
)
CardLocation
.
Onfield
)
>
0
&&
cacheP
!=
null
&&
(
cacheP
.
location
&
(
uint
)
CardLocation
.
Onfield
)
==
0
)
&&
(
cacheP
.
location
&
(
uint
)
CardLocation
.
Onfield
)
==
0
&&
(
p
.
location
&
(
uint
)
CardLocation
.
Overlay
)
==
0
)
{
sequence
.
Join
(
cardPlane
.
DOLocalMove
(
Vector3
.
up
*
15f
,
moveTime
*
0.5f
).
SetEase
(
Ease
.
InOutSine
).
OnComplete
(()
=>
{
...
...
@@ -2553,7 +2554,7 @@ namespace MDPro3
}
else
{
if
(
CloseupConfig
())
if
(
CloseupConfig
()
&&
(
p
.
location
&
(
uint
)
CardLocation
.
MonsterZone
)
>
0
)
{
manager
.
GetElement
<
Transform
>(
"DefaultShow"
).
localEulerAngles
=
new
Vector3
(
0f
,
180f
,
0f
);
manager
.
GetElement
<
Transform
>(
"DefaultHide"
).
localEulerAngles
=
new
Vector3
(
0f
,
180f
,
0f
);
...
...
Assets/Scripts/MDPro3/Servants/OcgCore.cs
View file @
117ecad5
...
...
@@ -1679,7 +1679,7 @@ namespace MDPro3
else
if
((
to
.
location
&
(
uint
)
CardLocation
.
Hand
)
>
0
)
{
textReason
=
InterString
.
Get
(
"回到"
);
if
((
from
.
location
&
(
uint
)
CardLocation
.
Deck
)
>
0
)
if
((
from
.
location
&
(
(
uint
)
CardLocation
.
Deck
+
(
uint
)
CardLocation
.
Extra
)
)
>
0
)
textReason
=
InterString
.
Get
(
"加入"
);
if
((
from
.
location
&
((
uint
)
CardLocation
.
Grave
+
(
uint
)
CardLocation
.
Removed
))
>
0
)
textReason
=
InterString
.
Get
(
"回收"
);
...
...
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