FeatureBuy弹窗
@ -20,12 +20,12 @@ export class FeatureBuyPopup extends Component {
|
||||
protected onLoad(): void {
|
||||
this.BuyType = 1;
|
||||
// 两个Node加入点击事件
|
||||
this.buyFreeSpinNode.on(Node.EventType.TOUCH_START, this.onClickBuyFreeSpin, this);
|
||||
this.buySuperSpinNode.on(Node.EventType.TOUCH_START, this.onClickBuySuperSpin, this);
|
||||
// this.buyFreeSpinNode.on(Node.EventType.TOUCH_START, this.onClickBuyFreeSpin, this);
|
||||
// this.buySuperSpinNode.on(Node.EventType.TOUCH_START, this.onClickBuySuperSpin, this);
|
||||
}
|
||||
|
||||
show() {
|
||||
this.buyFreeSpinBgSprite.active = this.BuyType == 1;
|
||||
// this.buyFreeSpinBgSprite.active = this.BuyType == 1;
|
||||
}
|
||||
|
||||
onClickBuyFreeSpin() {
|
||||
|
||||
@ -522,41 +522,38 @@ export class SlotGame extends Component {
|
||||
this.setBtnEnableForBol(this.featureBuyNode, false);
|
||||
this.setBtnEnableForBol(this.doubleWinBtnNode.getChildByName('pt_11'), false);
|
||||
|
||||
let maliao = this.featureBuyNode.getChildByName('3_4').getComponent(sp.Skeleton);
|
||||
maliao.setAnimation(0, 'animation', false);
|
||||
// let maliao = this.featureBuyNode.getChildByName('3_4').getComponent(sp.Skeleton);
|
||||
// maliao.setAnimation(0, 'animation', false);
|
||||
this.scheduleOnce(() => {
|
||||
let zhuankuai = this.featureBuyNode.getChildByName('3_3').getComponent(sp.Skeleton);
|
||||
zhuankuai.setAnimation(0, '2', false);
|
||||
// let zhuankuai = this.featureBuyNode.getChildByName('3_3').getComponent(sp.Skeleton);
|
||||
// zhuankuai.setAnimation(0, '2', false);
|
||||
|
||||
let goldSpine = this.featureBuyNode.getChildByName('3_1').getComponent(sp.Skeleton);
|
||||
goldSpine.setAnimation(0, '2', false);
|
||||
goldSpine.setCompleteListener(() => {
|
||||
goldSpine.setAnimation(0, '1', true);
|
||||
goldSpine.setCompleteListener(null);
|
||||
let scp = null;
|
||||
UIManager.instance.showPopupDynamic('FeatureBuyPopUp', 'Prefab/FeatureBuyPopUp', 'Game', (prefab) => {
|
||||
let main = prefab.getChildByName('main');
|
||||
scp = prefab.getComponent(FeatureBuyPopup);
|
||||
scp.show();
|
||||
let freeNeedCount = main.getChildByName('buyFreeSpin').getChildByName('needCount');
|
||||
freeNeedCount.getComponent(Label).string = `$${gold2cash(GameDataManager.instance.curBet * 100)}`;
|
||||
// let goldSpine = this.featureBuyNode.getChildByName('3_1').getComponent(sp.Skeleton);
|
||||
// goldSpine.setAnimation(0, '2', false);
|
||||
// goldSpine.setCompleteListener(() => {
|
||||
// goldSpine.setAnimation(0, '1', true);
|
||||
// goldSpine.setCompleteListener(null);
|
||||
let scp = null;
|
||||
UIManager.instance.showPopupDynamic('FeatureBuyPopUp', 'Prefab/FeatureBuyPopUp', 'Game', (prefab) => {
|
||||
let main = prefab.getChildByName('main');
|
||||
scp = prefab.getComponent(FeatureBuyPopup);
|
||||
scp.show();
|
||||
let freeNeedCount = main.getChildByName('needCount');
|
||||
freeNeedCount.getComponent(Label).string = `$${gold2cash(GameDataManager.instance.curBet * 100)}`;
|
||||
}, (prefab) => {
|
||||
|
||||
let superFreeNeedCount = main.getChildByName('buySuperFreeSpin').getChildByName('needCount');
|
||||
superFreeNeedCount.getComponent(Label).string = `$${gold2cash(GameDataManager.instance.curBet * 500)}`;
|
||||
}, (prefab) => {
|
||||
|
||||
}, () => {
|
||||
let buyType = scp.BuyType;
|
||||
this.node.emit(SLOT_GAME_EVENT.FEATURE_BUY, buyType);
|
||||
this.setBtnEnable(this.featureBuyNode, false);
|
||||
this.setBtnEnable(this.doubleWinBtnNode, false);
|
||||
AudioManager.instance.playSFX('Click_Small_Game_Start');
|
||||
}, () => {
|
||||
this.setBtnEnable(this.featureBuyNode, true);
|
||||
this.setBtnEnable(this.doubleWinBtnNode, true);
|
||||
AudioManager.instance.playSFX('Click_Small_Game_Cancel');
|
||||
});
|
||||
}, () => {
|
||||
let buyType = scp.BuyType;
|
||||
this.node.emit(SLOT_GAME_EVENT.FEATURE_BUY, buyType);
|
||||
this.setBtnEnable(this.featureBuyNode, false);
|
||||
this.setBtnEnable(this.doubleWinBtnNode.getChildByName('pt_11'), false);
|
||||
AudioManager.instance.playSFX('Click_Small_Game_Start');
|
||||
}, () => {
|
||||
this.setBtnEnable(this.featureBuyNode, true);
|
||||
this.setBtnEnable(this.doubleWinBtnNode.getChildByName('pt_11'), true);
|
||||
AudioManager.instance.playSFX('Click_Small_Game_Cancel');
|
||||
});
|
||||
// });
|
||||
|
||||
let flower = this.featureBuyNode.getChildByName('3_2').getComponent(sp.Skeleton);
|
||||
flower.setAnimation(0, 'animation', false);
|
||||
|
||||
@ -72,6 +72,7 @@ export class I18nManager {
|
||||
'FREESPIN2',
|
||||
'FREESPIN4',
|
||||
'FREESPIN5',
|
||||
'Feature_buy',
|
||||
'FSFS',
|
||||
'logo1',
|
||||
'Normal1',
|
||||
|
||||
@ -82,10 +82,10 @@ export class UIManager {
|
||||
}
|
||||
|
||||
let registerEvent = () => {
|
||||
if (okBtn) okBtn.off(Node.EventType.TOUCH_START);
|
||||
if (closeBtn) closeBtn.off(Node.EventType.TOUCH_START);
|
||||
if (okBtn) okBtn.on(Node.EventType.TOUCH_START, handleOkBtn);
|
||||
if (closeBtn) closeBtn.on(Node.EventType.TOUCH_START, handleCloseBtn);
|
||||
if (okBtn) okBtn.off(Node.EventType.TOUCH_END);
|
||||
if (closeBtn) closeBtn.off(Node.EventType.TOUCH_END);
|
||||
if (okBtn) okBtn.on(Node.EventType.TOUCH_END, handleOkBtn);
|
||||
if (closeBtn) closeBtn.on(Node.EventType.TOUCH_END, handleCloseBtn);
|
||||
}
|
||||
|
||||
|
||||
|
||||
BIN
assets/resources/i18nSprite2/da/Feature_buy.png
Normal file
|
After Width: | Height: | Size: 966 KiB |
134
assets/resources/i18nSprite2/da/Feature_buy.png.meta
Normal file
@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "c0dd2b4f-8102-459c-bd53-65aa9f8171cf",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "c0dd2b4f-8102-459c-bd53-65aa9f8171cf@6c48a",
|
||||
"displayName": "Feature_buy",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "c0dd2b4f-8102-459c-bd53-65aa9f8171cf",
|
||||
"isUuid": true,
|
||||
"visible": false,
|
||||
"minfilter": "linear",
|
||||
"magfilter": "linear",
|
||||
"mipfilter": "none",
|
||||
"anisotropy": 0
|
||||
},
|
||||
"ver": "1.0.22",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
},
|
||||
"f9941": {
|
||||
"importer": "sprite-frame",
|
||||
"uuid": "c0dd2b4f-8102-459c-bd53-65aa9f8171cf@f9941",
|
||||
"displayName": "Feature_buy",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 991,
|
||||
"height": 249,
|
||||
"rawWidth": 991,
|
||||
"rawHeight": 249,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-495.5,
|
||||
-124.5,
|
||||
0,
|
||||
495.5,
|
||||
-124.5,
|
||||
0,
|
||||
-495.5,
|
||||
124.5,
|
||||
0,
|
||||
495.5,
|
||||
124.5,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
249,
|
||||
991,
|
||||
249,
|
||||
0,
|
||||
0,
|
||||
991,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-495.5,
|
||||
-124.5,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
495.5,
|
||||
124.5,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "c0dd2b4f-8102-459c-bd53-65aa9f8171cf@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "c0dd2b4f-8102-459c-bd53-65aa9f8171cf@6c48a"
|
||||
}
|
||||
}
|
||||
BIN
assets/resources/i18nSprite2/de/Feature_buy.png
Normal file
|
After Width: | Height: | Size: 1.1 MiB |
134
assets/resources/i18nSprite2/de/Feature_buy.png.meta
Normal file
@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "afdf3928-2dd3-460a-9baf-8c9070dd8621",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "afdf3928-2dd3-460a-9baf-8c9070dd8621@6c48a",
|
||||
"displayName": "Feature_buy",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "afdf3928-2dd3-460a-9baf-8c9070dd8621",
|
||||
"isUuid": true,
|
||||
"visible": false,
|
||||
"minfilter": "linear",
|
||||
"magfilter": "linear",
|
||||
"mipfilter": "none",
|
||||
"anisotropy": 0
|
||||
},
|
||||
"ver": "1.0.22",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
},
|
||||
"f9941": {
|
||||
"importer": "sprite-frame",
|
||||
"uuid": "afdf3928-2dd3-460a-9baf-8c9070dd8621@f9941",
|
||||
"displayName": "Feature_buy",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 1014,
|
||||
"height": 291,
|
||||
"rawWidth": 1014,
|
||||
"rawHeight": 291,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-507,
|
||||
-145.5,
|
||||
0,
|
||||
507,
|
||||
-145.5,
|
||||
0,
|
||||
-507,
|
||||
145.5,
|
||||
0,
|
||||
507,
|
||||
145.5,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
291,
|
||||
1014,
|
||||
291,
|
||||
0,
|
||||
0,
|
||||
1014,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-507,
|
||||
-145.5,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
507,
|
||||
145.5,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "afdf3928-2dd3-460a-9baf-8c9070dd8621@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "afdf3928-2dd3-460a-9baf-8c9070dd8621@6c48a"
|
||||
}
|
||||
}
|
||||
BIN
assets/resources/i18nSprite2/en/Feature_buy.png
Normal file
|
After Width: | Height: | Size: 1.2 MiB |
134
assets/resources/i18nSprite2/en/Feature_buy.png.meta
Normal file
@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "e9825a58-860d-4d2d-9962-5be009fc64f2",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "e9825a58-860d-4d2d-9962-5be009fc64f2@6c48a",
|
||||
"displayName": "Feature_buy",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "e9825a58-860d-4d2d-9962-5be009fc64f2",
|
||||
"isUuid": true,
|
||||
"visible": false,
|
||||
"minfilter": "linear",
|
||||
"magfilter": "linear",
|
||||
"mipfilter": "none",
|
||||
"anisotropy": 0
|
||||
},
|
||||
"ver": "1.0.22",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
},
|
||||
"f9941": {
|
||||
"importer": "sprite-frame",
|
||||
"uuid": "e9825a58-860d-4d2d-9962-5be009fc64f2@f9941",
|
||||
"displayName": "Feature_buy",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 996,
|
||||
"height": 311,
|
||||
"rawWidth": 996,
|
||||
"rawHeight": 311,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-498,
|
||||
-155.5,
|
||||
0,
|
||||
498,
|
||||
-155.5,
|
||||
0,
|
||||
-498,
|
||||
155.5,
|
||||
0,
|
||||
498,
|
||||
155.5,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
311,
|
||||
996,
|
||||
311,
|
||||
0,
|
||||
0,
|
||||
996,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-498,
|
||||
-155.5,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
498,
|
||||
155.5,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "e9825a58-860d-4d2d-9962-5be009fc64f2@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "e9825a58-860d-4d2d-9962-5be009fc64f2@6c48a"
|
||||
}
|
||||
}
|
||||
BIN
assets/resources/i18nSprite2/es/Feature_buy.png
Normal file
|
After Width: | Height: | Size: 1.1 MiB |
134
assets/resources/i18nSprite2/es/Feature_buy.png.meta
Normal file
@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "780a0c3b-4d36-4bd9-8af0-d26dc176c07e",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "780a0c3b-4d36-4bd9-8af0-d26dc176c07e@6c48a",
|
||||
"displayName": "Feature_buy",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "780a0c3b-4d36-4bd9-8af0-d26dc176c07e",
|
||||
"isUuid": true,
|
||||
"visible": false,
|
||||
"minfilter": "linear",
|
||||
"magfilter": "linear",
|
||||
"mipfilter": "none",
|
||||
"anisotropy": 0
|
||||
},
|
||||
"ver": "1.0.22",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
},
|
||||
"f9941": {
|
||||
"importer": "sprite-frame",
|
||||
"uuid": "780a0c3b-4d36-4bd9-8af0-d26dc176c07e@f9941",
|
||||
"displayName": "Feature_buy",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 1018,
|
||||
"height": 274,
|
||||
"rawWidth": 1018,
|
||||
"rawHeight": 274,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-509,
|
||||
-137,
|
||||
0,
|
||||
509,
|
||||
-137,
|
||||
0,
|
||||
-509,
|
||||
137,
|
||||
0,
|
||||
509,
|
||||
137,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
274,
|
||||
1018,
|
||||
274,
|
||||
0,
|
||||
0,
|
||||
1018,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-509,
|
||||
-137,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
509,
|
||||
137,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "780a0c3b-4d36-4bd9-8af0-d26dc176c07e@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "780a0c3b-4d36-4bd9-8af0-d26dc176c07e@6c48a"
|
||||
}
|
||||
}
|
||||
BIN
assets/resources/i18nSprite2/fi/Feature_buy.png
Normal file
|
After Width: | Height: | Size: 873 KiB |
134
assets/resources/i18nSprite2/fi/Feature_buy.png.meta
Normal file
@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "37966607-8bf8-4972-8b3d-f8ca2c71f9aa",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "37966607-8bf8-4972-8b3d-f8ca2c71f9aa@6c48a",
|
||||
"displayName": "Feature_buy",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "37966607-8bf8-4972-8b3d-f8ca2c71f9aa",
|
||||
"isUuid": true,
|
||||
"visible": false,
|
||||
"minfilter": "linear",
|
||||
"magfilter": "linear",
|
||||
"mipfilter": "none",
|
||||
"anisotropy": 0
|
||||
},
|
||||
"ver": "1.0.22",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
},
|
||||
"f9941": {
|
||||
"importer": "sprite-frame",
|
||||
"uuid": "37966607-8bf8-4972-8b3d-f8ca2c71f9aa@f9941",
|
||||
"displayName": "Feature_buy",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 1028,
|
||||
"height": 217,
|
||||
"rawWidth": 1028,
|
||||
"rawHeight": 217,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-514,
|
||||
-108.5,
|
||||
0,
|
||||
514,
|
||||
-108.5,
|
||||
0,
|
||||
-514,
|
||||
108.5,
|
||||
0,
|
||||
514,
|
||||
108.5,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
217,
|
||||
1028,
|
||||
217,
|
||||
0,
|
||||
0,
|
||||
1028,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-514,
|
||||
-108.5,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
514,
|
||||
108.5,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "37966607-8bf8-4972-8b3d-f8ca2c71f9aa@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "37966607-8bf8-4972-8b3d-f8ca2c71f9aa@6c48a"
|
||||
}
|
||||
}
|
||||
BIN
assets/resources/i18nSprite2/fr/Feature_buy.png
Normal file
|
After Width: | Height: | Size: 818 KiB |
134
assets/resources/i18nSprite2/fr/Feature_buy.png.meta
Normal file
@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "e7649c1f-7084-4ae1-9d83-155b977a99f4",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "e7649c1f-7084-4ae1-9d83-155b977a99f4@6c48a",
|
||||
"displayName": "Feature_buy",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "e7649c1f-7084-4ae1-9d83-155b977a99f4",
|
||||
"isUuid": true,
|
||||
"visible": false,
|
||||
"minfilter": "linear",
|
||||
"magfilter": "linear",
|
||||
"mipfilter": "none",
|
||||
"anisotropy": 0
|
||||
},
|
||||
"ver": "1.0.22",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
},
|
||||
"f9941": {
|
||||
"importer": "sprite-frame",
|
||||
"uuid": "e7649c1f-7084-4ae1-9d83-155b977a99f4@f9941",
|
||||
"displayName": "Feature_buy",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 1019,
|
||||
"height": 205,
|
||||
"rawWidth": 1019,
|
||||
"rawHeight": 205,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-509.5,
|
||||
-102.5,
|
||||
0,
|
||||
509.5,
|
||||
-102.5,
|
||||
0,
|
||||
-509.5,
|
||||
102.5,
|
||||
0,
|
||||
509.5,
|
||||
102.5,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
205,
|
||||
1019,
|
||||
205,
|
||||
0,
|
||||
0,
|
||||
1019,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-509.5,
|
||||
-102.5,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
509.5,
|
||||
102.5,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "e7649c1f-7084-4ae1-9d83-155b977a99f4@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "e7649c1f-7084-4ae1-9d83-155b977a99f4@6c48a"
|
||||
}
|
||||
}
|
||||
BIN
assets/resources/i18nSprite2/id/Feature_buy.png
Normal file
|
After Width: | Height: | Size: 982 KiB |
134
assets/resources/i18nSprite2/id/Feature_buy.png.meta
Normal file
@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "24191b27-c955-4aca-bd8b-f7c6003ee20b",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "24191b27-c955-4aca-bd8b-f7c6003ee20b@6c48a",
|
||||
"displayName": "Feature_buy",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "24191b27-c955-4aca-bd8b-f7c6003ee20b",
|
||||
"isUuid": true,
|
||||
"visible": false,
|
||||
"minfilter": "linear",
|
||||
"magfilter": "linear",
|
||||
"mipfilter": "none",
|
||||
"anisotropy": 0
|
||||
},
|
||||
"ver": "1.0.22",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
},
|
||||
"f9941": {
|
||||
"importer": "sprite-frame",
|
||||
"uuid": "24191b27-c955-4aca-bd8b-f7c6003ee20b@f9941",
|
||||
"displayName": "Feature_buy",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 868,
|
||||
"height": 289,
|
||||
"rawWidth": 868,
|
||||
"rawHeight": 289,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-434,
|
||||
-144.5,
|
||||
0,
|
||||
434,
|
||||
-144.5,
|
||||
0,
|
||||
-434,
|
||||
144.5,
|
||||
0,
|
||||
434,
|
||||
144.5,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
289,
|
||||
868,
|
||||
289,
|
||||
0,
|
||||
0,
|
||||
868,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-434,
|
||||
-144.5,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
434,
|
||||
144.5,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "24191b27-c955-4aca-bd8b-f7c6003ee20b@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "24191b27-c955-4aca-bd8b-f7c6003ee20b@6c48a"
|
||||
}
|
||||
}
|
||||
BIN
assets/resources/i18nSprite2/it/Feature_buy.png
Normal file
|
After Width: | Height: | Size: 833 KiB |
134
assets/resources/i18nSprite2/it/Feature_buy.png.meta
Normal file
@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "92093f6b-a618-4a31-acca-271ea828b79d",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "92093f6b-a618-4a31-acca-271ea828b79d@6c48a",
|
||||
"displayName": "Feature_buy",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "92093f6b-a618-4a31-acca-271ea828b79d",
|
||||
"isUuid": true,
|
||||
"visible": false,
|
||||
"minfilter": "linear",
|
||||
"magfilter": "linear",
|
||||
"mipfilter": "none",
|
||||
"anisotropy": 0
|
||||
},
|
||||
"ver": "1.0.22",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
},
|
||||
"f9941": {
|
||||
"importer": "sprite-frame",
|
||||
"uuid": "92093f6b-a618-4a31-acca-271ea828b79d@f9941",
|
||||
"displayName": "Feature_buy",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 1003,
|
||||
"height": 212,
|
||||
"rawWidth": 1003,
|
||||
"rawHeight": 212,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-501.5,
|
||||
-106,
|
||||
0,
|
||||
501.5,
|
||||
-106,
|
||||
0,
|
||||
-501.5,
|
||||
106,
|
||||
0,
|
||||
501.5,
|
||||
106,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
212,
|
||||
1003,
|
||||
212,
|
||||
0,
|
||||
0,
|
||||
1003,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-501.5,
|
||||
-106,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
501.5,
|
||||
106,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "92093f6b-a618-4a31-acca-271ea828b79d@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "92093f6b-a618-4a31-acca-271ea828b79d@6c48a"
|
||||
}
|
||||
}
|
||||
BIN
assets/resources/i18nSprite2/ja/Feature_buy.png
Normal file
|
After Width: | Height: | Size: 864 KiB |
134
assets/resources/i18nSprite2/ja/Feature_buy.png.meta
Normal file
@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "12230d2b-9587-4c06-9583-889b258dabd5",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "12230d2b-9587-4c06-9583-889b258dabd5@6c48a",
|
||||
"displayName": "Feature_buy",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "12230d2b-9587-4c06-9583-889b258dabd5",
|
||||
"isUuid": true,
|
||||
"visible": false,
|
||||
"minfilter": "linear",
|
||||
"magfilter": "linear",
|
||||
"mipfilter": "none",
|
||||
"anisotropy": 0
|
||||
},
|
||||
"ver": "1.0.22",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
},
|
||||
"f9941": {
|
||||
"importer": "sprite-frame",
|
||||
"uuid": "12230d2b-9587-4c06-9583-889b258dabd5@f9941",
|
||||
"displayName": "Feature_buy",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 1008,
|
||||
"height": 219,
|
||||
"rawWidth": 1008,
|
||||
"rawHeight": 219,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-504,
|
||||
-109.5,
|
||||
0,
|
||||
504,
|
||||
-109.5,
|
||||
0,
|
||||
-504,
|
||||
109.5,
|
||||
0,
|
||||
504,
|
||||
109.5,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
219,
|
||||
1008,
|
||||
219,
|
||||
0,
|
||||
0,
|
||||
1008,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-504,
|
||||
-109.5,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
504,
|
||||
109.5,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "12230d2b-9587-4c06-9583-889b258dabd5@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "12230d2b-9587-4c06-9583-889b258dabd5@6c48a"
|
||||
}
|
||||
}
|
||||
BIN
assets/resources/i18nSprite2/ko/Feature_buy.png
Normal file
|
After Width: | Height: | Size: 702 KiB |
134
assets/resources/i18nSprite2/ko/Feature_buy.png.meta
Normal file
@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "89a407ea-574d-41d6-976a-e960ca38e726",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "89a407ea-574d-41d6-976a-e960ca38e726@6c48a",
|
||||
"displayName": "Feature_buy",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "89a407ea-574d-41d6-976a-e960ca38e726",
|
||||
"isUuid": true,
|
||||
"visible": false,
|
||||
"minfilter": "linear",
|
||||
"magfilter": "linear",
|
||||
"mipfilter": "none",
|
||||
"anisotropy": 0
|
||||
},
|
||||
"ver": "1.0.22",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
},
|
||||
"f9941": {
|
||||
"importer": "sprite-frame",
|
||||
"uuid": "89a407ea-574d-41d6-976a-e960ca38e726@f9941",
|
||||
"displayName": "Feature_buy",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 720,
|
||||
"height": 249,
|
||||
"rawWidth": 720,
|
||||
"rawHeight": 249,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-360,
|
||||
-124.5,
|
||||
0,
|
||||
360,
|
||||
-124.5,
|
||||
0,
|
||||
-360,
|
||||
124.5,
|
||||
0,
|
||||
360,
|
||||
124.5,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
249,
|
||||
720,
|
||||
249,
|
||||
0,
|
||||
0,
|
||||
720,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-360,
|
||||
-124.5,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
360,
|
||||
124.5,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "89a407ea-574d-41d6-976a-e960ca38e726@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "89a407ea-574d-41d6-976a-e960ca38e726@6c48a"
|
||||
}
|
||||
}
|
||||
BIN
assets/resources/i18nSprite2/my/Feature_buy.png
Normal file
|
After Width: | Height: | Size: 1.1 MiB |
134
assets/resources/i18nSprite2/my/Feature_buy.png.meta
Normal file
@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "ff26ae7e-f655-4533-ae60-29e016965a04",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "ff26ae7e-f655-4533-ae60-29e016965a04@6c48a",
|
||||
"displayName": "Feature_buy",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "ff26ae7e-f655-4533-ae60-29e016965a04",
|
||||
"isUuid": true,
|
||||
"visible": false,
|
||||
"minfilter": "linear",
|
||||
"magfilter": "linear",
|
||||
"mipfilter": "none",
|
||||
"anisotropy": 0
|
||||
},
|
||||
"ver": "1.0.22",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
},
|
||||
"f9941": {
|
||||
"importer": "sprite-frame",
|
||||
"uuid": "ff26ae7e-f655-4533-ae60-29e016965a04@f9941",
|
||||
"displayName": "Feature_buy",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 986,
|
||||
"height": 298,
|
||||
"rawWidth": 986,
|
||||
"rawHeight": 298,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-493,
|
||||
-149,
|
||||
0,
|
||||
493,
|
||||
-149,
|
||||
0,
|
||||
-493,
|
||||
149,
|
||||
0,
|
||||
493,
|
||||
149,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
298,
|
||||
986,
|
||||
298,
|
||||
0,
|
||||
0,
|
||||
986,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-493,
|
||||
-149,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
493,
|
||||
149,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "ff26ae7e-f655-4533-ae60-29e016965a04@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "ff26ae7e-f655-4533-ae60-29e016965a04@6c48a"
|
||||
}
|
||||
}
|
||||
BIN
assets/resources/i18nSprite2/nl/Feature_buy.png
Normal file
|
After Width: | Height: | Size: 967 KiB |
134
assets/resources/i18nSprite2/nl/Feature_buy.png.meta
Normal file
@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "39c67048-8f7f-45cf-80e1-48a3012e2dc9",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "39c67048-8f7f-45cf-80e1-48a3012e2dc9@6c48a",
|
||||
"displayName": "Feature_buy",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "39c67048-8f7f-45cf-80e1-48a3012e2dc9",
|
||||
"isUuid": true,
|
||||
"visible": false,
|
||||
"minfilter": "linear",
|
||||
"magfilter": "linear",
|
||||
"mipfilter": "none",
|
||||
"anisotropy": 0
|
||||
},
|
||||
"ver": "1.0.22",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
},
|
||||
"f9941": {
|
||||
"importer": "sprite-frame",
|
||||
"uuid": "39c67048-8f7f-45cf-80e1-48a3012e2dc9@f9941",
|
||||
"displayName": "Feature_buy",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 1034,
|
||||
"height": 239,
|
||||
"rawWidth": 1034,
|
||||
"rawHeight": 239,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-517,
|
||||
-119.5,
|
||||
0,
|
||||
517,
|
||||
-119.5,
|
||||
0,
|
||||
-517,
|
||||
119.5,
|
||||
0,
|
||||
517,
|
||||
119.5,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
239,
|
||||
1034,
|
||||
239,
|
||||
0,
|
||||
0,
|
||||
1034,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-517,
|
||||
-119.5,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
517,
|
||||
119.5,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "39c67048-8f7f-45cf-80e1-48a3012e2dc9@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "39c67048-8f7f-45cf-80e1-48a3012e2dc9@6c48a"
|
||||
}
|
||||
}
|
||||
BIN
assets/resources/i18nSprite2/pt/Feature_buy.png
Normal file
|
After Width: | Height: | Size: 955 KiB |
134
assets/resources/i18nSprite2/pt/Feature_buy.png.meta
Normal file
@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "b0b1429f-8c2f-4159-abfb-4adcf4860c65",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "b0b1429f-8c2f-4159-abfb-4adcf4860c65@6c48a",
|
||||
"displayName": "Feature_buy",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "b0b1429f-8c2f-4159-abfb-4adcf4860c65",
|
||||
"isUuid": true,
|
||||
"visible": false,
|
||||
"minfilter": "linear",
|
||||
"magfilter": "linear",
|
||||
"mipfilter": "none",
|
||||
"anisotropy": 0
|
||||
},
|
||||
"ver": "1.0.22",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
},
|
||||
"f9941": {
|
||||
"importer": "sprite-frame",
|
||||
"uuid": "b0b1429f-8c2f-4159-abfb-4adcf4860c65@f9941",
|
||||
"displayName": "Feature_buy",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 1047,
|
||||
"height": 233,
|
||||
"rawWidth": 1047,
|
||||
"rawHeight": 233,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-523.5,
|
||||
-116.5,
|
||||
0,
|
||||
523.5,
|
||||
-116.5,
|
||||
0,
|
||||
-523.5,
|
||||
116.5,
|
||||
0,
|
||||
523.5,
|
||||
116.5,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
233,
|
||||
1047,
|
||||
233,
|
||||
0,
|
||||
0,
|
||||
1047,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-523.5,
|
||||
-116.5,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
523.5,
|
||||
116.5,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "b0b1429f-8c2f-4159-abfb-4adcf4860c65@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "b0b1429f-8c2f-4159-abfb-4adcf4860c65@6c48a"
|
||||
}
|
||||
}
|
||||
BIN
assets/resources/i18nSprite2/ro/Feature_buy.png
Normal file
|
After Width: | Height: | Size: 941 KiB |
134
assets/resources/i18nSprite2/ro/Feature_buy.png.meta
Normal file
@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "83eb3ff8-dc56-4388-87ca-8ddc735a32e6",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "83eb3ff8-dc56-4388-87ca-8ddc735a32e6@6c48a",
|
||||
"displayName": "Feature_buy",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "83eb3ff8-dc56-4388-87ca-8ddc735a32e6",
|
||||
"isUuid": true,
|
||||
"visible": false,
|
||||
"minfilter": "linear",
|
||||
"magfilter": "linear",
|
||||
"mipfilter": "none",
|
||||
"anisotropy": 0
|
||||
},
|
||||
"ver": "1.0.22",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
},
|
||||
"f9941": {
|
||||
"importer": "sprite-frame",
|
||||
"uuid": "83eb3ff8-dc56-4388-87ca-8ddc735a32e6@f9941",
|
||||
"displayName": "Feature_buy",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 1032,
|
||||
"height": 233,
|
||||
"rawWidth": 1032,
|
||||
"rawHeight": 233,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-516,
|
||||
-116.5,
|
||||
0,
|
||||
516,
|
||||
-116.5,
|
||||
0,
|
||||
-516,
|
||||
116.5,
|
||||
0,
|
||||
516,
|
||||
116.5,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
233,
|
||||
1032,
|
||||
233,
|
||||
0,
|
||||
0,
|
||||
1032,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-516,
|
||||
-116.5,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
516,
|
||||
116.5,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "83eb3ff8-dc56-4388-87ca-8ddc735a32e6@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "83eb3ff8-dc56-4388-87ca-8ddc735a32e6@6c48a"
|
||||
}
|
||||
}
|
||||
BIN
assets/resources/i18nSprite2/ru/Feature_buy.png
Normal file
|
After Width: | Height: | Size: 983 KiB |
134
assets/resources/i18nSprite2/ru/Feature_buy.png.meta
Normal file
@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "7ae8add4-25e9-49b9-8219-80e6cd80f4c3",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "7ae8add4-25e9-49b9-8219-80e6cd80f4c3@6c48a",
|
||||
"displayName": "Feature_buy",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "7ae8add4-25e9-49b9-8219-80e6cd80f4c3",
|
||||
"isUuid": true,
|
||||
"visible": false,
|
||||
"minfilter": "linear",
|
||||
"magfilter": "linear",
|
||||
"mipfilter": "none",
|
||||
"anisotropy": 0
|
||||
},
|
||||
"ver": "1.0.22",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
},
|
||||
"f9941": {
|
||||
"importer": "sprite-frame",
|
||||
"uuid": "7ae8add4-25e9-49b9-8219-80e6cd80f4c3@f9941",
|
||||
"displayName": "Feature_buy",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 1038,
|
||||
"height": 242,
|
||||
"rawWidth": 1038,
|
||||
"rawHeight": 242,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-519,
|
||||
-121,
|
||||
0,
|
||||
519,
|
||||
-121,
|
||||
0,
|
||||
-519,
|
||||
121,
|
||||
0,
|
||||
519,
|
||||
121,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
242,
|
||||
1038,
|
||||
242,
|
||||
0,
|
||||
0,
|
||||
1038,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-519,
|
||||
-121,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
519,
|
||||
121,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "7ae8add4-25e9-49b9-8219-80e6cd80f4c3@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "7ae8add4-25e9-49b9-8219-80e6cd80f4c3@6c48a"
|
||||
}
|
||||
}
|
||||
BIN
assets/resources/i18nSprite2/sv/Feature_buy.png
Normal file
|
After Width: | Height: | Size: 1016 KiB |
134
assets/resources/i18nSprite2/sv/Feature_buy.png.meta
Normal file
@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "956cdd78-b901-43b0-ac1f-bdb31e0b81ab",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "956cdd78-b901-43b0-ac1f-bdb31e0b81ab@6c48a",
|
||||
"displayName": "Feature_buy",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "956cdd78-b901-43b0-ac1f-bdb31e0b81ab",
|
||||
"isUuid": true,
|
||||
"visible": false,
|
||||
"minfilter": "linear",
|
||||
"magfilter": "linear",
|
||||
"mipfilter": "none",
|
||||
"anisotropy": 0
|
||||
},
|
||||
"ver": "1.0.22",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
},
|
||||
"f9941": {
|
||||
"importer": "sprite-frame",
|
||||
"uuid": "956cdd78-b901-43b0-ac1f-bdb31e0b81ab@f9941",
|
||||
"displayName": "Feature_buy",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 958,
|
||||
"height": 271,
|
||||
"rawWidth": 958,
|
||||
"rawHeight": 271,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-479,
|
||||
-135.5,
|
||||
0,
|
||||
479,
|
||||
-135.5,
|
||||
0,
|
||||
-479,
|
||||
135.5,
|
||||
0,
|
||||
479,
|
||||
135.5,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
271,
|
||||
958,
|
||||
271,
|
||||
0,
|
||||
0,
|
||||
958,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-479,
|
||||
-135.5,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
479,
|
||||
135.5,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "956cdd78-b901-43b0-ac1f-bdb31e0b81ab@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "956cdd78-b901-43b0-ac1f-bdb31e0b81ab@6c48a"
|
||||
}
|
||||
}
|
||||
BIN
assets/resources/i18nSprite2/th/Feature_buy.png
Normal file
|
After Width: | Height: | Size: 1.3 MiB |
134
assets/resources/i18nSprite2/th/Feature_buy.png.meta
Normal file
@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "d37b487d-b015-491c-b7ab-e04b48cd721c",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "d37b487d-b015-491c-b7ab-e04b48cd721c@6c48a",
|
||||
"displayName": "Feature_buy",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "d37b487d-b015-491c-b7ab-e04b48cd721c",
|
||||
"isUuid": true,
|
||||
"visible": false,
|
||||
"minfilter": "linear",
|
||||
"magfilter": "linear",
|
||||
"mipfilter": "none",
|
||||
"anisotropy": 0
|
||||
},
|
||||
"ver": "1.0.22",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
},
|
||||
"f9941": {
|
||||
"importer": "sprite-frame",
|
||||
"uuid": "d37b487d-b015-491c-b7ab-e04b48cd721c@f9941",
|
||||
"displayName": "Feature_buy",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 921,
|
||||
"height": 363,
|
||||
"rawWidth": 921,
|
||||
"rawHeight": 363,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-460.5,
|
||||
-181.5,
|
||||
0,
|
||||
460.5,
|
||||
-181.5,
|
||||
0,
|
||||
-460.5,
|
||||
181.5,
|
||||
0,
|
||||
460.5,
|
||||
181.5,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
363,
|
||||
921,
|
||||
363,
|
||||
0,
|
||||
0,
|
||||
921,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-460.5,
|
||||
-181.5,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
460.5,
|
||||
181.5,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "d37b487d-b015-491c-b7ab-e04b48cd721c@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "d37b487d-b015-491c-b7ab-e04b48cd721c@6c48a"
|
||||
}
|
||||
}
|
||||
BIN
assets/resources/i18nSprite2/tr/Feature_buy.png
Normal file
|
After Width: | Height: | Size: 1013 KiB |
134
assets/resources/i18nSprite2/tr/Feature_buy.png.meta
Normal file
@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "a1af1c91-a0da-47c5-bf02-90731a73e925",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "a1af1c91-a0da-47c5-bf02-90731a73e925@6c48a",
|
||||
"displayName": "Feature_buy",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "a1af1c91-a0da-47c5-bf02-90731a73e925",
|
||||
"isUuid": true,
|
||||
"visible": false,
|
||||
"minfilter": "linear",
|
||||
"magfilter": "linear",
|
||||
"mipfilter": "none",
|
||||
"anisotropy": 0
|
||||
},
|
||||
"ver": "1.0.22",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
},
|
||||
"f9941": {
|
||||
"importer": "sprite-frame",
|
||||
"uuid": "a1af1c91-a0da-47c5-bf02-90731a73e925@f9941",
|
||||
"displayName": "Feature_buy",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 992,
|
||||
"height": 261,
|
||||
"rawWidth": 992,
|
||||
"rawHeight": 261,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-496,
|
||||
-130.5,
|
||||
0,
|
||||
496,
|
||||
-130.5,
|
||||
0,
|
||||
-496,
|
||||
130.5,
|
||||
0,
|
||||
496,
|
||||
130.5,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
261,
|
||||
992,
|
||||
261,
|
||||
0,
|
||||
0,
|
||||
992,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-496,
|
||||
-130.5,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
496,
|
||||
130.5,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "a1af1c91-a0da-47c5-bf02-90731a73e925@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "a1af1c91-a0da-47c5-bf02-90731a73e925@6c48a"
|
||||
}
|
||||
}
|
||||
BIN
assets/resources/i18nSprite2/vi/Feature_buy.png
Normal file
|
After Width: | Height: | Size: 1.2 MiB |
134
assets/resources/i18nSprite2/vi/Feature_buy.png.meta
Normal file
@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "fdcaab03-591c-40ae-b32b-f36662731bec",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "fdcaab03-591c-40ae-b32b-f36662731bec@6c48a",
|
||||
"displayName": "Feature_buy",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "fdcaab03-591c-40ae-b32b-f36662731bec",
|
||||
"isUuid": true,
|
||||
"visible": false,
|
||||
"minfilter": "linear",
|
||||
"magfilter": "linear",
|
||||
"mipfilter": "none",
|
||||
"anisotropy": 0
|
||||
},
|
||||
"ver": "1.0.22",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
},
|
||||
"f9941": {
|
||||
"importer": "sprite-frame",
|
||||
"uuid": "fdcaab03-591c-40ae-b32b-f36662731bec@f9941",
|
||||
"displayName": "Feature_buy",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 1060,
|
||||
"height": 291,
|
||||
"rawWidth": 1060,
|
||||
"rawHeight": 291,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-530,
|
||||
-145.5,
|
||||
0,
|
||||
530,
|
||||
-145.5,
|
||||
0,
|
||||
-530,
|
||||
145.5,
|
||||
0,
|
||||
530,
|
||||
145.5,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
291,
|
||||
1060,
|
||||
291,
|
||||
0,
|
||||
0,
|
||||
1060,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-530,
|
||||
-145.5,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
530,
|
||||
145.5,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "fdcaab03-591c-40ae-b32b-f36662731bec@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "fdcaab03-591c-40ae-b32b-f36662731bec@6c48a"
|
||||
}
|
||||
}
|
||||
BIN
assets/resources/i18nSprite2/zh/Feature_buy.png
Normal file
|
After Width: | Height: | Size: 912 KiB |
134
assets/resources/i18nSprite2/zh/Feature_buy.png.meta
Normal file
@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "59173169-5593-4d83-8030-b4a7c7ec924f",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "59173169-5593-4d83-8030-b4a7c7ec924f@6c48a",
|
||||
"displayName": "Feature_buy",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "59173169-5593-4d83-8030-b4a7c7ec924f",
|
||||
"isUuid": true,
|
||||
"visible": false,
|
||||
"minfilter": "linear",
|
||||
"magfilter": "linear",
|
||||
"mipfilter": "none",
|
||||
"anisotropy": 0
|
||||
},
|
||||
"ver": "1.0.22",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
},
|
||||
"f9941": {
|
||||
"importer": "sprite-frame",
|
||||
"uuid": "59173169-5593-4d83-8030-b4a7c7ec924f@f9941",
|
||||
"displayName": "Feature_buy",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 983,
|
||||
"height": 237,
|
||||
"rawWidth": 983,
|
||||
"rawHeight": 237,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-491.5,
|
||||
-118.5,
|
||||
0,
|
||||
491.5,
|
||||
-118.5,
|
||||
0,
|
||||
-491.5,
|
||||
118.5,
|
||||
0,
|
||||
491.5,
|
||||
118.5,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
237,
|
||||
983,
|
||||
237,
|
||||
0,
|
||||
0,
|
||||
983,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-491.5,
|
||||
-118.5,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
491.5,
|
||||
118.5,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "59173169-5593-4d83-8030-b4a7c7ec924f@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "59173169-5593-4d83-8030-b4a7c7ec924f@6c48a"
|
||||
}
|
||||
}
|
||||