Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
YGOProUnity_V2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
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
MyCard
YGOProUnity_V2
Commits
7a2e3e76
Commit
7a2e3e76
authored
Nov 21, 2018
by
mercury233
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update 0x1337: STATUS_DISABLED
parent
bef08d3b
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
6 deletions
+5
-6
.gitignore
.gitignore
+1
-0
Assets/SibylSystem/MonoHelpers/TcpHelper.cs
Assets/SibylSystem/MonoHelpers/TcpHelper.cs
+3
-4
Assets/YGOSharp/Enums/Query.cs
Assets/YGOSharp/Enums/Query.cs
+1
-2
Assets/transUI/prefab/trans_menu.prefab
Assets/transUI/prefab/trans_menu.prefab
+0
-0
No files found.
.gitignore
View file @
7a2e3e76
...
...
@@ -46,3 +46,4 @@ AI_core_vs2017solution/core.VC.db
AI_core_vs2017solution/core.VC.VC.opendb
AI_core_vs2017solution/System.Servicemodel.Faltexception.dll
[Ll]ibrary_/
AI_core_vs2017solution/.vs
Assets/SibylSystem/MonoHelpers/TcpHelper.cs
View file @
7a2e3e76
...
...
@@ -763,12 +763,11 @@ public static class BinaryExtensions
}
if
((
flag
&
(
int
)
Query
.
Owner
)
!=
0
)
r
.
ReadInt32
();
if
((
flag
&
(
int
)
Query
.
IsDisabled
)
!=
0
)
if
((
flag
&
(
int
)
Query
.
Status
)
!=
0
)
{
cardToRefresh
.
disabled
=
(
r
.
ReadInt32
()
!=
0
);
int
status
=
r
.
ReadInt32
();
cardToRefresh
.
disabled
=
(
status
&
0x0001
)
==
0x0001
;
}
if
((
flag
&
(
int
)
Query
.
IsPublic
)
!=
0
)
r
.
ReadInt32
();
if
((
flag
&
(
int
)
Query
.
LScale
)
!=
0
)
data
.
LScale
=
r
.
ReadInt32
();
if
((
flag
&
(
int
)
Query
.
RScale
)
!=
0
)
...
...
Assets/YGOSharp/Enums/Query.cs
View file @
7a2e3e76
...
...
@@ -21,8 +21,7 @@
OverlayCard
=
0x10000
,
Counters
=
0x20000
,
Owner
=
0x40000
,
IsDisabled
=
0x80000
,
IsPublic
=
0x100000
,
Status
=
0x80000
,
LScale
=
0x200000
,
RScale
=
0x400000
}
...
...
Assets/transUI/prefab/trans_menu.prefab
View file @
7a2e3e76
No preview for this file type
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