Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
X
xiaoxiaole
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wildfirecode13
xiaoxiaole
Commits
3f699680
Commit
3f699680
authored
Nov 05, 2019
by
wjf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
l
parent
3ee31e08
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
9 deletions
+3
-9
index.html
egret/index.html
+1
-1
Main2Skin.exml
egret/resource/skins/Main2Skin.exml
+2
-2
MainScene.ts
egret/src/mainScene/MainScene.ts
+0
-6
No files found.
egret/index.html
View file @
3f699680
...
...
@@ -41,7 +41,7 @@
<body>
<div
style=
"margin: auto;width: 100%;height: 100%;"
class=
"egret-player"
data-entry-class=
"Main"
data-orientation=
"auto"
data-scale-mode=
"showAll"
data-frame-rate=
"60"
data-content-width=
"750"
data-content-height=
"1624"
data-multi-fingered=
"2"
data-show-fps=
"
fals
e"
data-show-log=
"true"
data-content-height=
"1624"
data-multi-fingered=
"2"
data-show-fps=
"
tru
e"
data-show-log=
"true"
data-show-fps-style=
"x:0,y:0,size:12,textColor:0xffffff,bgAlpha:0.9"
>
</div>
...
...
egret/resource/skins/Main2Skin.exml
View file @
3f699680
...
...
@@ -11,12 +11,12 @@
<e:Image
x=
"0"
y=
"28.85"
source=
"stepsBoard_png"
/>
<e:Image
x=
"226.5"
y=
"88.85"
source=
"dangqianfenshu_png"
/>
<e:Label
id=
"scoreTxt"
touchEnabled=
"false"
size=
"20"
width=
"194.85"
anchorOffsetY=
"0"
height=
"36"
textAlign=
"left"
bold=
"true"
anchorOffsetX=
"0"
verticalAlign=
"middle"
fontFamily=
"Microsoft YaHei"
text=
"0"
y=
"83.85"
x=
"320.85"
textColor=
"0xffffff"
stroke=
"1"
/>
<e:Label
id=
"targetScoreTxt"
touchEnabled=
"false"
size=
"26"
width=
"292.85"
anchorOffsetY=
"0"
height=
"36"
textAlign=
"center"
anchorOffsetX=
"0"
verticalAlign=
"middle"
fontFamily=
"Microsoft YaHei"
text=
"目标分数"
y=
"169.85"
textColor=
"0x9d4a06"
bold=
"true"
horizontalCenter=
"0.5"
/>
<e:Label
id=
"chapterTxt"
touchEnabled=
"false"
size=
"24"
width=
"121.85"
anchorOffsetY=
"0"
height=
"36"
textAlign=
"center"
anchorOffsetX=
"0"
verticalAlign=
"middle"
fontFamily=
"Microsoft YaHei"
text=
"第X关"
y=
"22"
textColor=
"0xffffff"
x=
"316"
/>
...
...
egret/src/mainScene/MainScene.ts
View file @
3f699680
...
...
@@ -175,9 +175,6 @@ export default class MainScene extends Scene {
connectState
:
number
=
2
;
//皮肤上的
public
starProgress
:
eui
.
Image
;
public
scoreTxt
:
eui
.
Label
;
public
chapterTxt
:
eui
.
Label
;
public
settingGroup
:
eui
.
Group
;
public
settingbg
:
eui
.
Image
;
public
soundBtn
:
eui
.
Image
;
...
...
@@ -230,9 +227,6 @@ export default class MainScene extends Scene {
//第几关
this
.
chapter
=
(
data
&&
data
.
chapter
)
?
data
.
chapter
:
1
;
// this.chapter = 24;
this
.
chapterTxt
.
text
=
"第"
+
this
.
chapter
+
"关"
;
this
.
removeChild
(
this
.
chapterTxt
);
this
.
removeChild
(
this
.
scoreTxt
);
//关卡数据
this
.
chapterData
=
getChapterData
(
this
.
chapter
);
//初始化目标信息
...
...
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