Commit 47df5245 authored by 杨一航's avatar 杨一航

add

parent 0c20a6e6
......@@ -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",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment