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

add

parent 0c20a6e6
...@@ -352,7 +352,7 @@ export default class SceneComponent extends MyCocosSceneComponent { ...@@ -352,7 +352,7 @@ export default class SceneComponent extends MyCocosSceneComponent {
cardIcon.getComponent(cc.Sprite).spriteFrame = this.cardList[i]; cardIcon.getComponent(cc.Sprite).spriteFrame = this.cardList[i];
cards[i].getChildByName("word").getComponent(cc.Label).string = word; cards[i].getChildByName("word").getComponent(cc.Label).string = word;
cards[i].getChildByName("finger").active = false; cards[i].getChildByName("finger").active = false;
cardIcon.scale = 150 / cardIcon.height; cardIcon.scale = Math.min(1, 150 / cardIcon.height);
this._gameWordList.push(word) this._gameWordList.push(word)
} }
} }
...@@ -951,13 +951,13 @@ export default class SceneComponent extends MyCocosSceneComponent { ...@@ -951,13 +951,13 @@ export default class SceneComponent extends MyCocosSceneComponent {
"is it orange", "is it orange",
"is it yellow", "is it yellow",
"is it brown", "is it brown",
"is it a fruit",
"can you eat it", "can you eat it",
], ],
baby: [ baby: [
"is your word baby", "is your word baby",
"is it bule", "is it bule",
"is it green", "is it green",
"is it an animal"
], ],
umbrella: [ umbrella: [
"is your word umbrella", "is your word umbrella",
...@@ -982,13 +982,15 @@ export default class SceneComponent extends MyCocosSceneComponent { ...@@ -982,13 +982,15 @@ export default class SceneComponent extends MyCocosSceneComponent {
chicken: [ chicken: [
"is your word chicken", "is your word chicken",
"is it yellow", "is it yellow",
"is it an animal" "is it an animal",
"can you eat it"
], ],
son: [ son: [
"is your word son", "is your word son",
"is it orange", "is it orange",
"is it orange and blue", "is it orange and blue",
"is it blue and orange", "is it blue and orange",
"is it an animal",
], ],
hotel: [ hotel: [
"is your word hotel", "is your word hotel",
...@@ -1000,6 +1002,7 @@ export default class SceneComponent extends MyCocosSceneComponent { ...@@ -1000,6 +1002,7 @@ export default class SceneComponent extends MyCocosSceneComponent {
"is it grey", "is it grey",
"is it pink and grey", "is it pink and grey",
"is it grey and pink", "is it grey and pink",
"is it an animal",
], ],
uniform: [ uniform: [
"is your word 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