Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sejong25
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Tear of Sejong
sejong25
Commits
9126adbc
Commit
9126adbc
authored
Aug 22, 2019
by
18신대성
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
유저네임 길이제한 걸어둠
parent
d8087eec
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
ScenesData.js
js/ScenesData.js
+1
-1
No files found.
js/ScenesData.js
View file @
9126adbc
...
...
@@ -68,7 +68,7 @@ var menuScene = new Phaser.Class(
PlayerData
.
currentHopae
=
(
PlayerData
.
userData
.
recentHopae
==
null
)
?
PlayerData
.
userData
.
hopae
[
0
]
:
PlayerData
.
userData
.
recentHopae
;
PlayerData
.
nickname
=
PlayerData
.
currentHopae
.
name
;
this
.
userName
=
this
.
add
.
text
(
250
,
75
,
PlayerData
.
userData
.
userName
).
setOrigin
(
0
,
0.5
).
setColor
(
'
#000000
'
).
setDepth
(
9.9
).
setPadding
(
5
,
5
,
5
,
5
).
setFont
(
'
40pt sejongFont
'
);
this
.
userName
=
this
.
add
.
text
(
250
,
75
,
PlayerData
.
userData
.
userName
.
length
<
10
?
PlayerData
.
userData
.
userName
:
PlayerData
.
userData
.
userName
.
substr
(
0
,
8
)
+
'
...
'
).
setOrigin
(
0
,
0.5
).
setColor
(
'
#000000
'
).
setDepth
(
9.9
).
setPadding
(
5
,
5
,
5
,
5
).
setFont
(
'
40pt sejongFont
'
);
this
.
money
=
this
.
add
.
text
(
950
,
70
,
PlayerData
.
userData
.
money
).
setOrigin
(
1
,
0.5
).
setColor
(
'
#ffffff
'
).
setDepth
(
9.9
).
setPadding
(
5
,
5
,
5
,
5
).
setFont
(
'
40pt sejongFont
'
);
this
.
organizeHopae
=
function
()
...
...
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