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
8ac8b381
Commit
8ac8b381
authored
Nov 04, 2019
by
wildfirecode
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
a099ae07
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
5 deletions
+7
-5
MapRepeatSkin.exml
egret/resource/skins/MapRepeatSkin.exml
+1
-1
MapBottomPart.ts
egret/src/mapScene/MapBottomPart.ts
+1
-0
MapRpeatPart.ts
egret/src/mapScene/MapRpeatPart.ts
+1
-0
MapScene.ts
egret/src/mapScene/MapScene.ts
+2
-2
MapTopPart.ts
egret/src/mapScene/MapTopPart.ts
+2
-2
No files found.
egret/resource/skins/MapRepeatSkin.exml
View file @
8ac8b381
...
...
@@ -2,7 +2,7 @@
<e:Skin
class=
"MapRepeatPartSkin"
width=
"750"
height=
"1477"
xmlns:e=
"http://ns.egret.com/eui"
xmlns:w=
"http://ns.egret.com/wing"
>
<e:Image
source=
"map2_jpg"
/>
<e:Group
x=
"351"
y=
"26"
id=
"icon0"
>
<e:Image
id=
"nums"
source=
"icon_png"
x=
"0"
y=
"0"
/>
<e:Image
source=
"icon_png"
x=
"0"
y=
"0"
/>
<e:BitmapLabel
id=
"txt0"
width=
"76"
x=
"12"
y=
"18.69"
text=
"1"
font=
"nums_fnt"
textAlign=
"center"
/>
</e:Group>
<e:Group
x=
"196"
y=
"158"
id=
"icon1"
>
...
...
egret/src/mapScene/MapBottomPart.ts
View file @
8ac8b381
...
...
@@ -33,6 +33,7 @@ export default class MapBottomPart extends ComponentBase {
icon
.
show
=
()
=>
{
this
.
addChild
(
icon
)};
icon
[
'nums'
]
=
icon
.
getChildAt
(
0
);
icon
[
'bmptxt'
]
=
icon
.
getChildAt
(
1
);
icon
[
'mappart'
]
=
this
;
const
star
=
new
MapStarComp
();
star
.
loadSkin
();
star
.
start
();
...
...
egret/src/mapScene/MapRpeatPart.ts
View file @
8ac8b381
...
...
@@ -22,6 +22,7 @@ export default class MapRpeatPart extends ComponentBase {
icon
.
show
=
()
=>
{
this
.
addChild
(
icon
)};
icon
[
'nums'
]
=
icon
.
getChildAt
(
0
);
icon
[
'bmptxt'
]
=
icon
.
getChildAt
(
1
);
icon
[
'mappart'
]
=
this
;
const
star
=
new
MapStarComp
();
star
.
loadSkin
();
star
.
start
();
...
...
egret/src/mapScene/MapScene.ts
View file @
8ac8b381
...
...
@@ -213,7 +213,7 @@ export default class MapScene extends Scene {
const
pic
=
new
egret
.
Bitmap
(
light
);
//76 61
pic
.
x
=
targetIcon
.
x
+
50
-
2
;
pic
.
y
=
targetIcon
.
y
+
37
+
10
;
targetIcon
.
paren
t
.
addChildAt
(
pic
,
1
);
targetIcon
.
mappar
t
.
addChildAt
(
pic
,
1
);
// targetIcon.parent.addChildAt(pic, 0);
pic
.
anchorOffsetX
=
76
;
pic
.
anchorOffsetY
=
61
;
...
...
@@ -408,7 +408,7 @@ export default class MapScene extends Scene {
addAvatar
(
level
,
ele
?)
{
const
item
=
MapScene
.
iconHash
[
level
];
const
parent
=
item
.
parent
;
const
parent
=
item
[
'mappart'
]
;
const
avatar
=
new
AvatarComp
();
avatar
.
loadSkin
();
avatar
.
start
(
ele
);
...
...
egret/src/mapScene/MapTopPart.ts
View file @
8ac8b381
...
...
@@ -19,13 +19,13 @@ export default class MapTopPart extends ComponentBase {
icon
[
'nums'
]
=
icon
.
getChildAt
(
0
);
icon
[
'bmptxt'
]
=
icon
.
getChildAt
(
1
);
this
.
removeChild
(
icon
);
icon
[
'mappart'
]
=
this
;
icon
.
show
=
()
=>
{
this
.
addChild
(
icon
)};
console
.
log
(
icon
.
y
)
}
}
getIcon
(
i
)
{
return
this
[
`icon
${
i
}
`
];
}
get
skinKey
():
string
{
return
'MapTop'
}
}
\ No newline at end of file
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