Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
L5R3_GuessingGame
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
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
template admin
L5R3_GuessingGame
Commits
47df5245
Commit
47df5245
authored
Nov 30, 2022
by
杨一航
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add
parent
0c20a6e6
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
L5R3_GuessingGame.ts
assets/L5R3_GuessingGame/scene/L5R3_GuessingGame.ts
+6
-3
No files found.
assets/L5R3_GuessingGame/scene/L5R3_GuessingGame.ts
View file @
47df5245
...
...
@@ -352,7 +352,7 @@ export default class SceneComponent extends MyCocosSceneComponent {
cardIcon
.
getComponent
(
cc
.
Sprite
).
spriteFrame
=
this
.
cardList
[
i
];
cards
[
i
].
getChildByName
(
"
word
"
).
getComponent
(
cc
.
Label
).
string
=
word
;
cards
[
i
].
getChildByName
(
"
finger
"
).
active
=
false
;
cardIcon
.
scale
=
150
/
cardIcon
.
height
;
cardIcon
.
scale
=
Math
.
min
(
1
,
150
/
cardIcon
.
height
)
;
this
.
_gameWordList
.
push
(
word
)
}
}
...
...
@@ -951,13 +951,13 @@ export default class SceneComponent extends MyCocosSceneComponent {
"
is it orange
"
,
"
is it yellow
"
,
"
is it brown
"
,
"
is it a fruit
"
,
"
can you eat it
"
,
],
baby
:
[
"
is your word baby
"
,
"
is it bule
"
,
"
is it green
"
,
"
is it an animal
"
],
umbrella
:
[
"
is your word umbrella
"
,
...
...
@@ -982,13 +982,15 @@ export default class SceneComponent extends MyCocosSceneComponent {
chicken
:
[
"
is your word chicken
"
,
"
is it yellow
"
,
"
is it an animal
"
"
is it an animal
"
,
"
can you eat it
"
],
son
:
[
"
is your word son
"
,
"
is it orange
"
,
"
is it orange and blue
"
,
"
is it blue and orange
"
,
"
is it an animal
"
,
],
hotel
:
[
"
is your word hotel
"
,
...
...
@@ -1000,6 +1002,7 @@ export default class SceneComponent extends MyCocosSceneComponent {
"
is it grey
"
,
"
is it pink and grey
"
,
"
is it grey and pink
"
,
"
is it an animal
"
,
],
uniform
:
[
"
is your word uniform
"
,
...
...
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