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
b820986a
Commit
b820986a
authored
Aug 22, 2019
by
18손재민
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
상점 UI 추가 적용함
parent
62e67b27
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
ResourceLoader.js
js/ResourceLoader.js
+1
-0
ScenesData.js
js/ScenesData.js
+3
-3
No files found.
js/ResourceLoader.js
View file @
b820986a
...
...
@@ -78,6 +78,7 @@ ResourceLoader.loadImage = function(scene)
scene
.
load
.
image
(
'
spectateBtn
'
,
'
assets/image/UI/decisionBtn/spectate.png
'
);
scene
.
load
.
image
(
'
yesBtn
'
,
'
assets/image/UI/decisionBtn/yes.png
'
);
scene
.
load
.
image
(
'
buyBtn
'
,
'
assets/image/UI/decisionBtn/buy.png
'
);
scene
.
load
.
image
(
'
equipBtn
'
,
'
assets/image/UI/decisionBtn/equip.png
'
);
...
...
js/ScenesData.js
View file @
b820986a
...
...
@@ -380,7 +380,7 @@ var shopScene = new Phaser.Class(
price
:
0
,
itemName
:
this
.
add
.
text
(
game
.
config
.
width
-
500
,
300
,
'
평민
'
).
setOrigin
(
1
,
0.5
).
setColor
(
'
#000000
'
).
setDepth
(
9.9
).
setPadding
(
5
,
5
,
5
,
5
).
setFont
(
'
40pt sejongFont
'
),
itemPrice
:
this
.
add
.
text
(
game
.
config
.
width
-
200
,
300
,
'
0냥
'
).
setOrigin
(
1
,
0.5
).
setColor
(
'
#000000
'
).
setDepth
(
9.9
).
setPadding
(
5
,
5
,
5
,
5
).
setFont
(
'
40pt sejongFont
'
),
buyBtn
:
UIObject
.
createButton
(
this
,
UIObject
.
createLabel
(
this
,
game
.
config
.
width
-
600
,
300
,
5
,
'
bu
tton
'
,
1
,
'
center
'
,
'
구매하기
'
),
-
1
,
-
1
,
-
1
,
buyBtn
:
UIObject
.
createButton
(
this
,
UIObject
.
createLabel
(
this
,
game
.
config
.
width
-
600
,
300
,
5
,
'
bu
yBtn
'
,
1
,
'
center
'
),
-
1
,
-
1
,
-
1
,
function
()
{
if
(
PlayerData
.
userData
.
money
>=
ScenesData
.
shopScene
.
pyeongminItem
.
price
)
...
...
@@ -394,7 +394,7 @@ var shopScene = new Phaser.Class(
ScenesData
.
shopScene
.
pyeongminItem
.
boughtSign
.
setVisible
(
true
);
}
}),
useBtn
:
UIObject
.
createButton
(
this
,
UIObject
.
createLabel
(
this
,
game
.
config
.
width
-
800
,
300
,
5
,
'
buy
Btn
'
,
1
,
'
center
'
),
-
1
,
-
1
,
-
1
,
useBtn
:
UIObject
.
createButton
(
this
,
UIObject
.
createLabel
(
this
,
game
.
config
.
width
-
800
,
300
,
5
,
'
equip
Btn
'
,
1
,
'
center
'
),
-
1
,
-
1
,
-
1
,
function
()
{
if
(
PlayerData
.
userData
.
item
.
includes
(
0
))
...
...
@@ -439,7 +439,7 @@ var shopScene = new Phaser.Class(
ScenesData
.
shopScene
.
sunbiItem
.
boughtSign
.
setVisible
(
true
);
}
}),
useBtn
:
UIObject
.
createButton
(
this
,
UIObject
.
createLabel
(
this
,
game
.
config
.
width
-
800
,
400
,
5
,
'
button
'
,
1
,
'
center
'
,
'
사용하기
'
),
-
1
,
-
1
,
-
1
,
useBtn
:
UIObject
.
createButton
(
this
,
UIObject
.
createLabel
(
this
,
game
.
config
.
width
-
800
,
400
,
5
,
'
equipBtn
'
,
1
,
'
center
'
),
-
1
,
-
1
,
-
1
,
function
()
{
if
(
PlayerData
.
userData
.
item
.
includes
(
1
))
...
...
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