Commit 502f4687 authored by Li MingZhe's avatar Li MingZhe

feat: 水果叠加 评分补加 禁止学生麦克风

parent 0507659a
No preview for this file type
This diff is collapsed.
......@@ -1008,7 +1008,7 @@ cc.Class({
mbNode.x = 180;
mbNode.y = -100;
const magicBasket = getSprNode("icon_magicbasket");
const magicBasket = this.getMagicBasket();
this.curMagicBasket = magicBasket;
mbNode.addChild(magicBasket);
......@@ -1023,6 +1023,20 @@ cc.Class({
.start();
},
getMagicBasket() {
const basketBack = getSprNode("basket_back");
const basketBottom = getSprNode("basket_bottom");
basketBack.addChild(basketBottom);
const basketFront = getSprNode('basket_front');
basketBack.addChild(basketFront, 10);
basketBack.fruitCount = 0;
return basketBack;
},
wordLayer: null,
curSmallBasket: null,
wordLayerSoundBtn: null,
......@@ -1285,6 +1299,7 @@ cc.Class({
star2.y = star1.y
greatBtn.star = star2;
greatBtn.starNum = 2;
greatBtn.otherNeedShowArr = [0]
const perfectBtn = getSprNode("btn_perfect");
ti.addChild(perfectBtn);
......@@ -1295,6 +1310,7 @@ cc.Class({
star3.y = star1.y
perfectBtn.star = star3;
perfectBtn.starNum = 3;
perfectBtn.otherNeedShowArr = [1, 0]
bg.tiBtnArr = [goodBtn, greatBtn, perfectBtn];
......@@ -1331,6 +1347,16 @@ cc.Class({
}
btn.isClicked = true;
if (btn.otherNeedShowArr) {
for (let i=0; i<btn.otherNeedShowArr.length; i++) {
delayCall((i+1) * 0.2, () => {
this.bottomTipBtnClick(btn.otherNeedShowArr[i]);
})
}
}
cc.tween(btn.star)
.to(0.3, {opacity: 0}, {easing: "cubicIn"})
.call(() => {
......@@ -1888,12 +1914,18 @@ cc.Class({
speakIcon.addComponent(cc.Button);
speakIcon.on("click", () => {
if (!this.isTeacher) {
return;
}
this.sendServerEvent("sentence_panel_speak_click");
});
this.sentencePanelSpeakBtn = speakIcon;
if (!this.isTeacher) {
speakIcon.opacity = 0;
}
return panel;
},
......@@ -1961,55 +1993,79 @@ cc.Class({
return;
}
let resId = this.curMagicBasket.fruitCount + 1; // this.magciBasketFruitCount;
if (resId > 6) {
resId = Math.ceil(Math.random() * 6);
}
let resName;
switch(this.treeType) {
case this.treeTypeArr[0]:
resName = "magic_basket/apple" + this.magciBasketFruitCount;
resName = "magic_basket/apple" + resId;
break;
case this.treeTypeArr[1]:
resName = "magic_basket/banana" + this.magciBasketFruitCount;
resName = "magic_basket/banana" + resId;
break;
case this.treeTypeArr[2]:
resName = "magic_basket/orange" + this.magciBasketFruitCount;
resName = "magic_basket/orange" + resId;
break;
}
this.addMagicBasketFruitByResName(resName);
console.log("resName: ", resName);
const oldBasket = this.curMagicBasket;
const newBasket = getSprNode(resName);
newBasket.parent = oldBasket.parent;
newBasket.x = oldBasket.x;
newBasket.y = oldBasket.y;
// const oldBasket = this.curMagicBasket;
// const newBasket = getSprNode(resName);
// newBasket.parent = oldBasket.parent;
// newBasket.x = oldBasket.x;
// newBasket.y = oldBasket.y;
this.curMagicBasket = newBasket;
// this.curMagicBasket = newBasket;
this.magciBasketFruitCount ++;
this.curMagicBasket.fruitCount ++ ;
this.changePicAnima(oldBasket, newBasket);
// this.changePicAnima(oldBasket, newBasket);
},
addMagicBasketFruitByResName(resName) {
const spr = getSprNode(resName);
// spr.zIndex = 3;
// if (this.magciBasketFruitCount >= 4) {
// spr.zIndex = RandomInt(2, 4);
// }
this.curMagicBasket.addChild(spr);
spr.opacity = 0;
this.showDropFruitAnima(this.curMagicBasket, () => {
cc.tween(spr)
.to(0.3, {opacity: 255})
.start()
});
},
resetMagicBasket() {
if (this.typeIndex == 2) {
return;
}
const oldBasket = this.curMagicBasket;
const newBasket = getSprNode("icon_magicbasket");
newBasket.parent = oldBasket.parent;
newBasket.x = oldBasket.x;
newBasket.y = oldBasket.y;
this.magciBasketFruitCount = 1;
this.curMagicBasket = newBasket;
// const oldBasket = this.curMagicBasket;
// const newBasket = getSprNode("icon_magicbasket");
// newBasket.parent = oldBasket.parent;
// newBasket.x = oldBasket.x;
// newBasket.y = oldBasket.y;
// oldBasket.zIndex = 10;
// this.curMagicBasket = newBasket;
this.magciBasketFruitCount = 1;
oldBasket.zIndex = 10;
this.changePicAnimaStart(oldBasket, newBasket);
// this.changePicAnimaStart(oldBasket, newBasket);
},
......@@ -2061,12 +2117,18 @@ cc.Class({
speakIcon.addComponent(cc.Button);
speakIcon.on("click", () => {
if (!this.isTeacher) {
return;
}
this.sendServerEvent("fruit_panel_speak_click")
});
this.fruitPanelSpeakBtn = speakIcon;
if (!this.isTeacher) {
speakIcon.opacity = 0;
}
return panel;
},
......
{
"__type__": "cc.SpriteAtlas"
}
\ No newline at end of file
{
"ver": "1.2.1",
"uuid": "09c357a3-ccd2-49be-83c2-3699e713a32b",
"maxWidth": 1024,
"maxHeight": 1024,
"padding": 2,
"allowRotation": true,
"forceSquared": false,
"powerOfTwo": false,
"algorithm": "MaxRects",
"format": "png",
"quality": 80,
"contourBleed": true,
"paddingBleed": true,
"filterUnused": true,
"packable": false,
"premultiplyAlpha": false,
"filterMode": "bilinear",
"platformSettings": {},
"subMetas": {}
}
\ No newline at end of file
play/assets/aks_03/texture/magic_basket/apple1.png

8.93 KB | W: | H:

play/assets/aks_03/texture/magic_basket/apple1.png

4.01 KB | W: | H:

play/assets/aks_03/texture/magic_basket/apple1.png
play/assets/aks_03/texture/magic_basket/apple1.png
play/assets/aks_03/texture/magic_basket/apple1.png
play/assets/aks_03/texture/magic_basket/apple1.png
  • 2-up
  • Swipe
  • Onion skin
{
"ver": "2.3.5",
"uuid": "3539454f-f613-42d5-95ed-ee2a85eb1370",
"uuid": "f86d8ef5-c9c3-4698-961c-1648e7f05c7f",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
......@@ -13,8 +13,8 @@
"subMetas": {
"apple1": {
"ver": "1.0.4",
"uuid": "2a3ce05b-3b53-47a0-b313-71aa026c20c5",
"rawTextureUuid": "3539454f-f613-42d5-95ed-ee2a85eb1370",
"uuid": "32ee7ff1-8fdf-4515-85bb-48f5f33ed1b7",
"rawTextureUuid": "f86d8ef5-c9c3-4698-961c-1648e7f05c7f",
"trimType": "custom",
"trimThreshold": 1,
"rotated": false,
......
play/assets/aks_03/texture/magic_basket/apple2.png

9.1 KB | W: | H:

play/assets/aks_03/texture/magic_basket/apple2.png

4.01 KB | W: | H:

play/assets/aks_03/texture/magic_basket/apple2.png
play/assets/aks_03/texture/magic_basket/apple2.png
play/assets/aks_03/texture/magic_basket/apple2.png
play/assets/aks_03/texture/magic_basket/apple2.png
  • 2-up
  • Swipe
  • Onion skin
{
"ver": "2.3.5",
"uuid": "65cf1c52-ac4e-4d84-80bd-90e1ac28b0e2",
"uuid": "e6cfcc10-e873-4c0a-b249-372917a54d00",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
......@@ -13,8 +13,8 @@
"subMetas": {
"apple2": {
"ver": "1.0.4",
"uuid": "9dc7604c-b989-49db-bf6b-19be5ccadc56",
"rawTextureUuid": "65cf1c52-ac4e-4d84-80bd-90e1ac28b0e2",
"uuid": "ee6abe4d-7fd8-415c-8cb2-0d3c41fea661",
"rawTextureUuid": "e6cfcc10-e873-4c0a-b249-372917a54d00",
"trimType": "custom",
"trimThreshold": 1,
"rotated": false,
......
play/assets/aks_03/texture/magic_basket/apple3.png

9.13 KB | W: | H:

play/assets/aks_03/texture/magic_basket/apple3.png

3.99 KB | W: | H:

play/assets/aks_03/texture/magic_basket/apple3.png
play/assets/aks_03/texture/magic_basket/apple3.png
play/assets/aks_03/texture/magic_basket/apple3.png
play/assets/aks_03/texture/magic_basket/apple3.png
  • 2-up
  • Swipe
  • Onion skin
{
"ver": "2.3.5",
"uuid": "566150e0-e114-43fd-9b4b-33e2636d4490",
"uuid": "31410562-bf95-4ae7-912d-963c8f907983",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
......@@ -13,8 +13,8 @@
"subMetas": {
"apple3": {
"ver": "1.0.4",
"uuid": "9045a74d-b36c-41b8-963f-8766c837fe20",
"rawTextureUuid": "566150e0-e114-43fd-9b4b-33e2636d4490",
"uuid": "cdbb4905-687e-4e4d-98e9-01e0be8ca380",
"rawTextureUuid": "31410562-bf95-4ae7-912d-963c8f907983",
"trimType": "custom",
"trimThreshold": 1,
"rotated": false,
......
play/assets/aks_03/texture/magic_basket/apple4.png

9.5 KB | W: | H:

play/assets/aks_03/texture/magic_basket/apple4.png

4 KB | W: | H:

play/assets/aks_03/texture/magic_basket/apple4.png
play/assets/aks_03/texture/magic_basket/apple4.png
play/assets/aks_03/texture/magic_basket/apple4.png
play/assets/aks_03/texture/magic_basket/apple4.png
  • 2-up
  • Swipe
  • Onion skin
{
"ver": "2.3.5",
"uuid": "a15a6005-a50a-45ba-b64c-fd3cd8e3220e",
"uuid": "d64e6789-cf35-4e3b-ae3d-045f5a90bbf1",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
......@@ -13,8 +13,8 @@
"subMetas": {
"apple4": {
"ver": "1.0.4",
"uuid": "00e0fcf7-0041-4c55-862c-93ad13a6eb00",
"rawTextureUuid": "a15a6005-a50a-45ba-b64c-fd3cd8e3220e",
"uuid": "9151fc5d-26cb-43ad-b0c7-d9747f620560",
"rawTextureUuid": "d64e6789-cf35-4e3b-ae3d-045f5a90bbf1",
"trimType": "custom",
"trimThreshold": 1,
"rotated": false,
......
play/assets/aks_03/texture/magic_basket/apple5.png

9.69 KB | W: | H:

play/assets/aks_03/texture/magic_basket/apple5.png

4.28 KB | W: | H:

play/assets/aks_03/texture/magic_basket/apple5.png
play/assets/aks_03/texture/magic_basket/apple5.png
play/assets/aks_03/texture/magic_basket/apple5.png
play/assets/aks_03/texture/magic_basket/apple5.png
  • 2-up
  • Swipe
  • Onion skin
{
"ver": "2.3.5",
"uuid": "87bca6cd-9ace-4d0d-8823-581bc0f8544a",
"uuid": "3094eae9-ba64-43fd-9cb4-cf9cd3f9209f",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
......@@ -13,8 +13,8 @@
"subMetas": {
"apple5": {
"ver": "1.0.4",
"uuid": "8abf337d-bbd1-4681-b0d9-252b4da4b326",
"rawTextureUuid": "87bca6cd-9ace-4d0d-8823-581bc0f8544a",
"uuid": "6dbf7879-e028-40a0-8854-3de977e96b0b",
"rawTextureUuid": "3094eae9-ba64-43fd-9cb4-cf9cd3f9209f",
"trimType": "custom",
"trimThreshold": 1,
"rotated": false,
......
play/assets/aks_03/texture/magic_basket/apple6.png

9.78 KB | W: | H:

play/assets/aks_03/texture/magic_basket/apple6.png

4.82 KB | W: | H:

play/assets/aks_03/texture/magic_basket/apple6.png
play/assets/aks_03/texture/magic_basket/apple6.png
play/assets/aks_03/texture/magic_basket/apple6.png
play/assets/aks_03/texture/magic_basket/apple6.png
  • 2-up
  • Swipe
  • Onion skin
{
"ver": "2.3.5",
"uuid": "e51230fa-e578-49b5-ade7-56a0cf6cbe13",
"uuid": "786051d2-010a-4d24-add8-057eaa160934",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
......@@ -13,8 +13,8 @@
"subMetas": {
"apple6": {
"ver": "1.0.4",
"uuid": "cfcc28aa-6fb3-495f-ab24-754879cf94ed",
"rawTextureUuid": "e51230fa-e578-49b5-ade7-56a0cf6cbe13",
"uuid": "6784185a-1601-48f5-8a1c-4ef73a87792e",
"rawTextureUuid": "786051d2-010a-4d24-add8-057eaa160934",
"trimType": "custom",
"trimThreshold": 1,
"rotated": false,
......
play/assets/aks_03/texture/magic_basket/banana1.png

9.34 KB | W: | H:

play/assets/aks_03/texture/magic_basket/banana1.png

6.62 KB | W: | H:

play/assets/aks_03/texture/magic_basket/banana1.png
play/assets/aks_03/texture/magic_basket/banana1.png
play/assets/aks_03/texture/magic_basket/banana1.png
play/assets/aks_03/texture/magic_basket/banana1.png
  • 2-up
  • Swipe
  • Onion skin
{
"ver": "2.3.5",
"uuid": "fbc620fe-22ba-46d9-90f3-513342e14378",
"uuid": "015fd59e-9837-48fb-8d97-d928f83a5944",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
......@@ -13,8 +13,8 @@
"subMetas": {
"banana1": {
"ver": "1.0.4",
"uuid": "327e383b-6315-4a96-96a2-7e24e6d886c0",
"rawTextureUuid": "fbc620fe-22ba-46d9-90f3-513342e14378",
"uuid": "41edb975-cf6d-45b1-9524-789c8f9c2a47",
"rawTextureUuid": "015fd59e-9837-48fb-8d97-d928f83a5944",
"trimType": "custom",
"trimThreshold": 1,
"rotated": false,
......
play/assets/aks_03/texture/magic_basket/banana2.png

9.57 KB | W: | H:

play/assets/aks_03/texture/magic_basket/banana2.png

6.83 KB | W: | H:

play/assets/aks_03/texture/magic_basket/banana2.png
play/assets/aks_03/texture/magic_basket/banana2.png
play/assets/aks_03/texture/magic_basket/banana2.png
play/assets/aks_03/texture/magic_basket/banana2.png
  • 2-up
  • Swipe
  • Onion skin
{
"ver": "2.3.5",
"uuid": "3400206f-9712-406b-b036-64f666ea95f4",
"uuid": "9f0bd9c4-fd01-45c7-9828-7b994a882aaf",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
......@@ -13,8 +13,8 @@
"subMetas": {
"banana2": {
"ver": "1.0.4",
"uuid": "afaf586e-f1ba-40d9-b6ec-58d1bc953e61",
"rawTextureUuid": "3400206f-9712-406b-b036-64f666ea95f4",
"uuid": "6dc0b4e5-b58d-4ea4-ba48-e226b9ef59ad",
"rawTextureUuid": "9f0bd9c4-fd01-45c7-9828-7b994a882aaf",
"trimType": "custom",
"trimThreshold": 1,
"rotated": false,
......
play/assets/aks_03/texture/magic_basket/banana3.png

9.25 KB | W: | H:

play/assets/aks_03/texture/magic_basket/banana3.png

5.73 KB | W: | H:

play/assets/aks_03/texture/magic_basket/banana3.png
play/assets/aks_03/texture/magic_basket/banana3.png
play/assets/aks_03/texture/magic_basket/banana3.png
play/assets/aks_03/texture/magic_basket/banana3.png
  • 2-up
  • Swipe
  • Onion skin
{
"ver": "2.3.5",
"uuid": "20528cfe-4c0b-4a0b-880f-482d2334e954",
"uuid": "9cf97cc9-beb9-43ce-a0ee-43b345e5270e",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
......@@ -13,8 +13,8 @@
"subMetas": {
"banana3": {
"ver": "1.0.4",
"uuid": "40b5c73a-af47-4caf-9c2c-a96d63d87ff2",
"rawTextureUuid": "20528cfe-4c0b-4a0b-880f-482d2334e954",
"uuid": "6828e1dd-03c3-49e6-a26a-389920c83d85",
"rawTextureUuid": "9cf97cc9-beb9-43ce-a0ee-43b345e5270e",
"trimType": "custom",
"trimThreshold": 1,
"rotated": false,
......
play/assets/aks_03/texture/magic_basket/banana4.png

9.66 KB | W: | H:

play/assets/aks_03/texture/magic_basket/banana4.png

5.9 KB | W: | H:

play/assets/aks_03/texture/magic_basket/banana4.png
play/assets/aks_03/texture/magic_basket/banana4.png
play/assets/aks_03/texture/magic_basket/banana4.png
play/assets/aks_03/texture/magic_basket/banana4.png
  • 2-up
  • Swipe
  • Onion skin
{
"ver": "2.3.5",
"uuid": "aebff719-0991-4dae-a4f1-1d4a49b4d755",
"uuid": "a4c16fd8-cbbf-44e1-b015-5f1be6b8daab",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
......@@ -13,8 +13,8 @@
"subMetas": {
"banana4": {
"ver": "1.0.4",
"uuid": "772b0e10-734f-4a04-b318-ead2ffc8b047",
"rawTextureUuid": "aebff719-0991-4dae-a4f1-1d4a49b4d755",
"uuid": "ab1ae3d0-013e-4ac9-be7a-9dd7bdc7a809",
"rawTextureUuid": "a4c16fd8-cbbf-44e1-b015-5f1be6b8daab",
"trimType": "custom",
"trimThreshold": 1,
"rotated": false,
......
play/assets/aks_03/texture/magic_basket/banana5.png

9.92 KB | W: | H:

play/assets/aks_03/texture/magic_basket/banana5.png

6.78 KB | W: | H:

play/assets/aks_03/texture/magic_basket/banana5.png
play/assets/aks_03/texture/magic_basket/banana5.png
play/assets/aks_03/texture/magic_basket/banana5.png
play/assets/aks_03/texture/magic_basket/banana5.png
  • 2-up
  • Swipe
  • Onion skin
{
"ver": "2.3.5",
"uuid": "582b77d3-7a93-4c8e-9f9a-d357eaf9cb41",
"uuid": "895e3174-2d2e-409f-9bbd-3bfb95213fda",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
......@@ -13,8 +13,8 @@
"subMetas": {
"banana5": {
"ver": "1.0.4",
"uuid": "00e28bc5-790f-4c25-a4fc-3b19c25cd119",
"rawTextureUuid": "582b77d3-7a93-4c8e-9f9a-d357eaf9cb41",
"uuid": "80514a55-4af9-41dc-bf40-e25d39527d6f",
"rawTextureUuid": "895e3174-2d2e-409f-9bbd-3bfb95213fda",
"trimType": "custom",
"trimThreshold": 1,
"rotated": false,
......
play/assets/aks_03/texture/magic_basket/banana6.png

10.1 KB | W: | H:

play/assets/aks_03/texture/magic_basket/banana6.png

7.69 KB | W: | H:

play/assets/aks_03/texture/magic_basket/banana6.png
play/assets/aks_03/texture/magic_basket/banana6.png
play/assets/aks_03/texture/magic_basket/banana6.png
play/assets/aks_03/texture/magic_basket/banana6.png
  • 2-up
  • Swipe
  • Onion skin
{
"ver": "2.3.5",
"uuid": "d0e0f5a8-7418-43d9-b2fd-d166c1a75246",
"uuid": "128e9a76-256d-4971-b970-760306c89076",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
......@@ -13,8 +13,8 @@
"subMetas": {
"banana6": {
"ver": "1.0.4",
"uuid": "310dc87c-32f7-44c6-a993-11b0e40de8fe",
"rawTextureUuid": "d0e0f5a8-7418-43d9-b2fd-d166c1a75246",
"uuid": "db6c8c4d-2d48-4a7c-96e7-2d0b312c4e28",
"rawTextureUuid": "128e9a76-256d-4971-b970-760306c89076",
"trimType": "custom",
"trimThreshold": 1,
"rotated": false,
......
{
"ver": "2.3.5",
"uuid": "a0db9f21-d23c-45d4-8f4d-8b4dc5ef9d1c",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 170,
"height": 214,
"platformSettings": {},
"subMetas": {
"basket_back": {
"ver": "1.0.4",
"uuid": "10b83c3f-15d1-49ba-b29c-af83d9be09be",
"rawTextureUuid": "a0db9f21-d23c-45d4-8f4d-8b4dc5ef9d1c",
"trimType": "custom",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 170,
"height": 214,
"rawWidth": 170,
"rawHeight": 214,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "fda29a16-f5de-442a-94fd-5ec7b24483b5",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 170,
"height": 214,
"platformSettings": {},
"subMetas": {
"basket_bottom": {
"ver": "1.0.4",
"uuid": "bdcd0011-bdbb-426b-a4cb-26ae0de77216",
"rawTextureUuid": "fda29a16-f5de-442a-94fd-5ec7b24483b5",
"trimType": "custom",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 170,
"height": 214,
"rawWidth": 170,
"rawHeight": 214,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "d9eb4ac7-0146-4abc-9e76-5205793d5bfe",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 170,
"height": 214,
"platformSettings": {},
"subMetas": {
"basket_front": {
"ver": "1.0.4",
"uuid": "399bbfea-af30-4fb1-acdc-46527dfae5a0",
"rawTextureUuid": "d9eb4ac7-0146-4abc-9e76-5205793d5bfe",
"trimType": "custom",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 170,
"height": 214,
"rawWidth": 170,
"rawHeight": 214,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
play/assets/aks_03/texture/magic_basket/orange1.png

9.41 KB | W: | H:

play/assets/aks_03/texture/magic_basket/orange1.png

3.91 KB | W: | H:

play/assets/aks_03/texture/magic_basket/orange1.png
play/assets/aks_03/texture/magic_basket/orange1.png
play/assets/aks_03/texture/magic_basket/orange1.png
play/assets/aks_03/texture/magic_basket/orange1.png
  • 2-up
  • Swipe
  • Onion skin
{
"ver": "2.3.5",
"uuid": "07498b55-cc00-4d23-8da1-76a6daa1bc93",
"uuid": "73d11487-7b54-4582-a9eb-a520b1dd00e2",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
......@@ -13,8 +13,8 @@
"subMetas": {
"orange1": {
"ver": "1.0.4",
"uuid": "9e1e4528-19bb-4944-be1f-501d95c285ad",
"rawTextureUuid": "07498b55-cc00-4d23-8da1-76a6daa1bc93",
"uuid": "9b9f7cc9-f921-4b06-872b-4123823b80ba",
"rawTextureUuid": "73d11487-7b54-4582-a9eb-a520b1dd00e2",
"trimType": "custom",
"trimThreshold": 1,
"rotated": false,
......
play/assets/aks_03/texture/magic_basket/orange2.png

9.47 KB | W: | H:

play/assets/aks_03/texture/magic_basket/orange2.png

3.9 KB | W: | H:

play/assets/aks_03/texture/magic_basket/orange2.png
play/assets/aks_03/texture/magic_basket/orange2.png
play/assets/aks_03/texture/magic_basket/orange2.png
play/assets/aks_03/texture/magic_basket/orange2.png
  • 2-up
  • Swipe
  • Onion skin
{
"ver": "2.3.5",
"uuid": "fdb1cdae-a376-485a-8c08-71d08c58a4eb",
"uuid": "69cd44a2-e1f7-48ac-9cc3-720b44418697",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
......@@ -13,8 +13,8 @@
"subMetas": {
"orange2": {
"ver": "1.0.4",
"uuid": "56d115e9-ec02-4ef1-9a2c-a172b5b580c1",
"rawTextureUuid": "fdb1cdae-a376-485a-8c08-71d08c58a4eb",
"uuid": "c1b530f2-0a98-420a-a96a-cd7d98ab60ba",
"rawTextureUuid": "69cd44a2-e1f7-48ac-9cc3-720b44418697",
"trimType": "custom",
"trimThreshold": 1,
"rotated": false,
......
play/assets/aks_03/texture/magic_basket/orange3.png

9.8 KB | W: | H:

play/assets/aks_03/texture/magic_basket/orange3.png

3.88 KB | W: | H:

play/assets/aks_03/texture/magic_basket/orange3.png
play/assets/aks_03/texture/magic_basket/orange3.png
play/assets/aks_03/texture/magic_basket/orange3.png
play/assets/aks_03/texture/magic_basket/orange3.png
  • 2-up
  • Swipe
  • Onion skin
{
"ver": "2.3.5",
"uuid": "f2a28d69-1c68-49a6-9fc8-2a59b2568292",
"uuid": "17407bb9-4362-4849-a60a-839db1e0c9c9",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
......@@ -13,8 +13,8 @@
"subMetas": {
"orange3": {
"ver": "1.0.4",
"uuid": "a2a15e2d-54f1-4b91-8dfc-cf61541b1df9",
"rawTextureUuid": "f2a28d69-1c68-49a6-9fc8-2a59b2568292",
"uuid": "3fb9846b-a6d8-4bfb-8e9c-47acebad2543",
"rawTextureUuid": "17407bb9-4362-4849-a60a-839db1e0c9c9",
"trimType": "custom",
"trimThreshold": 1,
"rotated": false,
......
play/assets/aks_03/texture/magic_basket/orange4.png

9.64 KB | W: | H:

play/assets/aks_03/texture/magic_basket/orange4.png

3.83 KB | W: | H:

play/assets/aks_03/texture/magic_basket/orange4.png
play/assets/aks_03/texture/magic_basket/orange4.png
play/assets/aks_03/texture/magic_basket/orange4.png
play/assets/aks_03/texture/magic_basket/orange4.png
  • 2-up
  • Swipe
  • Onion skin
{
"ver": "2.3.5",
"uuid": "3833525a-1032-4f79-b033-851913453f21",
"uuid": "f8fa8388-c551-4e6a-9d7f-7c74d3b25726",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
......@@ -13,8 +13,8 @@
"subMetas": {
"orange4": {
"ver": "1.0.4",
"uuid": "9208e1c8-d9e1-42bb-966f-e79dccfeab65",
"rawTextureUuid": "3833525a-1032-4f79-b033-851913453f21",
"uuid": "9b914edb-9dc3-4780-a0ab-590fc39b9ced",
"rawTextureUuid": "f8fa8388-c551-4e6a-9d7f-7c74d3b25726",
"trimType": "custom",
"trimThreshold": 1,
"rotated": false,
......
play/assets/aks_03/texture/magic_basket/orange5.png

9.97 KB | W: | H:

play/assets/aks_03/texture/magic_basket/orange5.png

4.16 KB | W: | H:

play/assets/aks_03/texture/magic_basket/orange5.png
play/assets/aks_03/texture/magic_basket/orange5.png
play/assets/aks_03/texture/magic_basket/orange5.png
play/assets/aks_03/texture/magic_basket/orange5.png
  • 2-up
  • Swipe
  • Onion skin
{
"ver": "2.3.5",
"uuid": "3d65efb6-1a4c-434e-8875-9af47317caba",
"uuid": "aa3f228b-3c58-4fdd-8066-cfcd2b5e4e4a",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
......@@ -13,8 +13,8 @@
"subMetas": {
"orange5": {
"ver": "1.0.4",
"uuid": "7a2c0297-57b0-46d7-aa8e-041dad77afb6",
"rawTextureUuid": "3d65efb6-1a4c-434e-8875-9af47317caba",
"uuid": "9ec289f3-d732-4e5e-a4fc-f2bea3563e24",
"rawTextureUuid": "aa3f228b-3c58-4fdd-8066-cfcd2b5e4e4a",
"trimType": "custom",
"trimThreshold": 1,
"rotated": false,
......
play/assets/aks_03/texture/magic_basket/orange6.png

10.3 KB | W: | H:

play/assets/aks_03/texture/magic_basket/orange6.png

4.57 KB | W: | H:

play/assets/aks_03/texture/magic_basket/orange6.png
play/assets/aks_03/texture/magic_basket/orange6.png
play/assets/aks_03/texture/magic_basket/orange6.png
play/assets/aks_03/texture/magic_basket/orange6.png
  • 2-up
  • Swipe
  • Onion skin
{
"ver": "2.3.5",
"uuid": "20a87545-8c06-4b69-a3b0-ba725ebde9f1",
"uuid": "c710777e-a23b-4b99-a887-ee4213f9bffe",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
......@@ -13,8 +13,8 @@
"subMetas": {
"orange6": {
"ver": "1.0.4",
"uuid": "b9abd4dd-2cbd-40a6-9726-76e71cc39f5d",
"rawTextureUuid": "20a87545-8c06-4b69-a3b0-ba725ebde9f1",
"uuid": "902dda04-35fa-4883-bba9-f823f3f9ef7d",
"rawTextureUuid": "c710777e-a23b-4b99-a887-ee4213f9bffe",
"trimType": "custom",
"trimThreshold": 1,
"rotated": false,
......
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