修改版本
@@ -1,4 +1,4 @@
|
||||
import { _decorator, Node, tween, Vec3, Sprite, Asset, ImageAsset, SpriteFrame, Texture2D, Label, UIOpacity, Animation, math, VideoPlayer, UITransform, VideoClip } from 'cc';
|
||||
import { _decorator, Node, tween, Vec3, Sprite, Asset, ImageAsset, SpriteFrame, Texture2D, Label, UIOpacity, Animation, math, VideoPlayer, UITransform, VideoClip, Color, Button } from 'cc';
|
||||
import BaseView from '../../../../../../extensions/app/assets/base/BaseView';
|
||||
import { PageTips } from '../../tips/native/PageTips';
|
||||
import { app } from 'db://assets/app/app';
|
||||
@@ -14,6 +14,9 @@ const enum M_DIR {
|
||||
COUNTER_CLOCKWISE = 1, /** 逆时针 */
|
||||
}
|
||||
|
||||
/** 默认消耗 */
|
||||
const DEFAULT_COST = 100
|
||||
|
||||
@ccclass('PageMain')
|
||||
export class PageMain extends BaseView {
|
||||
/** 声音按钮 */
|
||||
@@ -22,26 +25,24 @@ export class PageMain extends BaseView {
|
||||
@property(Label) lab_gold: Label = null!;
|
||||
/** 姓名 */
|
||||
@property(Label) lab_name: Label = null!;
|
||||
/** 当前剩余抽奖次数 */
|
||||
@property(Label) remain: Label = null!;
|
||||
/** 中奖提示 */
|
||||
@property(Label) lab_earn: Label = null!;
|
||||
/** 倍率显示 */
|
||||
@property(Label) lab_ante: Label = null!;
|
||||
/** 方向选择 */
|
||||
@property(Node) n_dir: Node[] = [];
|
||||
/** 标签 */
|
||||
@property(Node) sign: Node = null!;
|
||||
/** 方块 */
|
||||
@property(Node) blocks: Node = null!;
|
||||
@property(Node) blocks: Node[] = [];
|
||||
/** 骰子 */
|
||||
@property(Node) dices: Node[] = [];
|
||||
/** 中奖 */
|
||||
@property(Node) rw: Node = null!;
|
||||
/** 未中奖 */
|
||||
@property(Node) norw: Node = null!;
|
||||
/** 购买次数按钮 */
|
||||
@property(Node) btns_buy: Node = null!;
|
||||
/** 开始游戏按钮 */
|
||||
@property(Node) btn_play: Node = null!;
|
||||
/** 开始游戏按钮 */
|
||||
@property(Node) btn_auto: Node = null!;
|
||||
/** 胜利数字 */
|
||||
@property(Node) lab_add: Node = null!;
|
||||
/** 失败数字 */
|
||||
@@ -58,6 +59,9 @@ export class PageMain extends BaseView {
|
||||
@property(Node) ani_dice: Node = null!;
|
||||
/** 骰子总点数 */
|
||||
@property(Node) dice_all: Node = null!;
|
||||
/** 倍数减按钮 */
|
||||
@property(Node) btn_ante_sub: Node = null!;
|
||||
@property(Node) btn_ante_add: Node = null!;
|
||||
/** 失败视频资源 */
|
||||
@property(VideoClip) video_win: VideoClip = null!;
|
||||
@property(VideoClip) video_lose: VideoClip = null!;
|
||||
@@ -71,11 +75,13 @@ export class PageMain extends BaseView {
|
||||
private _game_data: any = null;
|
||||
/** 是否正在连续 */
|
||||
private _is_continuous : boolean = true
|
||||
/** 棋盘数据 */
|
||||
private _board_data: any[] = []
|
||||
/** 消耗倍数索引 */
|
||||
private _ante_index : number = 0
|
||||
/** 倍数数据 */
|
||||
private _ante_data : any[] = null
|
||||
|
||||
/** 方块顺时针顺序,从顶端开始 */
|
||||
private _b_sequence : string[] = [
|
||||
"20","27","24","10","5","15","8","22","30","23","16","12","13","7","17","9","21","26","6","29","19","11","25","14","28","18"
|
||||
];
|
||||
|
||||
/** 标签位置 */
|
||||
private _sign_position: Vec3[] =[
|
||||
@@ -120,11 +126,10 @@ export class PageMain extends BaseView {
|
||||
// 界面打开时的相关逻辑写在这(onShow可被多次调用-它与onHide不成对)
|
||||
onShow(params: any) {
|
||||
this.initUserData()
|
||||
this.swichBuyAndPlay()
|
||||
this.initDir()
|
||||
this.getRwData()
|
||||
this.onClickTips()
|
||||
this.bindVideoEvents()
|
||||
this.getConfig()
|
||||
|
||||
this._canvas = document.createElement('canvas');
|
||||
this._canvas.width = this.video_sprite.getComponent(UITransform).width;
|
||||
@@ -160,15 +165,6 @@ export class PageMain extends BaseView {
|
||||
initUserData(){
|
||||
this.lab_gold.string = USERDATA.coin.toString()
|
||||
this.lab_name.string = USERDATA.name
|
||||
this.remain.string = USERDATA.total_ticket_count.toString()
|
||||
//this.remain.node.active = USERDATA.total_ticket_count > 0
|
||||
Tools.ActChild(this.btn_auto, "auto", this._is_continuous)
|
||||
Tools.ActChild(this.btn_auto, "no_auto", !this._is_continuous)
|
||||
}
|
||||
|
||||
swichBuyAndPlay(){
|
||||
this.btns_buy.active = USERDATA.total_ticket_count <= 0
|
||||
this.btn_play.active = USERDATA.total_ticket_count > 0
|
||||
}
|
||||
|
||||
bindVideoEvents() {
|
||||
@@ -188,23 +184,59 @@ export class PageMain extends BaseView {
|
||||
}
|
||||
}
|
||||
|
||||
getRwData(){
|
||||
Tools.httpReq("game/lotteryPool", {}, (res:any) => {
|
||||
getConfig(){
|
||||
Tools.httpReq("game/anteConfig", {}, (res:any) => {
|
||||
this._ante_data = res
|
||||
// 默认倍数
|
||||
for (let index = 0; index < res.length; index++) {
|
||||
const d = res[index];
|
||||
Tools.SetChildText(this.blocks, String(d.grid_number) + "/num", d.ui_text)
|
||||
const element = res[index];
|
||||
if (element.is_default == 1){
|
||||
this._ante_index = index
|
||||
break
|
||||
}
|
||||
}
|
||||
this.initAnteSet()
|
||||
|
||||
Tools.httpReq("game/lotteryPool", {}, (res:any) => {
|
||||
this._board_data = res
|
||||
this.initBoradData()
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
/** 购买游戏次数 */
|
||||
buyTimes(a : any, d : any){
|
||||
Tools.httpReq("game/buyLotteryTickets", { "count" : d }, (res:any) => {
|
||||
USERDATA.coin = res.coin
|
||||
USERDATA.total_ticket_count = res.total_ticket_count
|
||||
this.swichBuyAndPlay()
|
||||
this.initUserData()
|
||||
})
|
||||
initAnteSet(){
|
||||
let d = this._ante_data[this._ante_index]
|
||||
this.lab_ante.string = d.name
|
||||
this.btn_ante_sub.getComponent(Sprite).grayscale = this._ante_index == 0
|
||||
this.btn_ante_add.getComponent(Sprite).grayscale = this._ante_index == this._ante_data.length - 1
|
||||
}
|
||||
|
||||
btnAnteAdd(){
|
||||
if (this._ante_index < this._ante_data.length - 1) {
|
||||
this._ante_index++
|
||||
this.initAnteSet()
|
||||
this.initBoradData()
|
||||
}
|
||||
}
|
||||
|
||||
btnAnteSub(){
|
||||
if (this._ante_index > 0) {
|
||||
this._ante_index--
|
||||
this.initAnteSet()
|
||||
this.initBoradData()
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
initBoradData(){
|
||||
for (let index = 0; index < this._board_data.length; index++) {
|
||||
const d = this._board_data[index];
|
||||
let num = parseInt(d.ui_text) ? parseInt(d.ui_text) * this._ante_data[this._ante_index].mult : d.ui_text
|
||||
Tools.SetChildText(this.blocks[index], "num", num)
|
||||
Tools.SetChildText(this.blocks[index], "light/num", num)
|
||||
Tools.SetChildText(this.blocks[index], "point", d.grid_number)
|
||||
Tools.SetChildText(this.blocks[index], "light/point", d.grid_number)
|
||||
}
|
||||
}
|
||||
|
||||
chooseDir(d:any, dir: number){
|
||||
@@ -235,37 +267,21 @@ export class PageMain extends BaseView {
|
||||
app.manager.ui.show<PageRewardhistory>({name: 'PageRewardhistory'})
|
||||
}
|
||||
|
||||
btnGameAuto(){
|
||||
this._is_continuous = !this._is_continuous
|
||||
this.initUserData()
|
||||
}
|
||||
|
||||
btnPlayGary(){
|
||||
this.btn_play.getComponent(Sprite).grayscale = true
|
||||
Tools.GetChildComp(this.btn_play, "lab", Sprite).grayscale = true
|
||||
}
|
||||
|
||||
btnPlayWhite(){
|
||||
this.btn_play.getComponent(Sprite).grayscale = false
|
||||
Tools.GetChildComp(this.btn_play, "lab", Sprite).grayscale = false
|
||||
}
|
||||
|
||||
/** 开始游戏 */
|
||||
btnGameStart(){
|
||||
if (this._b_sequence.length != this._sign_position.length) {
|
||||
return app.manager.ui.showToast(Tools.GetLocalized("数据错误"))
|
||||
}
|
||||
if (this._is_playing) return
|
||||
this._is_playing = true
|
||||
this.btnPlayGary()
|
||||
|
||||
this.lab_earn.string = ""
|
||||
|
||||
Tools.httpReq("game/playStart", {
|
||||
"direction" : this._move_dir
|
||||
"direction" : this._move_dir,
|
||||
"ante" : this._ante_data[this._ante_index].mult
|
||||
}, (res:any) => {
|
||||
this._game_data = res
|
||||
this._move_dir = res.direction
|
||||
|
||||
USERDATA.total_ticket_count--
|
||||
USERDATA.coin -= this._ante_data[this._ante_index].mult * DEFAULT_COST
|
||||
this.initUserData()
|
||||
|
||||
let steps = 0
|
||||
@@ -273,8 +289,9 @@ export class PageMain extends BaseView {
|
||||
const element = res.roll_array[i];
|
||||
steps += element
|
||||
}
|
||||
let index:any = this._b_sequence.findIndex(v => v == steps.toString())
|
||||
let b = this.blocks.getChildByName(steps.toString())
|
||||
let index:any = this._board_data.findIndex(v => v.grid_number == steps.toString())
|
||||
console.log("steps", steps, index)
|
||||
let b = this.blocks[index]
|
||||
|
||||
// 计算移动路径
|
||||
let path = this.calculatePath(index, steps);
|
||||
@@ -316,8 +333,6 @@ export class PageMain extends BaseView {
|
||||
USERDATA.total_ticket_count = this._game_data.total_ticket_count
|
||||
this._is_playing = false
|
||||
this.initUserData()
|
||||
this.swichBuyAndPlay()
|
||||
this.btnPlayWhite()
|
||||
}, 1)
|
||||
}, 1.2)
|
||||
}else {
|
||||
@@ -395,8 +410,7 @@ export class PageMain extends BaseView {
|
||||
/** 跟随闪烁 */
|
||||
this.scheduleOnce(() => {
|
||||
let n = this._sign_position.findIndex(v => v == targetPos)
|
||||
let nowPoint = this._b_sequence[n]
|
||||
let light = this.blocks.getChildByName(nowPoint).getChildByName("light")
|
||||
let light = this.blocks[n].getChildByName("light")
|
||||
light.active = true
|
||||
let opc = light.getComponent(UIOpacity)
|
||||
opc.opacity = 0
|
||||
@@ -416,13 +430,13 @@ export class PageMain extends BaseView {
|
||||
if (index + 1 >= path.length) {
|
||||
this.scheduleOnce(() => {
|
||||
this.sign.active = false;
|
||||
let b = this._b_sequence[lastIndex]
|
||||
let b = this.blocks[lastIndex]
|
||||
if (this._game_data.win_coin >= 0){
|
||||
app.manager.sound.playEffect({name : "effect/eff_start"})
|
||||
}else{
|
||||
app.manager.sound.playEffect({name : "effect/eff_finish", volume: 0.5})
|
||||
}
|
||||
this.blinkLightWithTween(this.blocks.getChildByName(b).getChildByName("light"), 1, 2)
|
||||
this.blinkLightWithTween(this.blocks[lastIndex].getChildByName("light"), 1, 2)
|
||||
}, 0.5);
|
||||
return;
|
||||
}
|
||||
@@ -453,6 +467,10 @@ export class PageMain extends BaseView {
|
||||
this.video_bg.clip = this.video_normal
|
||||
}, 3.2);
|
||||
|
||||
let earn_str = this._game_data.win_coin > 0 ? "+" + this._game_data.win_coin : this._game_data.win_coin
|
||||
this.lab_earn.string = earn_str
|
||||
this.lab_earn.color = this._game_data.win_coin > 0 ? new Color(255, 91, 69) : new Color(96, 255, 38)
|
||||
|
||||
let blinkCount = 0;
|
||||
const blink = () => {
|
||||
tween(opc)
|
||||
@@ -473,13 +491,9 @@ export class PageMain extends BaseView {
|
||||
let cb = () => {
|
||||
lab.destroy()
|
||||
USERDATA.coin = this._game_data.coin
|
||||
USERDATA.total_ticket_count = this._game_data.total_ticket_count
|
||||
this.initUserData()
|
||||
this.swichBuyAndPlay()
|
||||
if (USERDATA.total_ticket_count > 0){
|
||||
if (USERDATA.coin >= this._ante_data[this._ante_index].mult * DEFAULT_COST){
|
||||
this.btnGameStart()
|
||||
}else{
|
||||
this.btnPlayWhite()
|
||||
}
|
||||
}
|
||||
// T5是再来一次,不需要飘字
|
||||
@@ -487,7 +501,8 @@ export class PageMain extends BaseView {
|
||||
let pos = new Vec3(node.parent.position.x, node.parent.position.y + 80, 0 )
|
||||
lab.setPosition(pos)
|
||||
lab.active = true
|
||||
Tools.SetText(lab, this._game_data.win_coin > 0 ? "+" + this._game_data.win_coin : this._game_data.win_coin)
|
||||
let earn_str = this._game_data.win_coin > 0 ? "+" + this._game_data.win_coin : this._game_data.win_coin
|
||||
Tools.SetText(lab, earn_str)
|
||||
app.manager.sound.playEffect({name : this._game_data.win_coin > 0 ? "effect/eff_win" : "effect/eff_lose"})
|
||||
tween(lab)
|
||||
.by(1, { position: new Vec3(0, 200, 0) })
|
||||
@@ -512,9 +527,7 @@ export class PageMain extends BaseView {
|
||||
}
|
||||
USERDATA.coin = this._game_data.coin
|
||||
USERDATA.total_ticket_count = this._game_data.total_ticket_count
|
||||
this.swichBuyAndPlay()
|
||||
this.initUserData()
|
||||
this.btnPlayWhite()
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
|
Before Width: | Height: | Size: 5.2 KiB |
|
After Width: | Height: | Size: 271 KiB |
@@ -2,7 +2,7 @@
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "4bac3685-d90c-4eac-8ec2-7d2751061223",
|
||||
"uuid": "cbbb1174-140b-4c80-b812-d76e8592ea04",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
@@ -10,14 +10,14 @@
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "4bac3685-d90c-4eac-8ec2-7d2751061223@6c48a",
|
||||
"displayName": "main_bg_auto",
|
||||
"uuid": "cbbb1174-140b-4c80-b812-d76e8592ea04@6c48a",
|
||||
"displayName": "main_bg_bottom",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "4bac3685-d90c-4eac-8ec2-7d2751061223",
|
||||
"imageUuidOrDatabaseUri": "cbbb1174-140b-4c80-b812-d76e8592ea04",
|
||||
"isUuid": true,
|
||||
"visible": false,
|
||||
"minfilter": "linear",
|
||||
@@ -34,8 +34,8 @@
|
||||
},
|
||||
"f9941": {
|
||||
"importer": "sprite-frame",
|
||||
"uuid": "4bac3685-d90c-4eac-8ec2-7d2751061223@f9941",
|
||||
"displayName": "main_bg_auto",
|
||||
"uuid": "cbbb1174-140b-4c80-b812-d76e8592ea04@f9941",
|
||||
"displayName": "main_bg_bottom",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
@@ -46,10 +46,10 @@
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 152,
|
||||
"height": 82,
|
||||
"rawWidth": 152,
|
||||
"rawHeight": 82,
|
||||
"width": 1080,
|
||||
"height": 223,
|
||||
"rawWidth": 1080,
|
||||
"rawHeight": 223,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
@@ -61,17 +61,17 @@
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-76,
|
||||
-41,
|
||||
-540,
|
||||
-111.5,
|
||||
0,
|
||||
76,
|
||||
-41,
|
||||
540,
|
||||
-111.5,
|
||||
0,
|
||||
-76,
|
||||
41,
|
||||
-540,
|
||||
111.5,
|
||||
0,
|
||||
76,
|
||||
41,
|
||||
540,
|
||||
111.5,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
@@ -84,12 +84,12 @@
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
82,
|
||||
152,
|
||||
82,
|
||||
223,
|
||||
1080,
|
||||
223,
|
||||
0,
|
||||
0,
|
||||
152,
|
||||
1080,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
@@ -103,18 +103,18 @@
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-76,
|
||||
-41,
|
||||
-540,
|
||||
-111.5,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
76,
|
||||
41,
|
||||
540,
|
||||
111.5,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "4bac3685-d90c-4eac-8ec2-7d2751061223@6c48a",
|
||||
"imageUuidOrDatabaseUri": "cbbb1174-140b-4c80-b812-d76e8592ea04@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
@@ -129,7 +129,7 @@
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "4bac3685-d90c-4eac-8ec2-7d2751061223@6c48a",
|
||||
"redirect": "cbbb1174-140b-4c80-b812-d76e8592ea04@6c48a",
|
||||
"compressSettings": {
|
||||
"useCompressTexture": true,
|
||||
"presetId": "e1UHIKee1GRqns7LEix3IH"
|
||||
|
Before Width: | Height: | Size: 150 KiB After Width: | Height: | Size: 4.4 KiB |
@@ -46,10 +46,10 @@
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 609,
|
||||
"height": 250,
|
||||
"rawWidth": 609,
|
||||
"rawHeight": 250,
|
||||
"width": 166,
|
||||
"height": 99,
|
||||
"rawWidth": 166,
|
||||
"rawHeight": 99,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
@@ -61,17 +61,17 @@
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-304.5,
|
||||
-125,
|
||||
-83,
|
||||
-49.5,
|
||||
0,
|
||||
304.5,
|
||||
-125,
|
||||
83,
|
||||
-49.5,
|
||||
0,
|
||||
-304.5,
|
||||
125,
|
||||
-83,
|
||||
49.5,
|
||||
0,
|
||||
304.5,
|
||||
125,
|
||||
83,
|
||||
49.5,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
@@ -84,12 +84,12 @@
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
250,
|
||||
609,
|
||||
250,
|
||||
99,
|
||||
166,
|
||||
99,
|
||||
0,
|
||||
0,
|
||||
609,
|
||||
166,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
@@ -103,13 +103,13 @@
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-304.5,
|
||||
-125,
|
||||
-83,
|
||||
-49.5,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
304.5,
|
||||
125,
|
||||
83,
|
||||
49.5,
|
||||
0
|
||||
]
|
||||
},
|
||||
|
||||
|
Before Width: | Height: | Size: 52 KiB |
@@ -1,138 +0,0 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "cf565501-3d90-45da-b127-f04a922a5c59",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "cf565501-3d90-45da-b127-f04a922a5c59@6c48a",
|
||||
"displayName": "main_btn_buy",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "cf565501-3d90-45da-b127-f04a922a5c59",
|
||||
"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": "cf565501-3d90-45da-b127-f04a922a5c59@f9941",
|
||||
"displayName": "main_btn_buy",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 364,
|
||||
"height": 246,
|
||||
"rawWidth": 364,
|
||||
"rawHeight": 246,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-182,
|
||||
-123,
|
||||
0,
|
||||
182,
|
||||
-123,
|
||||
0,
|
||||
-182,
|
||||
123,
|
||||
0,
|
||||
182,
|
||||
123,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
246,
|
||||
364,
|
||||
246,
|
||||
0,
|
||||
0,
|
||||
364,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-182,
|
||||
-123,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
182,
|
||||
123,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "cf565501-3d90-45da-b127-f04a922a5c59@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "cf565501-3d90-45da-b127-f04a922a5c59@6c48a",
|
||||
"compressSettings": {
|
||||
"useCompressTexture": true,
|
||||
"presetId": "e1UHIKee1GRqns7LEix3IH"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 4.2 KiB |
@@ -11,7 +11,7 @@
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "fd3c5545-0fae-4f1c-8f7c-8309959a1a87@6c48a",
|
||||
"displayName": "main_btn_play_bg",
|
||||
"displayName": "main_btn_play",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
@@ -35,7 +35,7 @@
|
||||
"f9941": {
|
||||
"importer": "sprite-frame",
|
||||
"uuid": "fd3c5545-0fae-4f1c-8f7c-8309959a1a87@f9941",
|
||||
"displayName": "main_btn_play_bg",
|
||||
"displayName": "main_btn_play",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
@@ -46,10 +46,10 @@
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 609,
|
||||
"height": 250,
|
||||
"rawWidth": 609,
|
||||
"rawHeight": 250,
|
||||
"width": 166,
|
||||
"height": 99,
|
||||
"rawWidth": 166,
|
||||
"rawHeight": 99,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
@@ -61,17 +61,17 @@
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-304.5,
|
||||
-125,
|
||||
-83,
|
||||
-49.5,
|
||||
0,
|
||||
304.5,
|
||||
-125,
|
||||
83,
|
||||
-49.5,
|
||||
0,
|
||||
-304.5,
|
||||
125,
|
||||
-83,
|
||||
49.5,
|
||||
0,
|
||||
304.5,
|
||||
125,
|
||||
83,
|
||||
49.5,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
@@ -84,12 +84,12 @@
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
250,
|
||||
609,
|
||||
250,
|
||||
99,
|
||||
166,
|
||||
99,
|
||||
0,
|
||||
0,
|
||||
609,
|
||||
166,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
@@ -103,13 +103,13 @@
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-304.5,
|
||||
-125,
|
||||
-83,
|
||||
-49.5,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
304.5,
|
||||
125,
|
||||
83,
|
||||
49.5,
|
||||
0
|
||||
]
|
||||
},
|
||||
|
Before Width: | Height: | Size: 157 KiB |
|
Before Width: | Height: | Size: 25 KiB |
@@ -1,138 +0,0 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "d4c00816-cde2-444d-a190-ccb95b5f28f5",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "d4c00816-cde2-444d-a190-ccb95b5f28f5@6c48a",
|
||||
"displayName": "main_corner",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "d4c00816-cde2-444d-a190-ccb95b5f28f5",
|
||||
"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": "d4c00816-cde2-444d-a190-ccb95b5f28f5@f9941",
|
||||
"displayName": "main_corner",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 169,
|
||||
"height": 162,
|
||||
"rawWidth": 169,
|
||||
"rawHeight": 162,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-84.5,
|
||||
-81,
|
||||
0,
|
||||
84.5,
|
||||
-81,
|
||||
0,
|
||||
-84.5,
|
||||
81,
|
||||
0,
|
||||
84.5,
|
||||
81,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
162,
|
||||
169,
|
||||
162,
|
||||
0,
|
||||
0,
|
||||
169,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-84.5,
|
||||
-81,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
84.5,
|
||||
81,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "d4c00816-cde2-444d-a190-ccb95b5f28f5@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "d4c00816-cde2-444d-a190-ccb95b5f28f5@6c48a",
|
||||
"compressSettings": {
|
||||
"useCompressTexture": true,
|
||||
"presetId": "e1UHIKee1GRqns7LEix3IH"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -129,6 +129,10 @@
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "2b422e8e-3f0a-4660-8c10-5d60d2d3a7a7@6c48a"
|
||||
"redirect": "2b422e8e-3f0a-4660-8c10-5d60d2d3a7a7@6c48a",
|
||||
"compressSettings": {
|
||||
"useCompressTexture": true,
|
||||
"presetId": "e1UHIKee1GRqns7LEix3IH"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
After Width: | Height: | Size: 4.0 KiB |
@@ -2,7 +2,7 @@
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "664fe045-852c-4908-8ec1-f8883b03fb1e",
|
||||
"uuid": "82bd16a6-ccc9-44b7-8be8-73aef85c9611",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
@@ -10,14 +10,14 @@
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "664fe045-852c-4908-8ec1-f8883b03fb1e@6c48a",
|
||||
"displayName": "main_lab_off_en",
|
||||
"uuid": "82bd16a6-ccc9-44b7-8be8-73aef85c9611@6c48a",
|
||||
"displayName": "main_icon_add",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "664fe045-852c-4908-8ec1-f8883b03fb1e",
|
||||
"imageUuidOrDatabaseUri": "82bd16a6-ccc9-44b7-8be8-73aef85c9611",
|
||||
"isUuid": true,
|
||||
"visible": false,
|
||||
"minfilter": "linear",
|
||||
@@ -34,8 +34,8 @@
|
||||
},
|
||||
"f9941": {
|
||||
"importer": "sprite-frame",
|
||||
"uuid": "664fe045-852c-4908-8ec1-f8883b03fb1e@f9941",
|
||||
"displayName": "main_lab_off_en",
|
||||
"uuid": "82bd16a6-ccc9-44b7-8be8-73aef85c9611@f9941",
|
||||
"displayName": "main_icon_add",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
@@ -46,10 +46,10 @@
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 57,
|
||||
"height": 39,
|
||||
"rawWidth": 57,
|
||||
"rawHeight": 39,
|
||||
"width": 78,
|
||||
"height": 85,
|
||||
"rawWidth": 78,
|
||||
"rawHeight": 85,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
@@ -61,17 +61,17 @@
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-28.5,
|
||||
-19.5,
|
||||
-39,
|
||||
-42.5,
|
||||
0,
|
||||
28.5,
|
||||
-19.5,
|
||||
39,
|
||||
-42.5,
|
||||
0,
|
||||
-28.5,
|
||||
19.5,
|
||||
-39,
|
||||
42.5,
|
||||
0,
|
||||
28.5,
|
||||
19.5,
|
||||
39,
|
||||
42.5,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
@@ -84,12 +84,12 @@
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
39,
|
||||
57,
|
||||
39,
|
||||
85,
|
||||
78,
|
||||
85,
|
||||
0,
|
||||
0,
|
||||
57,
|
||||
78,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
@@ -103,18 +103,18 @@
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-28.5,
|
||||
-19.5,
|
||||
-39,
|
||||
-42.5,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
28.5,
|
||||
19.5,
|
||||
39,
|
||||
42.5,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "664fe045-852c-4908-8ec1-f8883b03fb1e@6c48a",
|
||||
"imageUuidOrDatabaseUri": "82bd16a6-ccc9-44b7-8be8-73aef85c9611@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
@@ -129,7 +129,7 @@
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "664fe045-852c-4908-8ec1-f8883b03fb1e@6c48a",
|
||||
"redirect": "82bd16a6-ccc9-44b7-8be8-73aef85c9611@6c48a",
|
||||
"compressSettings": {
|
||||
"useCompressTexture": true,
|
||||
"presetId": "e1UHIKee1GRqns7LEix3IH"
|
||||
|
Before Width: | Height: | Size: 9.0 KiB |
|
Before Width: | Height: | Size: 9.0 KiB |
|
After Width: | Height: | Size: 3.9 KiB |
@@ -2,7 +2,7 @@
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "5c8221c4-26b6-48da-9f85-a49f47c52ea9",
|
||||
"uuid": "1734d2ea-812c-48e7-942d-ce0b2f875bbe",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
@@ -10,14 +10,14 @@
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "5c8221c4-26b6-48da-9f85-a49f47c52ea9@6c48a",
|
||||
"displayName": "main_icon_noauto",
|
||||
"uuid": "1734d2ea-812c-48e7-942d-ce0b2f875bbe@6c48a",
|
||||
"displayName": "main_icon_sub",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "5c8221c4-26b6-48da-9f85-a49f47c52ea9",
|
||||
"imageUuidOrDatabaseUri": "1734d2ea-812c-48e7-942d-ce0b2f875bbe",
|
||||
"isUuid": true,
|
||||
"visible": false,
|
||||
"minfilter": "linear",
|
||||
@@ -34,8 +34,8 @@
|
||||
},
|
||||
"f9941": {
|
||||
"importer": "sprite-frame",
|
||||
"uuid": "5c8221c4-26b6-48da-9f85-a49f47c52ea9@f9941",
|
||||
"displayName": "main_icon_noauto",
|
||||
"uuid": "1734d2ea-812c-48e7-942d-ce0b2f875bbe@f9941",
|
||||
"displayName": "main_icon_sub",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
@@ -46,10 +46,10 @@
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 74,
|
||||
"height": 77,
|
||||
"rawWidth": 74,
|
||||
"rawHeight": 77,
|
||||
"width": 77,
|
||||
"height": 85,
|
||||
"rawWidth": 77,
|
||||
"rawHeight": 85,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
@@ -61,17 +61,17 @@
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-37,
|
||||
-38.5,
|
||||
-42.5,
|
||||
0,
|
||||
38.5,
|
||||
-42.5,
|
||||
0,
|
||||
37,
|
||||
-38.5,
|
||||
42.5,
|
||||
0,
|
||||
-37,
|
||||
38.5,
|
||||
0,
|
||||
37,
|
||||
38.5,
|
||||
42.5,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
@@ -84,12 +84,12 @@
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
85,
|
||||
77,
|
||||
74,
|
||||
77,
|
||||
85,
|
||||
0,
|
||||
0,
|
||||
74,
|
||||
77,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
@@ -103,18 +103,18 @@
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-37,
|
||||
-38.5,
|
||||
-42.5,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
37,
|
||||
38.5,
|
||||
42.5,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "5c8221c4-26b6-48da-9f85-a49f47c52ea9@6c48a",
|
||||
"imageUuidOrDatabaseUri": "1734d2ea-812c-48e7-942d-ce0b2f875bbe@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
@@ -129,7 +129,7 @@
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "5c8221c4-26b6-48da-9f85-a49f47c52ea9@6c48a",
|
||||
"redirect": "1734d2ea-812c-48e7-942d-ce0b2f875bbe@6c48a",
|
||||
"compressSettings": {
|
||||
"useCompressTexture": true,
|
||||
"presetId": "e1UHIKee1GRqns7LEix3IH"
|
||||
|
After Width: | Height: | Size: 3.3 KiB |
@@ -2,7 +2,7 @@
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "fa7af89f-7bdc-4b63-8875-6f5c4fb9949d",
|
||||
"uuid": "f9a676de-678e-4c75-9bc1-7a1475092c67",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
@@ -10,14 +10,14 @@
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "fa7af89f-7bdc-4b63-8875-6f5c4fb9949d@6c48a",
|
||||
"displayName": "main_icon_auto",
|
||||
"uuid": "f9a676de-678e-4c75-9bc1-7a1475092c67@6c48a",
|
||||
"displayName": "main_lab_auto_en",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "fa7af89f-7bdc-4b63-8875-6f5c4fb9949d",
|
||||
"imageUuidOrDatabaseUri": "f9a676de-678e-4c75-9bc1-7a1475092c67",
|
||||
"isUuid": true,
|
||||
"visible": false,
|
||||
"minfilter": "linear",
|
||||
@@ -34,8 +34,8 @@
|
||||
},
|
||||
"f9941": {
|
||||
"importer": "sprite-frame",
|
||||
"uuid": "fa7af89f-7bdc-4b63-8875-6f5c4fb9949d@f9941",
|
||||
"displayName": "main_icon_auto",
|
||||
"uuid": "f9a676de-678e-4c75-9bc1-7a1475092c67@f9941",
|
||||
"displayName": "main_lab_auto_en",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
@@ -46,10 +46,10 @@
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 74,
|
||||
"height": 77,
|
||||
"rawWidth": 74,
|
||||
"rawHeight": 77,
|
||||
"width": 117,
|
||||
"height": 40,
|
||||
"rawWidth": 117,
|
||||
"rawHeight": 40,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
@@ -61,17 +61,17 @@
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-37,
|
||||
-38.5,
|
||||
-58.5,
|
||||
-20,
|
||||
0,
|
||||
37,
|
||||
-38.5,
|
||||
58.5,
|
||||
-20,
|
||||
0,
|
||||
-37,
|
||||
38.5,
|
||||
-58.5,
|
||||
20,
|
||||
0,
|
||||
37,
|
||||
38.5,
|
||||
58.5,
|
||||
20,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
@@ -84,12 +84,12 @@
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
77,
|
||||
74,
|
||||
77,
|
||||
40,
|
||||
117,
|
||||
40,
|
||||
0,
|
||||
0,
|
||||
74,
|
||||
117,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
@@ -103,18 +103,18 @@
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-37,
|
||||
-38.5,
|
||||
-58.5,
|
||||
-20,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
37,
|
||||
38.5,
|
||||
58.5,
|
||||
20,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "fa7af89f-7bdc-4b63-8875-6f5c4fb9949d@6c48a",
|
||||
"imageUuidOrDatabaseUri": "f9a676de-678e-4c75-9bc1-7a1475092c67@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
@@ -129,7 +129,7 @@
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "fa7af89f-7bdc-4b63-8875-6f5c4fb9949d@6c48a",
|
||||
"redirect": "f9a676de-678e-4c75-9bc1-7a1475092c67@6c48a",
|
||||
"compressSettings": {
|
||||
"useCompressTexture": true,
|
||||
"presetId": "e1UHIKee1GRqns7LEix3IH"
|
||||
|
After Width: | Height: | Size: 3.0 KiB |
@@ -2,7 +2,7 @@
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "f98fd16c-c485-4196-a910-002c9bab6268",
|
||||
"uuid": "e7236390-d7dc-421f-97b7-4f2feb20ed4a",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
@@ -10,14 +10,14 @@
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "f98fd16c-c485-4196-a910-002c9bab6268@6c48a",
|
||||
"displayName": "main_lab_give1_en",
|
||||
"uuid": "e7236390-d7dc-421f-97b7-4f2feb20ed4a@6c48a",
|
||||
"displayName": "main_lab_auto_zh",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "f98fd16c-c485-4196-a910-002c9bab6268",
|
||||
"imageUuidOrDatabaseUri": "e7236390-d7dc-421f-97b7-4f2feb20ed4a",
|
||||
"isUuid": true,
|
||||
"visible": false,
|
||||
"minfilter": "linear",
|
||||
@@ -34,8 +34,8 @@
|
||||
},
|
||||
"f9941": {
|
||||
"importer": "sprite-frame",
|
||||
"uuid": "f98fd16c-c485-4196-a910-002c9bab6268@f9941",
|
||||
"displayName": "main_lab_give1_en",
|
||||
"uuid": "e7236390-d7dc-421f-97b7-4f2feb20ed4a@f9941",
|
||||
"displayName": "main_lab_auto_zh",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
@@ -46,10 +46,10 @@
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 103,
|
||||
"height": 102,
|
||||
"rawWidth": 103,
|
||||
"rawHeight": 102,
|
||||
"width": 93,
|
||||
"height": 51,
|
||||
"rawWidth": 93,
|
||||
"rawHeight": 51,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
@@ -61,17 +61,17 @@
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-51.5,
|
||||
-51,
|
||||
-46.5,
|
||||
-25.5,
|
||||
0,
|
||||
51.5,
|
||||
-51,
|
||||
46.5,
|
||||
-25.5,
|
||||
0,
|
||||
-51.5,
|
||||
51,
|
||||
-46.5,
|
||||
25.5,
|
||||
0,
|
||||
51.5,
|
||||
51,
|
||||
46.5,
|
||||
25.5,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
@@ -84,12 +84,12 @@
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
102,
|
||||
103,
|
||||
102,
|
||||
51,
|
||||
93,
|
||||
51,
|
||||
0,
|
||||
0,
|
||||
103,
|
||||
93,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
@@ -103,18 +103,18 @@
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-51.5,
|
||||
-51,
|
||||
-46.5,
|
||||
-25.5,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
51.5,
|
||||
51,
|
||||
46.5,
|
||||
25.5,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "f98fd16c-c485-4196-a910-002c9bab6268@6c48a",
|
||||
"imageUuidOrDatabaseUri": "e7236390-d7dc-421f-97b7-4f2feb20ed4a@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
@@ -129,7 +129,7 @@
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "f98fd16c-c485-4196-a910-002c9bab6268@6c48a",
|
||||
"redirect": "e7236390-d7dc-421f-97b7-4f2feb20ed4a@6c48a",
|
||||
"compressSettings": {
|
||||
"useCompressTexture": true,
|
||||
"presetId": "e1UHIKee1GRqns7LEix3IH"
|
||||
|
Before Width: | Height: | Size: 7.2 KiB |
@@ -1,138 +0,0 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "f41e5671-aabd-4d1d-80f2-44467d803b01",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "f41e5671-aabd-4d1d-80f2-44467d803b01@6c48a",
|
||||
"displayName": "main_lab_five_en",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "f41e5671-aabd-4d1d-80f2-44467d803b01",
|
||||
"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": "f41e5671-aabd-4d1d-80f2-44467d803b01@f9941",
|
||||
"displayName": "main_lab_five_en",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 205,
|
||||
"height": 56,
|
||||
"rawWidth": 205,
|
||||
"rawHeight": 56,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-102.5,
|
||||
-28,
|
||||
0,
|
||||
102.5,
|
||||
-28,
|
||||
0,
|
||||
-102.5,
|
||||
28,
|
||||
0,
|
||||
102.5,
|
||||
28,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
56,
|
||||
205,
|
||||
56,
|
||||
0,
|
||||
0,
|
||||
205,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-102.5,
|
||||
-28,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
102.5,
|
||||
28,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "f41e5671-aabd-4d1d-80f2-44467d803b01@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "f41e5671-aabd-4d1d-80f2-44467d803b01@6c48a",
|
||||
"compressSettings": {
|
||||
"useCompressTexture": true,
|
||||
"presetId": "e1UHIKee1GRqns7LEix3IH"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 5.7 KiB |
@@ -1,138 +0,0 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "714303f0-8531-4307-9931-a31cba6e3124",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "714303f0-8531-4307-9931-a31cba6e3124@6c48a",
|
||||
"displayName": "main_lab_five_zh",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "714303f0-8531-4307-9931-a31cba6e3124",
|
||||
"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": "714303f0-8531-4307-9931-a31cba6e3124@f9941",
|
||||
"displayName": "main_lab_five_zh",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 103,
|
||||
"height": 61,
|
||||
"rawWidth": 103,
|
||||
"rawHeight": 61,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-51.5,
|
||||
-30.5,
|
||||
0,
|
||||
51.5,
|
||||
-30.5,
|
||||
0,
|
||||
-51.5,
|
||||
30.5,
|
||||
0,
|
||||
51.5,
|
||||
30.5,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
61,
|
||||
103,
|
||||
61,
|
||||
0,
|
||||
0,
|
||||
103,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-51.5,
|
||||
-30.5,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
51.5,
|
||||
30.5,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "714303f0-8531-4307-9931-a31cba6e3124@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "714303f0-8531-4307-9931-a31cba6e3124@6c48a",
|
||||
"compressSettings": {
|
||||
"useCompressTexture": true,
|
||||
"presetId": "e1UHIKee1GRqns7LEix3IH"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 3.7 KiB |
|
Before Width: | Height: | Size: 5.3 KiB |
@@ -1,138 +0,0 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "ab9f0328-f300-4eee-8bb0-97ebfc0f769b",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "ab9f0328-f300-4eee-8bb0-97ebfc0f769b@6c48a",
|
||||
"displayName": "main_lab_give1_zh",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "ab9f0328-f300-4eee-8bb0-97ebfc0f769b",
|
||||
"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": "ab9f0328-f300-4eee-8bb0-97ebfc0f769b@f9941",
|
||||
"displayName": "main_lab_give1_zh",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 88,
|
||||
"height": 87,
|
||||
"rawWidth": 88,
|
||||
"rawHeight": 87,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-44,
|
||||
-43.5,
|
||||
0,
|
||||
44,
|
||||
-43.5,
|
||||
0,
|
||||
-44,
|
||||
43.5,
|
||||
0,
|
||||
44,
|
||||
43.5,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
87,
|
||||
88,
|
||||
87,
|
||||
0,
|
||||
0,
|
||||
88,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-44,
|
||||
-43.5,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
44,
|
||||
43.5,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "ab9f0328-f300-4eee-8bb0-97ebfc0f769b@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "ab9f0328-f300-4eee-8bb0-97ebfc0f769b@6c48a",
|
||||
"compressSettings": {
|
||||
"useCompressTexture": true,
|
||||
"presetId": "e1UHIKee1GRqns7LEix3IH"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 6.5 KiB |
@@ -1,138 +0,0 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "618c5d76-f870-4b18-b8ac-ce44042e0619",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "618c5d76-f870-4b18-b8ac-ce44042e0619@6c48a",
|
||||
"displayName": "main_lab_give3_en",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "618c5d76-f870-4b18-b8ac-ce44042e0619",
|
||||
"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": "618c5d76-f870-4b18-b8ac-ce44042e0619@f9941",
|
||||
"displayName": "main_lab_give3_en",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 105,
|
||||
"height": 107,
|
||||
"rawWidth": 105,
|
||||
"rawHeight": 107,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-52.5,
|
||||
-53.5,
|
||||
0,
|
||||
52.5,
|
||||
-53.5,
|
||||
0,
|
||||
-52.5,
|
||||
53.5,
|
||||
0,
|
||||
52.5,
|
||||
53.5,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
107,
|
||||
105,
|
||||
107,
|
||||
0,
|
||||
0,
|
||||
105,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-52.5,
|
||||
-53.5,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
52.5,
|
||||
53.5,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "618c5d76-f870-4b18-b8ac-ce44042e0619@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "618c5d76-f870-4b18-b8ac-ce44042e0619@6c48a",
|
||||
"compressSettings": {
|
||||
"useCompressTexture": true,
|
||||
"presetId": "e1UHIKee1GRqns7LEix3IH"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 5.6 KiB |
@@ -1,138 +0,0 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "26ffb002-b023-42dc-b8ef-5b0812dff765",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "26ffb002-b023-42dc-b8ef-5b0812dff765@6c48a",
|
||||
"displayName": "main_lab_give3_zh",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "26ffb002-b023-42dc-b8ef-5b0812dff765",
|
||||
"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": "26ffb002-b023-42dc-b8ef-5b0812dff765@f9941",
|
||||
"displayName": "main_lab_give3_zh",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 90,
|
||||
"height": 88,
|
||||
"rawWidth": 90,
|
||||
"rawHeight": 88,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-45,
|
||||
-44,
|
||||
0,
|
||||
45,
|
||||
-44,
|
||||
0,
|
||||
-45,
|
||||
44,
|
||||
0,
|
||||
45,
|
||||
44,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
88,
|
||||
90,
|
||||
88,
|
||||
0,
|
||||
0,
|
||||
90,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-45,
|
||||
-44,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
45,
|
||||
44,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "26ffb002-b023-42dc-b8ef-5b0812dff765@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "26ffb002-b023-42dc-b8ef-5b0812dff765@6c48a",
|
||||
"compressSettings": {
|
||||
"useCompressTexture": true,
|
||||
"presetId": "e1UHIKee1GRqns7LEix3IH"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 2.0 KiB |
|
Before Width: | Height: | Size: 2.3 KiB |
@@ -1,138 +0,0 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "550f2426-56ed-412d-b801-4a86bd4627b0",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "550f2426-56ed-412d-b801-4a86bd4627b0@6c48a",
|
||||
"displayName": "main_lab_off_zh",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "550f2426-56ed-412d-b801-4a86bd4627b0",
|
||||
"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": "550f2426-56ed-412d-b801-4a86bd4627b0@f9941",
|
||||
"displayName": "main_lab_off_zh",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 42,
|
||||
"height": 44,
|
||||
"rawWidth": 42,
|
||||
"rawHeight": 44,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-21,
|
||||
-22,
|
||||
0,
|
||||
21,
|
||||
-22,
|
||||
0,
|
||||
-21,
|
||||
22,
|
||||
0,
|
||||
21,
|
||||
22,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
44,
|
||||
42,
|
||||
44,
|
||||
0,
|
||||
0,
|
||||
42,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-21,
|
||||
-22,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
21,
|
||||
22,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "550f2426-56ed-412d-b801-4a86bd4627b0@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "550f2426-56ed-412d-b801-4a86bd4627b0@6c48a",
|
||||
"compressSettings": {
|
||||
"useCompressTexture": true,
|
||||
"presetId": "e1UHIKee1GRqns7LEix3IH"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 4.7 KiB |
@@ -1,138 +0,0 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "ca921c67-1f44-4073-bf60-80e59fe79785",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "ca921c67-1f44-4073-bf60-80e59fe79785@6c48a",
|
||||
"displayName": "main_lab_one_en",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "ca921c67-1f44-4073-bf60-80e59fe79785",
|
||||
"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": "ca921c67-1f44-4073-bf60-80e59fe79785@f9941",
|
||||
"displayName": "main_lab_one_en",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 172,
|
||||
"height": 57,
|
||||
"rawWidth": 172,
|
||||
"rawHeight": 57,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-86,
|
||||
-28.5,
|
||||
0,
|
||||
86,
|
||||
-28.5,
|
||||
0,
|
||||
-86,
|
||||
28.5,
|
||||
0,
|
||||
86,
|
||||
28.5,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
57,
|
||||
172,
|
||||
57,
|
||||
0,
|
||||
0,
|
||||
172,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-86,
|
||||
-28.5,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
86,
|
||||
28.5,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "ca921c67-1f44-4073-bf60-80e59fe79785@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "ca921c67-1f44-4073-bf60-80e59fe79785@6c48a",
|
||||
"compressSettings": {
|
||||
"useCompressTexture": true,
|
||||
"presetId": "e1UHIKee1GRqns7LEix3IH"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 5.2 KiB |
@@ -1,138 +0,0 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "8cbdf3a4-a921-42da-97b5-cdf9a2eb4a2c",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "8cbdf3a4-a921-42da-97b5-cdf9a2eb4a2c@6c48a",
|
||||
"displayName": "main_lab_one_zh",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "8cbdf3a4-a921-42da-97b5-cdf9a2eb4a2c",
|
||||
"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": "8cbdf3a4-a921-42da-97b5-cdf9a2eb4a2c@f9941",
|
||||
"displayName": "main_lab_one_zh",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 126,
|
||||
"height": 61,
|
||||
"rawWidth": 126,
|
||||
"rawHeight": 61,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-63,
|
||||
-30.5,
|
||||
0,
|
||||
63,
|
||||
-30.5,
|
||||
0,
|
||||
-63,
|
||||
30.5,
|
||||
0,
|
||||
63,
|
||||
30.5,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
61,
|
||||
126,
|
||||
61,
|
||||
0,
|
||||
0,
|
||||
126,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-63,
|
||||
-30.5,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
63,
|
||||
30.5,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "8cbdf3a4-a921-42da-97b5-cdf9a2eb4a2c@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "8cbdf3a4-a921-42da-97b5-cdf9a2eb4a2c@6c48a",
|
||||
"compressSettings": {
|
||||
"useCompressTexture": true,
|
||||
"presetId": "e1UHIKee1GRqns7LEix3IH"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 1.8 KiB |
@@ -1,138 +0,0 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "a098300b-3636-4ca5-ba6f-6f184298d18c",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "a098300b-3636-4ca5-ba6f-6f184298d18c@6c48a",
|
||||
"displayName": "main_lab_open_en",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "a098300b-3636-4ca5-ba6f-6f184298d18c",
|
||||
"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": "a098300b-3636-4ca5-ba6f-6f184298d18c@f9941",
|
||||
"displayName": "main_lab_open_en",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 50,
|
||||
"height": 29,
|
||||
"rawWidth": 50,
|
||||
"rawHeight": 29,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-25,
|
||||
-14.5,
|
||||
0,
|
||||
25,
|
||||
-14.5,
|
||||
0,
|
||||
-25,
|
||||
14.5,
|
||||
0,
|
||||
25,
|
||||
14.5,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
29,
|
||||
50,
|
||||
29,
|
||||
0,
|
||||
0,
|
||||
50,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-25,
|
||||
-14.5,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
25,
|
||||
14.5,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "a098300b-3636-4ca5-ba6f-6f184298d18c@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "a098300b-3636-4ca5-ba6f-6f184298d18c@6c48a",
|
||||
"compressSettings": {
|
||||
"useCompressTexture": true,
|
||||
"presetId": "e1UHIKee1GRqns7LEix3IH"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 1.6 KiB |
@@ -1,138 +0,0 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "a826be4f-45a5-4c6f-a46b-26917a8821fb",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "a826be4f-45a5-4c6f-a46b-26917a8821fb@6c48a",
|
||||
"displayName": "main_lab_open_zh",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "a826be4f-45a5-4c6f-a46b-26917a8821fb",
|
||||
"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": "a826be4f-45a5-4c6f-a46b-26917a8821fb@f9941",
|
||||
"displayName": "main_lab_open_zh",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 41,
|
||||
"height": 41,
|
||||
"rawWidth": 41,
|
||||
"rawHeight": 41,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-20.5,
|
||||
-20.5,
|
||||
0,
|
||||
20.5,
|
||||
-20.5,
|
||||
0,
|
||||
-20.5,
|
||||
20.5,
|
||||
0,
|
||||
20.5,
|
||||
20.5,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
41,
|
||||
41,
|
||||
41,
|
||||
0,
|
||||
0,
|
||||
41,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-20.5,
|
||||
-20.5,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
20.5,
|
||||
20.5,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "a826be4f-45a5-4c6f-a46b-26917a8821fb@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "a826be4f-45a5-4c6f-a46b-26917a8821fb@6c48a",
|
||||
"compressSettings": {
|
||||
"useCompressTexture": true,
|
||||
"presetId": "e1UHIKee1GRqns7LEix3IH"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 6.5 KiB After Width: | Height: | Size: 3.1 KiB |
@@ -46,10 +46,10 @@
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 264,
|
||||
"height": 81,
|
||||
"rawWidth": 264,
|
||||
"rawHeight": 81,
|
||||
"width": 100,
|
||||
"height": 54,
|
||||
"rawWidth": 100,
|
||||
"rawHeight": 54,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
@@ -61,17 +61,17 @@
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-132,
|
||||
-40.5,
|
||||
-50,
|
||||
-27,
|
||||
0,
|
||||
132,
|
||||
-40.5,
|
||||
50,
|
||||
-27,
|
||||
0,
|
||||
-132,
|
||||
40.5,
|
||||
-50,
|
||||
27,
|
||||
0,
|
||||
132,
|
||||
40.5,
|
||||
50,
|
||||
27,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
@@ -84,12 +84,12 @@
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
81,
|
||||
264,
|
||||
81,
|
||||
54,
|
||||
100,
|
||||
54,
|
||||
0,
|
||||
0,
|
||||
264,
|
||||
100,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
@@ -103,13 +103,13 @@
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-132,
|
||||
-40.5,
|
||||
-50,
|
||||
-27,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
132,
|
||||
40.5,
|
||||
50,
|
||||
27,
|
||||
0
|
||||
]
|
||||
},
|
||||
|
||||
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 3.5 KiB |
@@ -46,10 +46,10 @@
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 348,
|
||||
"height": 87,
|
||||
"rawWidth": 348,
|
||||
"rawHeight": 87,
|
||||
"width": 99,
|
||||
"height": 52,
|
||||
"rawWidth": 99,
|
||||
"rawHeight": 52,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
@@ -61,17 +61,17 @@
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-174,
|
||||
-43.5,
|
||||
-49.5,
|
||||
-26,
|
||||
0,
|
||||
174,
|
||||
-43.5,
|
||||
49.5,
|
||||
-26,
|
||||
0,
|
||||
-174,
|
||||
43.5,
|
||||
-49.5,
|
||||
26,
|
||||
0,
|
||||
174,
|
||||
43.5,
|
||||
49.5,
|
||||
26,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
@@ -84,12 +84,12 @@
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
87,
|
||||
348,
|
||||
87,
|
||||
52,
|
||||
99,
|
||||
52,
|
||||
0,
|
||||
0,
|
||||
348,
|
||||
99,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
@@ -103,13 +103,13 @@
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-174,
|
||||
-43.5,
|
||||
-49.5,
|
||||
-26,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
174,
|
||||
43.5,
|
||||
49.5,
|
||||
26,
|
||||
0
|
||||
]
|
||||
},
|
||||
|
||||
|
Before Width: | Height: | Size: 7.9 KiB |
@@ -1,138 +0,0 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "28e33aab-2abf-404f-8c17-0f842b7e4f66",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "28e33aab-2abf-404f-8c17-0f842b7e4f66@6c48a",
|
||||
"displayName": "main_lab_ten_en",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "28e33aab-2abf-404f-8c17-0f842b7e4f66",
|
||||
"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": "28e33aab-2abf-404f-8c17-0f842b7e4f66@f9941",
|
||||
"displayName": "main_lab_ten_en",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 227,
|
||||
"height": 57,
|
||||
"rawWidth": 227,
|
||||
"rawHeight": 57,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-113.5,
|
||||
-28.5,
|
||||
0,
|
||||
113.5,
|
||||
-28.5,
|
||||
0,
|
||||
-113.5,
|
||||
28.5,
|
||||
0,
|
||||
113.5,
|
||||
28.5,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
57,
|
||||
227,
|
||||
57,
|
||||
0,
|
||||
0,
|
||||
227,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-113.5,
|
||||
-28.5,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
113.5,
|
||||
28.5,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "28e33aab-2abf-404f-8c17-0f842b7e4f66@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "28e33aab-2abf-404f-8c17-0f842b7e4f66@6c48a",
|
||||
"compressSettings": {
|
||||
"useCompressTexture": true,
|
||||
"presetId": "e1UHIKee1GRqns7LEix3IH"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 6.3 KiB |
@@ -1,138 +0,0 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "5ac27136-c63c-4b9b-800f-d4486be63275",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "5ac27136-c63c-4b9b-800f-d4486be63275@6c48a",
|
||||
"displayName": "main_lab_ten_zh",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "5ac27136-c63c-4b9b-800f-d4486be63275",
|
||||
"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": "5ac27136-c63c-4b9b-800f-d4486be63275@f9941",
|
||||
"displayName": "main_lab_ten_zh",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 136,
|
||||
"height": 61,
|
||||
"rawWidth": 136,
|
||||
"rawHeight": 61,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-68,
|
||||
-30.5,
|
||||
0,
|
||||
68,
|
||||
-30.5,
|
||||
0,
|
||||
-68,
|
||||
30.5,
|
||||
0,
|
||||
68,
|
||||
30.5,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
61,
|
||||
136,
|
||||
61,
|
||||
0,
|
||||
0,
|
||||
136,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-68,
|
||||
-30.5,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
68,
|
||||
30.5,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "5ac27136-c63c-4b9b-800f-d4486be63275@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "5ac27136-c63c-4b9b-800f-d4486be63275@6c48a",
|
||||
"compressSettings": {
|
||||
"useCompressTexture": true,
|
||||
"presetId": "e1UHIKee1GRqns7LEix3IH"
|
||||
}
|
||||
}
|
||||
}
|
||||