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
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
perfectdicky
YGOProUnity_V2
Commits
1ff721b4
Commit
1ff721b4
authored
Sep 06, 2021
by
神楽坂玲奈
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix static bg
parent
86a26989
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
16 deletions
+3
-16
Assets/SibylSystem/BackGroundPic/BackGroundPic.cs
Assets/SibylSystem/BackGroundPic/BackGroundPic.cs
+3
-16
No files found.
Assets/SibylSystem/BackGroundPic/BackGroundPic.cs
View file @
1ff721b4
...
...
@@ -8,22 +8,9 @@ public class BackGroundPic : Servant
public
override
void
initialize
()
{
backGround
=
Program
.
I
().
mod_simple_ngui_background_texture
;
if
(!
File
.
Exists
(
"texture/common/desk.jpg"
))
{
backGround
.
SetActive
(
false
);
return
;
}
var
file
=
new
FileStream
(
"texture/common/desk.jpg"
,
FileMode
.
Open
,
FileAccess
.
Read
);
file
.
Seek
(
0
,
SeekOrigin
.
Begin
);
var
data
=
new
byte
[
file
.
Length
];
file
.
Read
(
data
,
0
,
(
int
)
file
.
Length
);
file
.
Close
();
file
.
Dispose
();
file
=
null
;
var
pic
=
new
Texture2D
(
1920
,
1080
);
pic
.
LoadImage
(
data
);
backGround
.
GetComponent
<
UITexture
>().
mainTexture
=
pic
;
if
(!
File
.
Exists
(
"texture/common/desk.jpg"
))
return
;
backGround
.
SetActive
(
true
);
backGround
.
GetComponent
<
UITexture
>().
mainTexture
=
UIHelper
.
GetTexture2D
(
"texture/common/desk.jpg"
);
backGround
.
GetComponent
<
UITexture
>().
depth
=
-
100
;
}
...
...
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