修改版本
@@ -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 BaseView from '../../../../../../extensions/app/assets/base/BaseView';
|
||||||
import { PageTips } from '../../tips/native/PageTips';
|
import { PageTips } from '../../tips/native/PageTips';
|
||||||
import { app } from 'db://assets/app/app';
|
import { app } from 'db://assets/app/app';
|
||||||
@@ -14,6 +14,9 @@ const enum M_DIR {
|
|||||||
COUNTER_CLOCKWISE = 1, /** 逆时针 */
|
COUNTER_CLOCKWISE = 1, /** 逆时针 */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** 默认消耗 */
|
||||||
|
const DEFAULT_COST = 100
|
||||||
|
|
||||||
@ccclass('PageMain')
|
@ccclass('PageMain')
|
||||||
export class PageMain extends BaseView {
|
export class PageMain extends BaseView {
|
||||||
/** 声音按钮 */
|
/** 声音按钮 */
|
||||||
@@ -22,26 +25,24 @@ export class PageMain extends BaseView {
|
|||||||
@property(Label) lab_gold: Label = null!;
|
@property(Label) lab_gold: Label = null!;
|
||||||
/** 姓名 */
|
/** 姓名 */
|
||||||
@property(Label) lab_name: 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) n_dir: Node[] = [];
|
||||||
/** 标签 */
|
/** 标签 */
|
||||||
@property(Node) sign: Node = null!;
|
@property(Node) sign: Node = null!;
|
||||||
/** 方块 */
|
/** 方块 */
|
||||||
@property(Node) blocks: Node = null!;
|
@property(Node) blocks: Node[] = [];
|
||||||
/** 骰子 */
|
/** 骰子 */
|
||||||
@property(Node) dices: Node[] = [];
|
@property(Node) dices: Node[] = [];
|
||||||
/** 中奖 */
|
/** 中奖 */
|
||||||
@property(Node) rw: Node = null!;
|
@property(Node) rw: Node = null!;
|
||||||
/** 未中奖 */
|
/** 未中奖 */
|
||||||
@property(Node) norw: Node = null!;
|
@property(Node) norw: Node = null!;
|
||||||
/** 购买次数按钮 */
|
|
||||||
@property(Node) btns_buy: Node = null!;
|
|
||||||
/** 开始游戏按钮 */
|
/** 开始游戏按钮 */
|
||||||
@property(Node) btn_play: Node = null!;
|
@property(Node) btn_play: Node = null!;
|
||||||
/** 开始游戏按钮 */
|
|
||||||
@property(Node) btn_auto: Node = null!;
|
|
||||||
/** 胜利数字 */
|
/** 胜利数字 */
|
||||||
@property(Node) lab_add: 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) ani_dice: Node = null!;
|
||||||
/** 骰子总点数 */
|
/** 骰子总点数 */
|
||||||
@property(Node) dice_all: 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_win: VideoClip = null!;
|
||||||
@property(VideoClip) video_lose: VideoClip = null!;
|
@property(VideoClip) video_lose: VideoClip = null!;
|
||||||
@@ -71,11 +75,13 @@ export class PageMain extends BaseView {
|
|||||||
private _game_data: any = null;
|
private _game_data: any = null;
|
||||||
/** 是否正在连续 */
|
/** 是否正在连续 */
|
||||||
private _is_continuous : boolean = true
|
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[] =[
|
private _sign_position: Vec3[] =[
|
||||||
@@ -120,11 +126,10 @@ export class PageMain extends BaseView {
|
|||||||
// 界面打开时的相关逻辑写在这(onShow可被多次调用-它与onHide不成对)
|
// 界面打开时的相关逻辑写在这(onShow可被多次调用-它与onHide不成对)
|
||||||
onShow(params: any) {
|
onShow(params: any) {
|
||||||
this.initUserData()
|
this.initUserData()
|
||||||
this.swichBuyAndPlay()
|
|
||||||
this.initDir()
|
this.initDir()
|
||||||
this.getRwData()
|
|
||||||
this.onClickTips()
|
this.onClickTips()
|
||||||
this.bindVideoEvents()
|
this.bindVideoEvents()
|
||||||
|
this.getConfig()
|
||||||
|
|
||||||
this._canvas = document.createElement('canvas');
|
this._canvas = document.createElement('canvas');
|
||||||
this._canvas.width = this.video_sprite.getComponent(UITransform).width;
|
this._canvas.width = this.video_sprite.getComponent(UITransform).width;
|
||||||
@@ -160,15 +165,6 @@ export class PageMain extends BaseView {
|
|||||||
initUserData(){
|
initUserData(){
|
||||||
this.lab_gold.string = USERDATA.coin.toString()
|
this.lab_gold.string = USERDATA.coin.toString()
|
||||||
this.lab_name.string = USERDATA.name
|
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() {
|
bindVideoEvents() {
|
||||||
@@ -188,23 +184,59 @@ export class PageMain extends BaseView {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
getRwData(){
|
getConfig(){
|
||||||
Tools.httpReq("game/lotteryPool", {}, (res:any) => {
|
Tools.httpReq("game/anteConfig", {}, (res:any) => {
|
||||||
|
this._ante_data = res
|
||||||
|
// 默认倍数
|
||||||
for (let index = 0; index < res.length; index++) {
|
for (let index = 0; index < res.length; index++) {
|
||||||
const d = res[index];
|
const element = res[index];
|
||||||
Tools.SetChildText(this.blocks, String(d.grid_number) + "/num", d.ui_text)
|
if (element.is_default == 1){
|
||||||
|
this._ante_index = index
|
||||||
|
break
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
this.initAnteSet()
|
||||||
|
|
||||||
|
Tools.httpReq("game/lotteryPool", {}, (res:any) => {
|
||||||
|
this._board_data = res
|
||||||
|
this.initBoradData()
|
||||||
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 购买游戏次数 */
|
initAnteSet(){
|
||||||
buyTimes(a : any, d : any){
|
let d = this._ante_data[this._ante_index]
|
||||||
Tools.httpReq("game/buyLotteryTickets", { "count" : d }, (res:any) => {
|
this.lab_ante.string = d.name
|
||||||
USERDATA.coin = res.coin
|
this.btn_ante_sub.getComponent(Sprite).grayscale = this._ante_index == 0
|
||||||
USERDATA.total_ticket_count = res.total_ticket_count
|
this.btn_ante_add.getComponent(Sprite).grayscale = this._ante_index == this._ante_data.length - 1
|
||||||
this.swichBuyAndPlay()
|
}
|
||||||
this.initUserData()
|
|
||||||
})
|
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){
|
chooseDir(d:any, dir: number){
|
||||||
@@ -235,37 +267,21 @@ export class PageMain extends BaseView {
|
|||||||
app.manager.ui.show<PageRewardhistory>({name: 'PageRewardhistory'})
|
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(){
|
btnGameStart(){
|
||||||
if (this._b_sequence.length != this._sign_position.length) {
|
|
||||||
return app.manager.ui.showToast(Tools.GetLocalized("数据错误"))
|
|
||||||
}
|
|
||||||
if (this._is_playing) return
|
if (this._is_playing) return
|
||||||
this._is_playing = true
|
this._is_playing = true
|
||||||
this.btnPlayGary()
|
|
||||||
|
this.lab_earn.string = ""
|
||||||
|
|
||||||
Tools.httpReq("game/playStart", {
|
Tools.httpReq("game/playStart", {
|
||||||
"direction" : this._move_dir
|
"direction" : this._move_dir,
|
||||||
|
"ante" : this._ante_data[this._ante_index].mult
|
||||||
}, (res:any) => {
|
}, (res:any) => {
|
||||||
this._game_data = res
|
this._game_data = res
|
||||||
this._move_dir = res.direction
|
this._move_dir = res.direction
|
||||||
|
|
||||||
USERDATA.total_ticket_count--
|
USERDATA.coin -= this._ante_data[this._ante_index].mult * DEFAULT_COST
|
||||||
this.initUserData()
|
this.initUserData()
|
||||||
|
|
||||||
let steps = 0
|
let steps = 0
|
||||||
@@ -273,8 +289,9 @@ export class PageMain extends BaseView {
|
|||||||
const element = res.roll_array[i];
|
const element = res.roll_array[i];
|
||||||
steps += element
|
steps += element
|
||||||
}
|
}
|
||||||
let index:any = this._b_sequence.findIndex(v => v == steps.toString())
|
let index:any = this._board_data.findIndex(v => v.grid_number == steps.toString())
|
||||||
let b = this.blocks.getChildByName(steps.toString())
|
console.log("steps", steps, index)
|
||||||
|
let b = this.blocks[index]
|
||||||
|
|
||||||
// 计算移动路径
|
// 计算移动路径
|
||||||
let path = this.calculatePath(index, steps);
|
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
|
USERDATA.total_ticket_count = this._game_data.total_ticket_count
|
||||||
this._is_playing = false
|
this._is_playing = false
|
||||||
this.initUserData()
|
this.initUserData()
|
||||||
this.swichBuyAndPlay()
|
|
||||||
this.btnPlayWhite()
|
|
||||||
}, 1)
|
}, 1)
|
||||||
}, 1.2)
|
}, 1.2)
|
||||||
}else {
|
}else {
|
||||||
@@ -395,8 +410,7 @@ export class PageMain extends BaseView {
|
|||||||
/** 跟随闪烁 */
|
/** 跟随闪烁 */
|
||||||
this.scheduleOnce(() => {
|
this.scheduleOnce(() => {
|
||||||
let n = this._sign_position.findIndex(v => v == targetPos)
|
let n = this._sign_position.findIndex(v => v == targetPos)
|
||||||
let nowPoint = this._b_sequence[n]
|
let light = this.blocks[n].getChildByName("light")
|
||||||
let light = this.blocks.getChildByName(nowPoint).getChildByName("light")
|
|
||||||
light.active = true
|
light.active = true
|
||||||
let opc = light.getComponent(UIOpacity)
|
let opc = light.getComponent(UIOpacity)
|
||||||
opc.opacity = 0
|
opc.opacity = 0
|
||||||
@@ -416,13 +430,13 @@ export class PageMain extends BaseView {
|
|||||||
if (index + 1 >= path.length) {
|
if (index + 1 >= path.length) {
|
||||||
this.scheduleOnce(() => {
|
this.scheduleOnce(() => {
|
||||||
this.sign.active = false;
|
this.sign.active = false;
|
||||||
let b = this._b_sequence[lastIndex]
|
let b = this.blocks[lastIndex]
|
||||||
if (this._game_data.win_coin >= 0){
|
if (this._game_data.win_coin >= 0){
|
||||||
app.manager.sound.playEffect({name : "effect/eff_start"})
|
app.manager.sound.playEffect({name : "effect/eff_start"})
|
||||||
}else{
|
}else{
|
||||||
app.manager.sound.playEffect({name : "effect/eff_finish", volume: 0.5})
|
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);
|
}, 0.5);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -453,6 +467,10 @@ export class PageMain extends BaseView {
|
|||||||
this.video_bg.clip = this.video_normal
|
this.video_bg.clip = this.video_normal
|
||||||
}, 3.2);
|
}, 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;
|
let blinkCount = 0;
|
||||||
const blink = () => {
|
const blink = () => {
|
||||||
tween(opc)
|
tween(opc)
|
||||||
@@ -473,13 +491,9 @@ export class PageMain extends BaseView {
|
|||||||
let cb = () => {
|
let cb = () => {
|
||||||
lab.destroy()
|
lab.destroy()
|
||||||
USERDATA.coin = this._game_data.coin
|
USERDATA.coin = this._game_data.coin
|
||||||
USERDATA.total_ticket_count = this._game_data.total_ticket_count
|
|
||||||
this.initUserData()
|
this.initUserData()
|
||||||
this.swichBuyAndPlay()
|
if (USERDATA.coin >= this._ante_data[this._ante_index].mult * DEFAULT_COST){
|
||||||
if (USERDATA.total_ticket_count > 0){
|
|
||||||
this.btnGameStart()
|
this.btnGameStart()
|
||||||
}else{
|
|
||||||
this.btnPlayWhite()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// T5是再来一次,不需要飘字
|
// T5是再来一次,不需要飘字
|
||||||
@@ -487,7 +501,8 @@ export class PageMain extends BaseView {
|
|||||||
let pos = new Vec3(node.parent.position.x, node.parent.position.y + 80, 0 )
|
let pos = new Vec3(node.parent.position.x, node.parent.position.y + 80, 0 )
|
||||||
lab.setPosition(pos)
|
lab.setPosition(pos)
|
||||||
lab.active = true
|
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"})
|
app.manager.sound.playEffect({name : this._game_data.win_coin > 0 ? "effect/eff_win" : "effect/eff_lose"})
|
||||||
tween(lab)
|
tween(lab)
|
||||||
.by(1, { position: new Vec3(0, 200, 0) })
|
.by(1, { position: new Vec3(0, 200, 0) })
|
||||||
@@ -512,9 +527,7 @@ export class PageMain extends BaseView {
|
|||||||
}
|
}
|
||||||
USERDATA.coin = this._game_data.coin
|
USERDATA.coin = this._game_data.coin
|
||||||
USERDATA.total_ticket_count = this._game_data.total_ticket_count
|
USERDATA.total_ticket_count = this._game_data.total_ticket_count
|
||||||
this.swichBuyAndPlay()
|
|
||||||
this.initUserData()
|
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",
|
"ver": "1.0.27",
|
||||||
"importer": "image",
|
"importer": "image",
|
||||||
"imported": true,
|
"imported": true,
|
||||||
"uuid": "4bac3685-d90c-4eac-8ec2-7d2751061223",
|
"uuid": "cbbb1174-140b-4c80-b812-d76e8592ea04",
|
||||||
"files": [
|
"files": [
|
||||||
".json",
|
".json",
|
||||||
".png"
|
".png"
|
||||||
@@ -10,14 +10,14 @@
|
|||||||
"subMetas": {
|
"subMetas": {
|
||||||
"6c48a": {
|
"6c48a": {
|
||||||
"importer": "texture",
|
"importer": "texture",
|
||||||
"uuid": "4bac3685-d90c-4eac-8ec2-7d2751061223@6c48a",
|
"uuid": "cbbb1174-140b-4c80-b812-d76e8592ea04@6c48a",
|
||||||
"displayName": "main_bg_auto",
|
"displayName": "main_bg_bottom",
|
||||||
"id": "6c48a",
|
"id": "6c48a",
|
||||||
"name": "texture",
|
"name": "texture",
|
||||||
"userData": {
|
"userData": {
|
||||||
"wrapModeS": "clamp-to-edge",
|
"wrapModeS": "clamp-to-edge",
|
||||||
"wrapModeT": "clamp-to-edge",
|
"wrapModeT": "clamp-to-edge",
|
||||||
"imageUuidOrDatabaseUri": "4bac3685-d90c-4eac-8ec2-7d2751061223",
|
"imageUuidOrDatabaseUri": "cbbb1174-140b-4c80-b812-d76e8592ea04",
|
||||||
"isUuid": true,
|
"isUuid": true,
|
||||||
"visible": false,
|
"visible": false,
|
||||||
"minfilter": "linear",
|
"minfilter": "linear",
|
||||||
@@ -34,8 +34,8 @@
|
|||||||
},
|
},
|
||||||
"f9941": {
|
"f9941": {
|
||||||
"importer": "sprite-frame",
|
"importer": "sprite-frame",
|
||||||
"uuid": "4bac3685-d90c-4eac-8ec2-7d2751061223@f9941",
|
"uuid": "cbbb1174-140b-4c80-b812-d76e8592ea04@f9941",
|
||||||
"displayName": "main_bg_auto",
|
"displayName": "main_bg_bottom",
|
||||||
"id": "f9941",
|
"id": "f9941",
|
||||||
"name": "spriteFrame",
|
"name": "spriteFrame",
|
||||||
"userData": {
|
"userData": {
|
||||||
@@ -46,10 +46,10 @@
|
|||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 0,
|
"trimX": 0,
|
||||||
"trimY": 0,
|
"trimY": 0,
|
||||||
"width": 152,
|
"width": 1080,
|
||||||
"height": 82,
|
"height": 223,
|
||||||
"rawWidth": 152,
|
"rawWidth": 1080,
|
||||||
"rawHeight": 82,
|
"rawHeight": 223,
|
||||||
"borderTop": 0,
|
"borderTop": 0,
|
||||||
"borderBottom": 0,
|
"borderBottom": 0,
|
||||||
"borderLeft": 0,
|
"borderLeft": 0,
|
||||||
@@ -61,17 +61,17 @@
|
|||||||
"meshType": 0,
|
"meshType": 0,
|
||||||
"vertices": {
|
"vertices": {
|
||||||
"rawPosition": [
|
"rawPosition": [
|
||||||
-76,
|
-540,
|
||||||
-41,
|
-111.5,
|
||||||
0,
|
0,
|
||||||
76,
|
540,
|
||||||
-41,
|
-111.5,
|
||||||
0,
|
0,
|
||||||
-76,
|
-540,
|
||||||
41,
|
111.5,
|
||||||
0,
|
0,
|
||||||
76,
|
540,
|
||||||
41,
|
111.5,
|
||||||
0
|
0
|
||||||
],
|
],
|
||||||
"indexes": [
|
"indexes": [
|
||||||
@@ -84,12 +84,12 @@
|
|||||||
],
|
],
|
||||||
"uv": [
|
"uv": [
|
||||||
0,
|
0,
|
||||||
82,
|
223,
|
||||||
152,
|
1080,
|
||||||
82,
|
223,
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
152,
|
1080,
|
||||||
0
|
0
|
||||||
],
|
],
|
||||||
"nuv": [
|
"nuv": [
|
||||||
@@ -103,18 +103,18 @@
|
|||||||
1
|
1
|
||||||
],
|
],
|
||||||
"minPos": [
|
"minPos": [
|
||||||
-76,
|
-540,
|
||||||
-41,
|
-111.5,
|
||||||
0
|
0
|
||||||
],
|
],
|
||||||
"maxPos": [
|
"maxPos": [
|
||||||
76,
|
540,
|
||||||
41,
|
111.5,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"isUuid": true,
|
"isUuid": true,
|
||||||
"imageUuidOrDatabaseUri": "4bac3685-d90c-4eac-8ec2-7d2751061223@6c48a",
|
"imageUuidOrDatabaseUri": "cbbb1174-140b-4c80-b812-d76e8592ea04@6c48a",
|
||||||
"atlasUuid": ""
|
"atlasUuid": ""
|
||||||
},
|
},
|
||||||
"ver": "1.0.12",
|
"ver": "1.0.12",
|
||||||
@@ -129,7 +129,7 @@
|
|||||||
"type": "sprite-frame",
|
"type": "sprite-frame",
|
||||||
"hasAlpha": true,
|
"hasAlpha": true,
|
||||||
"fixAlphaTransparencyArtifacts": false,
|
"fixAlphaTransparencyArtifacts": false,
|
||||||
"redirect": "4bac3685-d90c-4eac-8ec2-7d2751061223@6c48a",
|
"redirect": "cbbb1174-140b-4c80-b812-d76e8592ea04@6c48a",
|
||||||
"compressSettings": {
|
"compressSettings": {
|
||||||
"useCompressTexture": true,
|
"useCompressTexture": true,
|
||||||
"presetId": "e1UHIKee1GRqns7LEix3IH"
|
"presetId": "e1UHIKee1GRqns7LEix3IH"
|
||||||
|
Before Width: | Height: | Size: 150 KiB After Width: | Height: | Size: 4.4 KiB |
@@ -46,10 +46,10 @@
|
|||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 0,
|
"trimX": 0,
|
||||||
"trimY": 0,
|
"trimY": 0,
|
||||||
"width": 609,
|
"width": 166,
|
||||||
"height": 250,
|
"height": 99,
|
||||||
"rawWidth": 609,
|
"rawWidth": 166,
|
||||||
"rawHeight": 250,
|
"rawHeight": 99,
|
||||||
"borderTop": 0,
|
"borderTop": 0,
|
||||||
"borderBottom": 0,
|
"borderBottom": 0,
|
||||||
"borderLeft": 0,
|
"borderLeft": 0,
|
||||||
@@ -61,17 +61,17 @@
|
|||||||
"meshType": 0,
|
"meshType": 0,
|
||||||
"vertices": {
|
"vertices": {
|
||||||
"rawPosition": [
|
"rawPosition": [
|
||||||
-304.5,
|
-83,
|
||||||
-125,
|
-49.5,
|
||||||
0,
|
0,
|
||||||
304.5,
|
83,
|
||||||
-125,
|
-49.5,
|
||||||
0,
|
0,
|
||||||
-304.5,
|
-83,
|
||||||
125,
|
49.5,
|
||||||
0,
|
0,
|
||||||
304.5,
|
83,
|
||||||
125,
|
49.5,
|
||||||
0
|
0
|
||||||
],
|
],
|
||||||
"indexes": [
|
"indexes": [
|
||||||
@@ -84,12 +84,12 @@
|
|||||||
],
|
],
|
||||||
"uv": [
|
"uv": [
|
||||||
0,
|
0,
|
||||||
250,
|
99,
|
||||||
609,
|
166,
|
||||||
250,
|
99,
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
609,
|
166,
|
||||||
0
|
0
|
||||||
],
|
],
|
||||||
"nuv": [
|
"nuv": [
|
||||||
@@ -103,13 +103,13 @@
|
|||||||
1
|
1
|
||||||
],
|
],
|
||||||
"minPos": [
|
"minPos": [
|
||||||
-304.5,
|
-83,
|
||||||
-125,
|
-49.5,
|
||||||
0
|
0
|
||||||
],
|
],
|
||||||
"maxPos": [
|
"maxPos": [
|
||||||
304.5,
|
83,
|
||||||
125,
|
49.5,
|
||||||
0
|
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": {
|
"6c48a": {
|
||||||
"importer": "texture",
|
"importer": "texture",
|
||||||
"uuid": "fd3c5545-0fae-4f1c-8f7c-8309959a1a87@6c48a",
|
"uuid": "fd3c5545-0fae-4f1c-8f7c-8309959a1a87@6c48a",
|
||||||
"displayName": "main_btn_play_bg",
|
"displayName": "main_btn_play",
|
||||||
"id": "6c48a",
|
"id": "6c48a",
|
||||||
"name": "texture",
|
"name": "texture",
|
||||||
"userData": {
|
"userData": {
|
||||||
@@ -35,7 +35,7 @@
|
|||||||
"f9941": {
|
"f9941": {
|
||||||
"importer": "sprite-frame",
|
"importer": "sprite-frame",
|
||||||
"uuid": "fd3c5545-0fae-4f1c-8f7c-8309959a1a87@f9941",
|
"uuid": "fd3c5545-0fae-4f1c-8f7c-8309959a1a87@f9941",
|
||||||
"displayName": "main_btn_play_bg",
|
"displayName": "main_btn_play",
|
||||||
"id": "f9941",
|
"id": "f9941",
|
||||||
"name": "spriteFrame",
|
"name": "spriteFrame",
|
||||||
"userData": {
|
"userData": {
|
||||||
@@ -46,10 +46,10 @@
|
|||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 0,
|
"trimX": 0,
|
||||||
"trimY": 0,
|
"trimY": 0,
|
||||||
"width": 609,
|
"width": 166,
|
||||||
"height": 250,
|
"height": 99,
|
||||||
"rawWidth": 609,
|
"rawWidth": 166,
|
||||||
"rawHeight": 250,
|
"rawHeight": 99,
|
||||||
"borderTop": 0,
|
"borderTop": 0,
|
||||||
"borderBottom": 0,
|
"borderBottom": 0,
|
||||||
"borderLeft": 0,
|
"borderLeft": 0,
|
||||||
@@ -61,17 +61,17 @@
|
|||||||
"meshType": 0,
|
"meshType": 0,
|
||||||
"vertices": {
|
"vertices": {
|
||||||
"rawPosition": [
|
"rawPosition": [
|
||||||
-304.5,
|
-83,
|
||||||
-125,
|
-49.5,
|
||||||
0,
|
0,
|
||||||
304.5,
|
83,
|
||||||
-125,
|
-49.5,
|
||||||
0,
|
0,
|
||||||
-304.5,
|
-83,
|
||||||
125,
|
49.5,
|
||||||
0,
|
0,
|
||||||
304.5,
|
83,
|
||||||
125,
|
49.5,
|
||||||
0
|
0
|
||||||
],
|
],
|
||||||
"indexes": [
|
"indexes": [
|
||||||
@@ -84,12 +84,12 @@
|
|||||||
],
|
],
|
||||||
"uv": [
|
"uv": [
|
||||||
0,
|
0,
|
||||||
250,
|
99,
|
||||||
609,
|
166,
|
||||||
250,
|
99,
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
609,
|
166,
|
||||||
0
|
0
|
||||||
],
|
],
|
||||||
"nuv": [
|
"nuv": [
|
||||||
@@ -103,13 +103,13 @@
|
|||||||
1
|
1
|
||||||
],
|
],
|
||||||
"minPos": [
|
"minPos": [
|
||||||
-304.5,
|
-83,
|
||||||
-125,
|
-49.5,
|
||||||
0
|
0
|
||||||
],
|
],
|
||||||
"maxPos": [
|
"maxPos": [
|
||||||
304.5,
|
83,
|
||||||
125,
|
49.5,
|
||||||
0
|
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",
|
"type": "sprite-frame",
|
||||||
"hasAlpha": true,
|
"hasAlpha": true,
|
||||||
"fixAlphaTransparencyArtifacts": false,
|
"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",
|
"ver": "1.0.27",
|
||||||
"importer": "image",
|
"importer": "image",
|
||||||
"imported": true,
|
"imported": true,
|
||||||
"uuid": "664fe045-852c-4908-8ec1-f8883b03fb1e",
|
"uuid": "82bd16a6-ccc9-44b7-8be8-73aef85c9611",
|
||||||
"files": [
|
"files": [
|
||||||
".json",
|
".json",
|
||||||
".png"
|
".png"
|
||||||
@@ -10,14 +10,14 @@
|
|||||||
"subMetas": {
|
"subMetas": {
|
||||||
"6c48a": {
|
"6c48a": {
|
||||||
"importer": "texture",
|
"importer": "texture",
|
||||||
"uuid": "664fe045-852c-4908-8ec1-f8883b03fb1e@6c48a",
|
"uuid": "82bd16a6-ccc9-44b7-8be8-73aef85c9611@6c48a",
|
||||||
"displayName": "main_lab_off_en",
|
"displayName": "main_icon_add",
|
||||||
"id": "6c48a",
|
"id": "6c48a",
|
||||||
"name": "texture",
|
"name": "texture",
|
||||||
"userData": {
|
"userData": {
|
||||||
"wrapModeS": "clamp-to-edge",
|
"wrapModeS": "clamp-to-edge",
|
||||||
"wrapModeT": "clamp-to-edge",
|
"wrapModeT": "clamp-to-edge",
|
||||||
"imageUuidOrDatabaseUri": "664fe045-852c-4908-8ec1-f8883b03fb1e",
|
"imageUuidOrDatabaseUri": "82bd16a6-ccc9-44b7-8be8-73aef85c9611",
|
||||||
"isUuid": true,
|
"isUuid": true,
|
||||||
"visible": false,
|
"visible": false,
|
||||||
"minfilter": "linear",
|
"minfilter": "linear",
|
||||||
@@ -34,8 +34,8 @@
|
|||||||
},
|
},
|
||||||
"f9941": {
|
"f9941": {
|
||||||
"importer": "sprite-frame",
|
"importer": "sprite-frame",
|
||||||
"uuid": "664fe045-852c-4908-8ec1-f8883b03fb1e@f9941",
|
"uuid": "82bd16a6-ccc9-44b7-8be8-73aef85c9611@f9941",
|
||||||
"displayName": "main_lab_off_en",
|
"displayName": "main_icon_add",
|
||||||
"id": "f9941",
|
"id": "f9941",
|
||||||
"name": "spriteFrame",
|
"name": "spriteFrame",
|
||||||
"userData": {
|
"userData": {
|
||||||
@@ -46,10 +46,10 @@
|
|||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 0,
|
"trimX": 0,
|
||||||
"trimY": 0,
|
"trimY": 0,
|
||||||
"width": 57,
|
"width": 78,
|
||||||
"height": 39,
|
"height": 85,
|
||||||
"rawWidth": 57,
|
"rawWidth": 78,
|
||||||
"rawHeight": 39,
|
"rawHeight": 85,
|
||||||
"borderTop": 0,
|
"borderTop": 0,
|
||||||
"borderBottom": 0,
|
"borderBottom": 0,
|
||||||
"borderLeft": 0,
|
"borderLeft": 0,
|
||||||
@@ -61,17 +61,17 @@
|
|||||||
"meshType": 0,
|
"meshType": 0,
|
||||||
"vertices": {
|
"vertices": {
|
||||||
"rawPosition": [
|
"rawPosition": [
|
||||||
-28.5,
|
-39,
|
||||||
-19.5,
|
-42.5,
|
||||||
0,
|
0,
|
||||||
28.5,
|
39,
|
||||||
-19.5,
|
-42.5,
|
||||||
0,
|
0,
|
||||||
-28.5,
|
-39,
|
||||||
19.5,
|
42.5,
|
||||||
0,
|
0,
|
||||||
28.5,
|
39,
|
||||||
19.5,
|
42.5,
|
||||||
0
|
0
|
||||||
],
|
],
|
||||||
"indexes": [
|
"indexes": [
|
||||||
@@ -84,12 +84,12 @@
|
|||||||
],
|
],
|
||||||
"uv": [
|
"uv": [
|
||||||
0,
|
0,
|
||||||
39,
|
85,
|
||||||
57,
|
78,
|
||||||
39,
|
85,
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
57,
|
78,
|
||||||
0
|
0
|
||||||
],
|
],
|
||||||
"nuv": [
|
"nuv": [
|
||||||
@@ -103,18 +103,18 @@
|
|||||||
1
|
1
|
||||||
],
|
],
|
||||||
"minPos": [
|
"minPos": [
|
||||||
-28.5,
|
-39,
|
||||||
-19.5,
|
-42.5,
|
||||||
0
|
0
|
||||||
],
|
],
|
||||||
"maxPos": [
|
"maxPos": [
|
||||||
28.5,
|
39,
|
||||||
19.5,
|
42.5,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"isUuid": true,
|
"isUuid": true,
|
||||||
"imageUuidOrDatabaseUri": "664fe045-852c-4908-8ec1-f8883b03fb1e@6c48a",
|
"imageUuidOrDatabaseUri": "82bd16a6-ccc9-44b7-8be8-73aef85c9611@6c48a",
|
||||||
"atlasUuid": ""
|
"atlasUuid": ""
|
||||||
},
|
},
|
||||||
"ver": "1.0.12",
|
"ver": "1.0.12",
|
||||||
@@ -129,7 +129,7 @@
|
|||||||
"type": "sprite-frame",
|
"type": "sprite-frame",
|
||||||
"hasAlpha": true,
|
"hasAlpha": true,
|
||||||
"fixAlphaTransparencyArtifacts": false,
|
"fixAlphaTransparencyArtifacts": false,
|
||||||
"redirect": "664fe045-852c-4908-8ec1-f8883b03fb1e@6c48a",
|
"redirect": "82bd16a6-ccc9-44b7-8be8-73aef85c9611@6c48a",
|
||||||
"compressSettings": {
|
"compressSettings": {
|
||||||
"useCompressTexture": true,
|
"useCompressTexture": true,
|
||||||
"presetId": "e1UHIKee1GRqns7LEix3IH"
|
"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",
|
"ver": "1.0.27",
|
||||||
"importer": "image",
|
"importer": "image",
|
||||||
"imported": true,
|
"imported": true,
|
||||||
"uuid": "5c8221c4-26b6-48da-9f85-a49f47c52ea9",
|
"uuid": "1734d2ea-812c-48e7-942d-ce0b2f875bbe",
|
||||||
"files": [
|
"files": [
|
||||||
".json",
|
".json",
|
||||||
".png"
|
".png"
|
||||||
@@ -10,14 +10,14 @@
|
|||||||
"subMetas": {
|
"subMetas": {
|
||||||
"6c48a": {
|
"6c48a": {
|
||||||
"importer": "texture",
|
"importer": "texture",
|
||||||
"uuid": "5c8221c4-26b6-48da-9f85-a49f47c52ea9@6c48a",
|
"uuid": "1734d2ea-812c-48e7-942d-ce0b2f875bbe@6c48a",
|
||||||
"displayName": "main_icon_noauto",
|
"displayName": "main_icon_sub",
|
||||||
"id": "6c48a",
|
"id": "6c48a",
|
||||||
"name": "texture",
|
"name": "texture",
|
||||||
"userData": {
|
"userData": {
|
||||||
"wrapModeS": "clamp-to-edge",
|
"wrapModeS": "clamp-to-edge",
|
||||||
"wrapModeT": "clamp-to-edge",
|
"wrapModeT": "clamp-to-edge",
|
||||||
"imageUuidOrDatabaseUri": "5c8221c4-26b6-48da-9f85-a49f47c52ea9",
|
"imageUuidOrDatabaseUri": "1734d2ea-812c-48e7-942d-ce0b2f875bbe",
|
||||||
"isUuid": true,
|
"isUuid": true,
|
||||||
"visible": false,
|
"visible": false,
|
||||||
"minfilter": "linear",
|
"minfilter": "linear",
|
||||||
@@ -34,8 +34,8 @@
|
|||||||
},
|
},
|
||||||
"f9941": {
|
"f9941": {
|
||||||
"importer": "sprite-frame",
|
"importer": "sprite-frame",
|
||||||
"uuid": "5c8221c4-26b6-48da-9f85-a49f47c52ea9@f9941",
|
"uuid": "1734d2ea-812c-48e7-942d-ce0b2f875bbe@f9941",
|
||||||
"displayName": "main_icon_noauto",
|
"displayName": "main_icon_sub",
|
||||||
"id": "f9941",
|
"id": "f9941",
|
||||||
"name": "spriteFrame",
|
"name": "spriteFrame",
|
||||||
"userData": {
|
"userData": {
|
||||||
@@ -46,10 +46,10 @@
|
|||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 0,
|
"trimX": 0,
|
||||||
"trimY": 0,
|
"trimY": 0,
|
||||||
"width": 74,
|
"width": 77,
|
||||||
"height": 77,
|
"height": 85,
|
||||||
"rawWidth": 74,
|
"rawWidth": 77,
|
||||||
"rawHeight": 77,
|
"rawHeight": 85,
|
||||||
"borderTop": 0,
|
"borderTop": 0,
|
||||||
"borderBottom": 0,
|
"borderBottom": 0,
|
||||||
"borderLeft": 0,
|
"borderLeft": 0,
|
||||||
@@ -61,17 +61,17 @@
|
|||||||
"meshType": 0,
|
"meshType": 0,
|
||||||
"vertices": {
|
"vertices": {
|
||||||
"rawPosition": [
|
"rawPosition": [
|
||||||
-37,
|
|
||||||
-38.5,
|
-38.5,
|
||||||
|
-42.5,
|
||||||
|
0,
|
||||||
|
38.5,
|
||||||
|
-42.5,
|
||||||
0,
|
0,
|
||||||
37,
|
|
||||||
-38.5,
|
-38.5,
|
||||||
|
42.5,
|
||||||
0,
|
0,
|
||||||
-37,
|
|
||||||
38.5,
|
|
||||||
0,
|
|
||||||
37,
|
|
||||||
38.5,
|
38.5,
|
||||||
|
42.5,
|
||||||
0
|
0
|
||||||
],
|
],
|
||||||
"indexes": [
|
"indexes": [
|
||||||
@@ -84,12 +84,12 @@
|
|||||||
],
|
],
|
||||||
"uv": [
|
"uv": [
|
||||||
0,
|
0,
|
||||||
|
85,
|
||||||
77,
|
77,
|
||||||
74,
|
85,
|
||||||
77,
|
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
74,
|
77,
|
||||||
0
|
0
|
||||||
],
|
],
|
||||||
"nuv": [
|
"nuv": [
|
||||||
@@ -103,18 +103,18 @@
|
|||||||
1
|
1
|
||||||
],
|
],
|
||||||
"minPos": [
|
"minPos": [
|
||||||
-37,
|
|
||||||
-38.5,
|
-38.5,
|
||||||
|
-42.5,
|
||||||
0
|
0
|
||||||
],
|
],
|
||||||
"maxPos": [
|
"maxPos": [
|
||||||
37,
|
|
||||||
38.5,
|
38.5,
|
||||||
|
42.5,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"isUuid": true,
|
"isUuid": true,
|
||||||
"imageUuidOrDatabaseUri": "5c8221c4-26b6-48da-9f85-a49f47c52ea9@6c48a",
|
"imageUuidOrDatabaseUri": "1734d2ea-812c-48e7-942d-ce0b2f875bbe@6c48a",
|
||||||
"atlasUuid": ""
|
"atlasUuid": ""
|
||||||
},
|
},
|
||||||
"ver": "1.0.12",
|
"ver": "1.0.12",
|
||||||
@@ -129,7 +129,7 @@
|
|||||||
"type": "sprite-frame",
|
"type": "sprite-frame",
|
||||||
"hasAlpha": true,
|
"hasAlpha": true,
|
||||||
"fixAlphaTransparencyArtifacts": false,
|
"fixAlphaTransparencyArtifacts": false,
|
||||||
"redirect": "5c8221c4-26b6-48da-9f85-a49f47c52ea9@6c48a",
|
"redirect": "1734d2ea-812c-48e7-942d-ce0b2f875bbe@6c48a",
|
||||||
"compressSettings": {
|
"compressSettings": {
|
||||||
"useCompressTexture": true,
|
"useCompressTexture": true,
|
||||||
"presetId": "e1UHIKee1GRqns7LEix3IH"
|
"presetId": "e1UHIKee1GRqns7LEix3IH"
|
||||||
|
After Width: | Height: | Size: 3.3 KiB |
@@ -2,7 +2,7 @@
|
|||||||
"ver": "1.0.27",
|
"ver": "1.0.27",
|
||||||
"importer": "image",
|
"importer": "image",
|
||||||
"imported": true,
|
"imported": true,
|
||||||
"uuid": "fa7af89f-7bdc-4b63-8875-6f5c4fb9949d",
|
"uuid": "f9a676de-678e-4c75-9bc1-7a1475092c67",
|
||||||
"files": [
|
"files": [
|
||||||
".json",
|
".json",
|
||||||
".png"
|
".png"
|
||||||
@@ -10,14 +10,14 @@
|
|||||||
"subMetas": {
|
"subMetas": {
|
||||||
"6c48a": {
|
"6c48a": {
|
||||||
"importer": "texture",
|
"importer": "texture",
|
||||||
"uuid": "fa7af89f-7bdc-4b63-8875-6f5c4fb9949d@6c48a",
|
"uuid": "f9a676de-678e-4c75-9bc1-7a1475092c67@6c48a",
|
||||||
"displayName": "main_icon_auto",
|
"displayName": "main_lab_auto_en",
|
||||||
"id": "6c48a",
|
"id": "6c48a",
|
||||||
"name": "texture",
|
"name": "texture",
|
||||||
"userData": {
|
"userData": {
|
||||||
"wrapModeS": "clamp-to-edge",
|
"wrapModeS": "clamp-to-edge",
|
||||||
"wrapModeT": "clamp-to-edge",
|
"wrapModeT": "clamp-to-edge",
|
||||||
"imageUuidOrDatabaseUri": "fa7af89f-7bdc-4b63-8875-6f5c4fb9949d",
|
"imageUuidOrDatabaseUri": "f9a676de-678e-4c75-9bc1-7a1475092c67",
|
||||||
"isUuid": true,
|
"isUuid": true,
|
||||||
"visible": false,
|
"visible": false,
|
||||||
"minfilter": "linear",
|
"minfilter": "linear",
|
||||||
@@ -34,8 +34,8 @@
|
|||||||
},
|
},
|
||||||
"f9941": {
|
"f9941": {
|
||||||
"importer": "sprite-frame",
|
"importer": "sprite-frame",
|
||||||
"uuid": "fa7af89f-7bdc-4b63-8875-6f5c4fb9949d@f9941",
|
"uuid": "f9a676de-678e-4c75-9bc1-7a1475092c67@f9941",
|
||||||
"displayName": "main_icon_auto",
|
"displayName": "main_lab_auto_en",
|
||||||
"id": "f9941",
|
"id": "f9941",
|
||||||
"name": "spriteFrame",
|
"name": "spriteFrame",
|
||||||
"userData": {
|
"userData": {
|
||||||
@@ -46,10 +46,10 @@
|
|||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 0,
|
"trimX": 0,
|
||||||
"trimY": 0,
|
"trimY": 0,
|
||||||
"width": 74,
|
"width": 117,
|
||||||
"height": 77,
|
"height": 40,
|
||||||
"rawWidth": 74,
|
"rawWidth": 117,
|
||||||
"rawHeight": 77,
|
"rawHeight": 40,
|
||||||
"borderTop": 0,
|
"borderTop": 0,
|
||||||
"borderBottom": 0,
|
"borderBottom": 0,
|
||||||
"borderLeft": 0,
|
"borderLeft": 0,
|
||||||
@@ -61,17 +61,17 @@
|
|||||||
"meshType": 0,
|
"meshType": 0,
|
||||||
"vertices": {
|
"vertices": {
|
||||||
"rawPosition": [
|
"rawPosition": [
|
||||||
-37,
|
-58.5,
|
||||||
-38.5,
|
-20,
|
||||||
0,
|
0,
|
||||||
37,
|
58.5,
|
||||||
-38.5,
|
-20,
|
||||||
0,
|
0,
|
||||||
-37,
|
-58.5,
|
||||||
38.5,
|
20,
|
||||||
0,
|
0,
|
||||||
37,
|
58.5,
|
||||||
38.5,
|
20,
|
||||||
0
|
0
|
||||||
],
|
],
|
||||||
"indexes": [
|
"indexes": [
|
||||||
@@ -84,12 +84,12 @@
|
|||||||
],
|
],
|
||||||
"uv": [
|
"uv": [
|
||||||
0,
|
0,
|
||||||
77,
|
40,
|
||||||
74,
|
117,
|
||||||
77,
|
40,
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
74,
|
117,
|
||||||
0
|
0
|
||||||
],
|
],
|
||||||
"nuv": [
|
"nuv": [
|
||||||
@@ -103,18 +103,18 @@
|
|||||||
1
|
1
|
||||||
],
|
],
|
||||||
"minPos": [
|
"minPos": [
|
||||||
-37,
|
-58.5,
|
||||||
-38.5,
|
-20,
|
||||||
0
|
0
|
||||||
],
|
],
|
||||||
"maxPos": [
|
"maxPos": [
|
||||||
37,
|
58.5,
|
||||||
38.5,
|
20,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"isUuid": true,
|
"isUuid": true,
|
||||||
"imageUuidOrDatabaseUri": "fa7af89f-7bdc-4b63-8875-6f5c4fb9949d@6c48a",
|
"imageUuidOrDatabaseUri": "f9a676de-678e-4c75-9bc1-7a1475092c67@6c48a",
|
||||||
"atlasUuid": ""
|
"atlasUuid": ""
|
||||||
},
|
},
|
||||||
"ver": "1.0.12",
|
"ver": "1.0.12",
|
||||||
@@ -129,7 +129,7 @@
|
|||||||
"type": "sprite-frame",
|
"type": "sprite-frame",
|
||||||
"hasAlpha": true,
|
"hasAlpha": true,
|
||||||
"fixAlphaTransparencyArtifacts": false,
|
"fixAlphaTransparencyArtifacts": false,
|
||||||
"redirect": "fa7af89f-7bdc-4b63-8875-6f5c4fb9949d@6c48a",
|
"redirect": "f9a676de-678e-4c75-9bc1-7a1475092c67@6c48a",
|
||||||
"compressSettings": {
|
"compressSettings": {
|
||||||
"useCompressTexture": true,
|
"useCompressTexture": true,
|
||||||
"presetId": "e1UHIKee1GRqns7LEix3IH"
|
"presetId": "e1UHIKee1GRqns7LEix3IH"
|
||||||
|
After Width: | Height: | Size: 3.0 KiB |
@@ -2,7 +2,7 @@
|
|||||||
"ver": "1.0.27",
|
"ver": "1.0.27",
|
||||||
"importer": "image",
|
"importer": "image",
|
||||||
"imported": true,
|
"imported": true,
|
||||||
"uuid": "f98fd16c-c485-4196-a910-002c9bab6268",
|
"uuid": "e7236390-d7dc-421f-97b7-4f2feb20ed4a",
|
||||||
"files": [
|
"files": [
|
||||||
".json",
|
".json",
|
||||||
".png"
|
".png"
|
||||||
@@ -10,14 +10,14 @@
|
|||||||
"subMetas": {
|
"subMetas": {
|
||||||
"6c48a": {
|
"6c48a": {
|
||||||
"importer": "texture",
|
"importer": "texture",
|
||||||
"uuid": "f98fd16c-c485-4196-a910-002c9bab6268@6c48a",
|
"uuid": "e7236390-d7dc-421f-97b7-4f2feb20ed4a@6c48a",
|
||||||
"displayName": "main_lab_give1_en",
|
"displayName": "main_lab_auto_zh",
|
||||||
"id": "6c48a",
|
"id": "6c48a",
|
||||||
"name": "texture",
|
"name": "texture",
|
||||||
"userData": {
|
"userData": {
|
||||||
"wrapModeS": "clamp-to-edge",
|
"wrapModeS": "clamp-to-edge",
|
||||||
"wrapModeT": "clamp-to-edge",
|
"wrapModeT": "clamp-to-edge",
|
||||||
"imageUuidOrDatabaseUri": "f98fd16c-c485-4196-a910-002c9bab6268",
|
"imageUuidOrDatabaseUri": "e7236390-d7dc-421f-97b7-4f2feb20ed4a",
|
||||||
"isUuid": true,
|
"isUuid": true,
|
||||||
"visible": false,
|
"visible": false,
|
||||||
"minfilter": "linear",
|
"minfilter": "linear",
|
||||||
@@ -34,8 +34,8 @@
|
|||||||
},
|
},
|
||||||
"f9941": {
|
"f9941": {
|
||||||
"importer": "sprite-frame",
|
"importer": "sprite-frame",
|
||||||
"uuid": "f98fd16c-c485-4196-a910-002c9bab6268@f9941",
|
"uuid": "e7236390-d7dc-421f-97b7-4f2feb20ed4a@f9941",
|
||||||
"displayName": "main_lab_give1_en",
|
"displayName": "main_lab_auto_zh",
|
||||||
"id": "f9941",
|
"id": "f9941",
|
||||||
"name": "spriteFrame",
|
"name": "spriteFrame",
|
||||||
"userData": {
|
"userData": {
|
||||||
@@ -46,10 +46,10 @@
|
|||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 0,
|
"trimX": 0,
|
||||||
"trimY": 0,
|
"trimY": 0,
|
||||||
"width": 103,
|
"width": 93,
|
||||||
"height": 102,
|
"height": 51,
|
||||||
"rawWidth": 103,
|
"rawWidth": 93,
|
||||||
"rawHeight": 102,
|
"rawHeight": 51,
|
||||||
"borderTop": 0,
|
"borderTop": 0,
|
||||||
"borderBottom": 0,
|
"borderBottom": 0,
|
||||||
"borderLeft": 0,
|
"borderLeft": 0,
|
||||||
@@ -61,17 +61,17 @@
|
|||||||
"meshType": 0,
|
"meshType": 0,
|
||||||
"vertices": {
|
"vertices": {
|
||||||
"rawPosition": [
|
"rawPosition": [
|
||||||
-51.5,
|
-46.5,
|
||||||
-51,
|
-25.5,
|
||||||
0,
|
0,
|
||||||
51.5,
|
46.5,
|
||||||
-51,
|
-25.5,
|
||||||
0,
|
0,
|
||||||
-51.5,
|
-46.5,
|
||||||
51,
|
25.5,
|
||||||
0,
|
0,
|
||||||
51.5,
|
46.5,
|
||||||
51,
|
25.5,
|
||||||
0
|
0
|
||||||
],
|
],
|
||||||
"indexes": [
|
"indexes": [
|
||||||
@@ -84,12 +84,12 @@
|
|||||||
],
|
],
|
||||||
"uv": [
|
"uv": [
|
||||||
0,
|
0,
|
||||||
102,
|
51,
|
||||||
103,
|
93,
|
||||||
102,
|
51,
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
103,
|
93,
|
||||||
0
|
0
|
||||||
],
|
],
|
||||||
"nuv": [
|
"nuv": [
|
||||||
@@ -103,18 +103,18 @@
|
|||||||
1
|
1
|
||||||
],
|
],
|
||||||
"minPos": [
|
"minPos": [
|
||||||
-51.5,
|
-46.5,
|
||||||
-51,
|
-25.5,
|
||||||
0
|
0
|
||||||
],
|
],
|
||||||
"maxPos": [
|
"maxPos": [
|
||||||
51.5,
|
46.5,
|
||||||
51,
|
25.5,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"isUuid": true,
|
"isUuid": true,
|
||||||
"imageUuidOrDatabaseUri": "f98fd16c-c485-4196-a910-002c9bab6268@6c48a",
|
"imageUuidOrDatabaseUri": "e7236390-d7dc-421f-97b7-4f2feb20ed4a@6c48a",
|
||||||
"atlasUuid": ""
|
"atlasUuid": ""
|
||||||
},
|
},
|
||||||
"ver": "1.0.12",
|
"ver": "1.0.12",
|
||||||
@@ -129,7 +129,7 @@
|
|||||||
"type": "sprite-frame",
|
"type": "sprite-frame",
|
||||||
"hasAlpha": true,
|
"hasAlpha": true,
|
||||||
"fixAlphaTransparencyArtifacts": false,
|
"fixAlphaTransparencyArtifacts": false,
|
||||||
"redirect": "f98fd16c-c485-4196-a910-002c9bab6268@6c48a",
|
"redirect": "e7236390-d7dc-421f-97b7-4f2feb20ed4a@6c48a",
|
||||||
"compressSettings": {
|
"compressSettings": {
|
||||||
"useCompressTexture": true,
|
"useCompressTexture": true,
|
||||||
"presetId": "e1UHIKee1GRqns7LEix3IH"
|
"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,
|
"offsetY": 0,
|
||||||
"trimX": 0,
|
"trimX": 0,
|
||||||
"trimY": 0,
|
"trimY": 0,
|
||||||
"width": 264,
|
"width": 100,
|
||||||
"height": 81,
|
"height": 54,
|
||||||
"rawWidth": 264,
|
"rawWidth": 100,
|
||||||
"rawHeight": 81,
|
"rawHeight": 54,
|
||||||
"borderTop": 0,
|
"borderTop": 0,
|
||||||
"borderBottom": 0,
|
"borderBottom": 0,
|
||||||
"borderLeft": 0,
|
"borderLeft": 0,
|
||||||
@@ -61,17 +61,17 @@
|
|||||||
"meshType": 0,
|
"meshType": 0,
|
||||||
"vertices": {
|
"vertices": {
|
||||||
"rawPosition": [
|
"rawPosition": [
|
||||||
-132,
|
-50,
|
||||||
-40.5,
|
-27,
|
||||||
0,
|
0,
|
||||||
132,
|
50,
|
||||||
-40.5,
|
-27,
|
||||||
0,
|
0,
|
||||||
-132,
|
-50,
|
||||||
40.5,
|
27,
|
||||||
0,
|
0,
|
||||||
132,
|
50,
|
||||||
40.5,
|
27,
|
||||||
0
|
0
|
||||||
],
|
],
|
||||||
"indexes": [
|
"indexes": [
|
||||||
@@ -84,12 +84,12 @@
|
|||||||
],
|
],
|
||||||
"uv": [
|
"uv": [
|
||||||
0,
|
0,
|
||||||
81,
|
54,
|
||||||
264,
|
100,
|
||||||
81,
|
54,
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
264,
|
100,
|
||||||
0
|
0
|
||||||
],
|
],
|
||||||
"nuv": [
|
"nuv": [
|
||||||
@@ -103,13 +103,13 @@
|
|||||||
1
|
1
|
||||||
],
|
],
|
||||||
"minPos": [
|
"minPos": [
|
||||||
-132,
|
-50,
|
||||||
-40.5,
|
-27,
|
||||||
0
|
0
|
||||||
],
|
],
|
||||||
"maxPos": [
|
"maxPos": [
|
||||||
132,
|
50,
|
||||||
40.5,
|
27,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 3.5 KiB |
@@ -46,10 +46,10 @@
|
|||||||
"offsetY": 0,
|
"offsetY": 0,
|
||||||
"trimX": 0,
|
"trimX": 0,
|
||||||
"trimY": 0,
|
"trimY": 0,
|
||||||
"width": 348,
|
"width": 99,
|
||||||
"height": 87,
|
"height": 52,
|
||||||
"rawWidth": 348,
|
"rawWidth": 99,
|
||||||
"rawHeight": 87,
|
"rawHeight": 52,
|
||||||
"borderTop": 0,
|
"borderTop": 0,
|
||||||
"borderBottom": 0,
|
"borderBottom": 0,
|
||||||
"borderLeft": 0,
|
"borderLeft": 0,
|
||||||
@@ -61,17 +61,17 @@
|
|||||||
"meshType": 0,
|
"meshType": 0,
|
||||||
"vertices": {
|
"vertices": {
|
||||||
"rawPosition": [
|
"rawPosition": [
|
||||||
-174,
|
-49.5,
|
||||||
-43.5,
|
-26,
|
||||||
0,
|
0,
|
||||||
174,
|
49.5,
|
||||||
-43.5,
|
-26,
|
||||||
0,
|
0,
|
||||||
-174,
|
-49.5,
|
||||||
43.5,
|
26,
|
||||||
0,
|
0,
|
||||||
174,
|
49.5,
|
||||||
43.5,
|
26,
|
||||||
0
|
0
|
||||||
],
|
],
|
||||||
"indexes": [
|
"indexes": [
|
||||||
@@ -84,12 +84,12 @@
|
|||||||
],
|
],
|
||||||
"uv": [
|
"uv": [
|
||||||
0,
|
0,
|
||||||
87,
|
52,
|
||||||
348,
|
99,
|
||||||
87,
|
52,
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
348,
|
99,
|
||||||
0
|
0
|
||||||
],
|
],
|
||||||
"nuv": [
|
"nuv": [
|
||||||
@@ -103,13 +103,13 @@
|
|||||||
1
|
1
|
||||||
],
|
],
|
||||||
"minPos": [
|
"minPos": [
|
||||||
-174,
|
-49.5,
|
||||||
-43.5,
|
-26,
|
||||||
0
|
0
|
||||||
],
|
],
|
||||||
"maxPos": [
|
"maxPos": [
|
||||||
174,
|
49.5,
|
||||||
43.5,
|
26,
|
||||||
0
|
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"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -7,7 +7,7 @@ export const enum SERVER_EREA {
|
|||||||
export const NOW_SERVER_EREA : SERVER_EREA = SERVER_EREA.ZP;
|
export const NOW_SERVER_EREA : SERVER_EREA = SERVER_EREA.ZP;
|
||||||
|
|
||||||
// 默认地址
|
// 默认地址
|
||||||
const DEFAULT_URL = "https://dice-api.yuliao666.top"
|
const DEFAULT_URL = "https://dice-v3-api.yuliao666.top"
|
||||||
/** 通用版本 */
|
/** 通用版本 */
|
||||||
const DEFAULT_VERSION = "1.0.5"
|
const DEFAULT_VERSION = "1.0.5"
|
||||||
/** 测试服版本号 */
|
/** 测试服版本号 */
|
||||||
|
|||||||