first commit

This commit is contained in:
2026-05-19 11:41:11 +08:00
parent bb95804d1b
commit 046b47663b
510 changed files with 84808 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
PageMain所在文件夹
1、通过app.manager.ui.show({ name:'PageMain' })的方式加载
2、如不再需要可以直接删除此文件夹

View File

@@ -0,0 +1,14 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "616115b0-9188-44c6-8a76-26bb2fe12d3c",
"files": [],
"subMetas": {},
"userData": {
"isBundle": true,
"bundleConfigID": "auto_f7NI9WxFVIO6e8LbJGF72k",
"priority": 1,
"bundleName": "page-main"
}
}

View File

@@ -0,0 +1,4 @@
存放UI以及脚本的文件夹
1、除了UI本身外不允许存放其它任何预置体或场景资源🔥
2、UI脚本在根目录下其它脚本放到expansion目录下
3、不可单独删除此文件夹

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,13 @@
{
"ver": "1.1.50",
"importer": "prefab",
"imported": true,
"uuid": "4892f711-598c-44a7-888d-fb1ceb7ae920",
"files": [
".json"
],
"subMetas": {},
"userData": {
"syncNodeName": "PageMain"
}
}

View File

@@ -0,0 +1,245 @@
import { _decorator, Node, Sprite, Asset, ImageAsset, SpriteFrame, Texture2D, Label, tween, UIOpacity, Animation, math, RichText } from 'cc';
import BaseView from '../../../../../../extensions/app/assets/base/BaseView';
import { PageTips } from '../../tips/native/PageTips';
import { app } from 'db://assets/app/app';
import { PageRewardhistory } from '../../rewardhistory/native/PageRewardhistory';
import { Tools } from 'db://assets/res-native/tools/Tools';
import { USERDATA } from 'db://assets/res-native/data/UserData';
const { ccclass, property } = _decorator;
@ccclass('PageMain')
export class PageMain extends BaseView {
/** 音乐按钮 */
@property(Node)
btn_music: Node = null!;
/** 奖励文字 */
@property(Label)
lab_rw: Label = null!;
/** 奖励 */
@property(Node)
reward_bg: Node = null!;
@property(Node)
no_reward_bg: Node = null!;
/** 奖励icon */
@property(Sprite)
icon_rw: Sprite = null!;
/** 剩余次数 */
@property(RichText)
lab_remain: RichText = null!;
/** 骰子动画 */
@property(Node)
dices: Node[] = [];
/** 奖励 */
@property(Node)
rw_list: Node[] = [];
/** 骰子动画 */
@property(Node)
ani_dice_roll: Node = null;
/** 骰子 */
@property(Node)
roll_dices: Node[] = [];
/** 游戏名 */
@property(Node)
game_name: Node = null;
/** 是否可以开始游戏 */
private _canStart = true;
// 初始化的相关逻辑写在这
onLoad() {}
// 界面打开时的相关逻辑写在这(onShow可被多次调用-它与onHide不成对)
onShow(params: any) {
this.lab_remain.string = "CHANCE:<color=#ff5656>" + USERDATA.point.toString() + "</color>"
this.initRw()
this.startFloatingAnimation()
}
// 界面关闭时的相关逻辑写在这(已经关闭的界面不会触发onHide)
onHide(result: undefined) {
// app.manager.ui.show<PageMain>({name: 'PageMain', onHide:(result) => { 接收到return的数据并且有类型提示 }})
return result;
}
initRw(){
for (let i = 0; i < USERDATA.prize_list.length; i++) {
const element = USERDATA.prize_list[i];
Tools.remoteLoadSprite(element.pic, Tools.GetChildComp(this.rw_list[i], "icon", Sprite));
Tools.SetChildText(this.rw_list[i], "lab", element.name);
}
this._canStart = true
}
/** 点击奖励确定 */
onClickRewardSure(){
this.reward_bg.active = false
this.no_reward_bg.active = false
this._canStart = true
}
/** 点击提示 */
onClickTips(){
app.manager.ui.show<PageTips>({name: 'PageTips'})
}
/** 点击音乐 */
oncClickMusic(){
let music = app.manager.sound.isMusicPlaying
music ? app.manager.sound.stopMusic() : app.manager.sound.playDefaultMusic()
this.loadSprite(music ? "main_btn_sounds_off" : "main_btn_sounds_on", this.btn_music)
}
/** 点击历史 */
onClickRwHis(){
app.manager.ui.show<PageRewardhistory>({name: 'PageRewardhistory'})
}
/** 点击开始 */
onStartGame() {
if (!this._canStart) return;
if (USERDATA.point <= 0) {
app.manager.ui.showToast(Tools.GetLocalized("no chance"));
return;
}
this._canStart = false;
Tools.httpReq("lottery", {}, (res:any)=>{
let n = this.checkRwId(res.prize_id)
if (n == null){
app.manager.ui.showToast(Tools.GetLocalized("fail"))
return
}
USERDATA.point--
this.lab_remain.string = "CHANCE:<color=#ff5656>" + USERDATA.point.toString() + "</color>"
this.lab_rw.string = Tools.StringLFormat(res.message)
Tools.remoteLoadSprite(USERDATA.prize_list[n].pic, this.icon_rw)
this.startSpinAnimation(n, res.prize_type != 3);
},()=>{
this._canStart = true;
})
}
checkRwId(prize_id: number){
let n = null
for (let i = 0; i < USERDATA.prize_list.length; i++) {
const element = USERDATA.prize_list[i];
if (prize_id == element.id){
n = i
break
}
}
return n
}
loadSprite(pic: string, node: Node){
this.loadRes(pic, Asset, (res: ImageAsset)=>{
let sp = new SpriteFrame()
let tex = new Texture2D();
tex.image = res;
sp.texture = tex
node.getComponent(Sprite).spriteFrame = sp
});
}
// 开始浮动动画
async startFloatingAnimation() {
// 对dices数组中的每个元素应用浮动动画
// 创建上下浮动动画
tween(this.dices[0])
.by(0.8, { position: new math.Vec3(0, 50, 0) }) // 向下移动10像素
.by(0.8, { position: new math.Vec3(0, -50, 0) }) // 向上移动10像素回到原位
.union()
.repeatForever() // 无限重复
.start();
tween(this.game_name)
.to(0.7, { scale: new math.Vec3(1.1, 1.1, 0) })
.to(1.0, { scale: new math.Vec3(1, 1, 0) })
.union()
.repeatForever() // 无限重复
.start();
await delay(300);
tween(this.dices[1])
.by(1, { position: new math.Vec3(0, -30, 0) }) // 向下移动10像素
.by(1, { position: new math.Vec3(0, 30, 0) }) // 向上移动10像素回到原位
.union()
.repeatForever() // 无限重复
.start();
await delay(300);
tween(this.dices[2])
.by(1, { position: new math.Vec3(0, -30, 0) }) // 向下移动10像素
.by(1, { position: new math.Vec3(0, 30, 0) }) // 向上移动10像素回到原位
.union()
.repeatForever() // 无限重复
.start();
}
async startSpinAnimation(n : number, win : boolean){
this.roll_dices[0].active = false;
this.roll_dices[1].active = false;
// 骰子动画
app.manager.sound.playEffect({name : "effect/shaizi"});
this.ani_dice_roll.active = true;
this.ani_dice_roll.getComponent(Animation).play();
await delay(1000);
this.ani_dice_roll.active = false;
this.roll_dices[0].active = true;
this.roll_dices[1].active = true;
let n1: number, n2: number;
let sum = n + 2
// 确保两骰子值都在1-6范围内
let minN1 = Math.max(1, sum - 6); // n1最小值确保n2不超过6
let maxN1 = Math.min(6, sum - 1); // n1最大值确保n2至少为1
if (minN1 <= maxN1) {
n1 = Math.floor(Math.random() * (maxN1 - minN1 + 1)) + minN1;
n2 = sum - n1;
} else {
// 理论上不应该到达这里
n1 = 1;
n2 = sum - 1;
}
this.loadSprite("main_dice_" + n1, this.roll_dices[0]);
this.loadSprite("main_dice_" + n2, this.roll_dices[1]);
await delay(500);
// 闪烁动画
app.manager.sound.playEffect({name : "effect/dengdeng"});
let lightNode = this.rw_list[n].getChildByName("light")
if (lightNode) {
lightNode.active = true;
// 重置初始状态
lightNode.getComponent(UIOpacity).opacity = 255;
// 创建闪烁动画
tween(lightNode.getComponent(UIOpacity))
.to(0.3, { opacity: 0 }) // 从255渐变到100
.to(0.3, { opacity: 255 }) // 从100渐变回255
.union()
.repeat(2) // 重复3次闪烁
.call(()=>{
lightNode.active = false;
if (win) app.manager.sound.playEffect({name : "effect/win", volume: 0.6});
this.reward_bg.active = win;
this.no_reward_bg.active = !win;
this._canStart = true;
})
.start();
}
}
}
// 在类外部或类内添加延迟函数
function delay(ms: number): Promise<void> {
return new Promise(resolve => setTimeout(resolve, ms));
}

View File

@@ -0,0 +1,9 @@
{
"ver": "4.0.24",
"importer": "typescript",
"imported": true,
"uuid": "5c1d61a6-ff81-481b-9217-430a2187ff50",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@@ -0,0 +1,9 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "bdb63f02-2584-4780-ab06-23ee67be4568",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@@ -0,0 +1,2 @@
1、只能存放脚本⚠
2、如不再需要可以直接删除此文件夹

View File

@@ -0,0 +1,14 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "a99733dc-4564-4361-bf0a-458cf9eaf630",
"files": [],
"subMetas": {},
"userData": {
"isBundle": true,
"bundleConfigID": "auto_11aBEBWDxI/6ryvKvFthEo",
"priority": 4,
"bundleName": "page-main-res"
}
}

View File

@@ -0,0 +1,6 @@
UI资源目录
1、脚本资源一定不要放在此文件夹内🔥
2、资源会随着UI销毁自动释放
3、在UI脚本内可通过this.loadRes动态加载
4、在UI子节点的脚本内可通过app.manager.ui.loadRes(this, ...)动态加载
5、不可单独删除此文件夹

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "59e8aac3-ea8a-4bf1-bc34-998f7766b965",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "59e8aac3-ea8a-4bf1-bc34-998f7766b965@6c48a",
"displayName": "mai_btn_remain",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "59e8aac3-ea8a-4bf1-bc34-998f7766b965",
"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": "59e8aac3-ea8a-4bf1-bc34-998f7766b965@f9941",
"displayName": "mai_btn_remain",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 402,
"height": 170,
"rawWidth": 402,
"rawHeight": 170,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-201,
-85,
0,
201,
-85,
0,
-201,
85,
0,
201,
85,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
170,
402,
170,
0,
0,
402,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-201,
-85,
0
],
"maxPos": [
201,
85,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "59e8aac3-ea8a-4bf1-bc34-998f7766b965@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "59e8aac3-ea8a-4bf1-bc34-998f7766b965@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "06a77b9a-c165-403a-b80c-8caa655d2b8f",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "06a77b9a-c165-403a-b80c-8caa655d2b8f@6c48a",
"displayName": "main_ani_roll_00",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "06a77b9a-c165-403a-b80c-8caa655d2b8f",
"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": "06a77b9a-c165-403a-b80c-8caa655d2b8f@f9941",
"displayName": "main_ani_roll_00",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 1.5,
"offsetY": 13,
"trimX": 7,
"trimY": 58,
"width": 389,
"height": 258,
"rawWidth": 400,
"rawHeight": 400,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-194.5,
-129,
0,
194.5,
-129,
0,
-194.5,
129,
0,
194.5,
129,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
7,
342,
396,
342,
7,
84,
396,
84
],
"nuv": [
0.0175,
0.21,
0.99,
0.21,
0.0175,
0.855,
0.99,
0.855
],
"minPos": [
-194.5,
-129,
0
],
"maxPos": [
194.5,
129,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "06a77b9a-c165-403a-b80c-8caa655d2b8f@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "06a77b9a-c165-403a-b80c-8caa655d2b8f@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "076c9d3f-ae8c-4bf3-8f90-ea48ffc322a3",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "076c9d3f-ae8c-4bf3-8f90-ea48ffc322a3@6c48a",
"displayName": "main_ani_roll_01",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "076c9d3f-ae8c-4bf3-8f90-ea48ffc322a3",
"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": "076c9d3f-ae8c-4bf3-8f90-ea48ffc322a3@f9941",
"displayName": "main_ani_roll_01",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 4,
"offsetY": -15.5,
"trimX": 16,
"trimY": 114,
"width": 376,
"height": 203,
"rawWidth": 400,
"rawHeight": 400,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-188,
-101.5,
0,
188,
-101.5,
0,
-188,
101.5,
0,
188,
101.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
16,
286,
392,
286,
16,
83,
392,
83
],
"nuv": [
0.04,
0.2075,
0.98,
0.2075,
0.04,
0.715,
0.98,
0.715
],
"minPos": [
-188,
-101.5,
0
],
"maxPos": [
188,
101.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "076c9d3f-ae8c-4bf3-8f90-ea48ffc322a3@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "076c9d3f-ae8c-4bf3-8f90-ea48ffc322a3@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "86413069-7911-4eca-a735-123d0ea028a9",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "86413069-7911-4eca-a735-123d0ea028a9@6c48a",
"displayName": "main_ani_roll_02",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "86413069-7911-4eca-a735-123d0ea028a9",
"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": "86413069-7911-4eca-a735-123d0ea028a9@f9941",
"displayName": "main_ani_roll_02",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 2,
"offsetY": -34.5,
"trimX": 15,
"trimY": 146,
"width": 374,
"height": 177,
"rawWidth": 400,
"rawHeight": 400,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-187,
-88.5,
0,
187,
-88.5,
0,
-187,
88.5,
0,
187,
88.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
15,
254,
389,
254,
15,
77,
389,
77
],
"nuv": [
0.0375,
0.1925,
0.9725,
0.1925,
0.0375,
0.635,
0.9725,
0.635
],
"minPos": [
-187,
-88.5,
0
],
"maxPos": [
187,
88.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "86413069-7911-4eca-a735-123d0ea028a9@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "86413069-7911-4eca-a735-123d0ea028a9@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "bc47a518-4417-4fb1-96f8-adffc13ca9ff",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "bc47a518-4417-4fb1-96f8-adffc13ca9ff@6c48a",
"displayName": "main_ani_roll_03",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "bc47a518-4417-4fb1-96f8-adffc13ca9ff",
"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": "bc47a518-4417-4fb1-96f8-adffc13ca9ff@f9941",
"displayName": "main_ani_roll_03",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -4,
"offsetY": 1.5,
"trimX": 7,
"trimY": 89,
"width": 378,
"height": 219,
"rawWidth": 400,
"rawHeight": 400,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-189,
-109.5,
0,
189,
-109.5,
0,
-189,
109.5,
0,
189,
109.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
7,
311,
385,
311,
7,
92,
385,
92
],
"nuv": [
0.0175,
0.23,
0.9625,
0.23,
0.0175,
0.7775,
0.9625,
0.7775
],
"minPos": [
-189,
-109.5,
0
],
"maxPos": [
189,
109.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "bc47a518-4417-4fb1-96f8-adffc13ca9ff@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "bc47a518-4417-4fb1-96f8-adffc13ca9ff@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "94578552-c276-48b2-9cf9-6adf08f2028a",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "94578552-c276-48b2-9cf9-6adf08f2028a@6c48a",
"displayName": "main_ani_roll_04",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "94578552-c276-48b2-9cf9-6adf08f2028a",
"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": "94578552-c276-48b2-9cf9-6adf08f2028a@f9941",
"displayName": "main_ani_roll_04",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": -3.5,
"trimX": 14,
"trimY": 98,
"width": 373,
"height": 211,
"rawWidth": 400,
"rawHeight": 400,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-186.5,
-105.5,
0,
186.5,
-105.5,
0,
-186.5,
105.5,
0,
186.5,
105.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
14,
302,
387,
302,
14,
91,
387,
91
],
"nuv": [
0.035,
0.2275,
0.9675,
0.2275,
0.035,
0.755,
0.9675,
0.755
],
"minPos": [
-186.5,
-105.5,
0
],
"maxPos": [
186.5,
105.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "94578552-c276-48b2-9cf9-6adf08f2028a@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "94578552-c276-48b2-9cf9-6adf08f2028a@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "47951cd1-e490-4d39-81a1-eb2197ae3adb",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "47951cd1-e490-4d39-81a1-eb2197ae3adb@6c48a",
"displayName": "main_ani_roll_05",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "47951cd1-e490-4d39-81a1-eb2197ae3adb",
"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": "47951cd1-e490-4d39-81a1-eb2197ae3adb@f9941",
"displayName": "main_ani_roll_05",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 4.5,
"offsetY": -42,
"trimX": 21,
"trimY": 158,
"width": 367,
"height": 168,
"rawWidth": 400,
"rawHeight": 400,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-183.5,
-84,
0,
183.5,
-84,
0,
-183.5,
84,
0,
183.5,
84,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
21,
242,
388,
242,
21,
74,
388,
74
],
"nuv": [
0.0525,
0.185,
0.97,
0.185,
0.0525,
0.605,
0.97,
0.605
],
"minPos": [
-183.5,
-84,
0
],
"maxPos": [
183.5,
84,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "47951cd1-e490-4d39-81a1-eb2197ae3adb@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "47951cd1-e490-4d39-81a1-eb2197ae3adb@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "9914b155-42bd-43a3-b473-b53d427eeaac",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "9914b155-42bd-43a3-b473-b53d427eeaac@6c48a",
"displayName": "main_ani_roll_06",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "9914b155-42bd-43a3-b473-b53d427eeaac",
"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": "9914b155-42bd-43a3-b473-b53d427eeaac@f9941",
"displayName": "main_ani_roll_06",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 7,
"offsetY": -45,
"trimX": 33,
"trimY": 159,
"width": 348,
"height": 172,
"rawWidth": 400,
"rawHeight": 400,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-174,
-86,
0,
174,
-86,
0,
-174,
86,
0,
174,
86,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
33,
241,
381,
241,
33,
69,
381,
69
],
"nuv": [
0.0825,
0.1725,
0.9525,
0.1725,
0.0825,
0.6025,
0.9525,
0.6025
],
"minPos": [
-174,
-86,
0
],
"maxPos": [
174,
86,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "9914b155-42bd-43a3-b473-b53d427eeaac@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "9914b155-42bd-43a3-b473-b53d427eeaac@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "fb28b150-3207-4459-8405-3c5f1197c213",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "fb28b150-3207-4459-8405-3c5f1197c213@6c48a",
"displayName": "main_ani_roll_07",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "fb28b150-3207-4459-8405-3c5f1197c213",
"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": "fb28b150-3207-4459-8405-3c5f1197c213@f9941",
"displayName": "main_ani_roll_07",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -4,
"offsetY": -53.5,
"trimX": 16,
"trimY": 173,
"width": 360,
"height": 161,
"rawWidth": 400,
"rawHeight": 400,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-180,
-80.5,
0,
180,
-80.5,
0,
-180,
80.5,
0,
180,
80.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
16,
227,
376,
227,
16,
66,
376,
66
],
"nuv": [
0.04,
0.165,
0.94,
0.165,
0.04,
0.5675,
0.94,
0.5675
],
"minPos": [
-180,
-80.5,
0
],
"maxPos": [
180,
80.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "fb28b150-3207-4459-8405-3c5f1197c213@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "fb28b150-3207-4459-8405-3c5f1197c213@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "8f1d72c3-5f00-4d5a-96dc-094ca2f81473",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "8f1d72c3-5f00-4d5a-96dc-094ca2f81473@6c48a",
"displayName": "main_ani_roll_08",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "8f1d72c3-5f00-4d5a-96dc-094ca2f81473",
"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": "8f1d72c3-5f00-4d5a-96dc-094ca2f81473@f9941",
"displayName": "main_ani_roll_08",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 1,
"offsetY": -61.5,
"trimX": 22,
"trimY": 180,
"width": 358,
"height": 163,
"rawWidth": 400,
"rawHeight": 400,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-179,
-81.5,
0,
179,
-81.5,
0,
-179,
81.5,
0,
179,
81.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
22,
220,
380,
220,
22,
57,
380,
57
],
"nuv": [
0.055,
0.1425,
0.95,
0.1425,
0.055,
0.55,
0.95,
0.55
],
"minPos": [
-179,
-81.5,
0
],
"maxPos": [
179,
81.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "8f1d72c3-5f00-4d5a-96dc-094ca2f81473@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "8f1d72c3-5f00-4d5a-96dc-094ca2f81473@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 473 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "c6bfc33f-9fd1-43af-9d7c-60d13b21df2d",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "c6bfc33f-9fd1-43af-9d7c-60d13b21df2d@6c48a",
"displayName": "main_bg",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "c6bfc33f-9fd1-43af-9d7c-60d13b21df2d",
"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": "c6bfc33f-9fd1-43af-9d7c-60d13b21df2d@f9941",
"displayName": "main_bg",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 1080,
"height": 1920,
"rawWidth": 1080,
"rawHeight": 1920,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-540,
-960,
0,
540,
-960,
0,
-540,
960,
0,
540,
960,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
1920,
1080,
1920,
0,
0,
1080,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-540,
-960,
0
],
"maxPos": [
540,
960,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "c6bfc33f-9fd1-43af-9d7c-60d13b21df2d@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "c6bfc33f-9fd1-43af-9d7c-60d13b21df2d@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 142 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "9e1afa58-b75a-41b2-9340-1134d40ef800",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "9e1afa58-b75a-41b2-9340-1134d40ef800@6c48a",
"displayName": "main_bg_box",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "9e1afa58-b75a-41b2-9340-1134d40ef800",
"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": "9e1afa58-b75a-41b2-9340-1134d40ef800@f9941",
"displayName": "main_bg_box",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 1.5,
"offsetY": 1,
"trimX": 3,
"trimY": 1,
"width": 1068,
"height": 1135,
"rawWidth": 1071,
"rawHeight": 1139,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-534,
-567.5,
0,
534,
-567.5,
0,
-534,
567.5,
0,
534,
567.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
3,
1138,
1071,
1138,
3,
3,
1071,
3
],
"nuv": [
0.0028011204481792717,
0.0026338893766461808,
1,
0.0026338893766461808,
0.0028011204481792717,
0.9991220368744512,
1,
0.9991220368744512
],
"minPos": [
-534,
-567.5,
0
],
"maxPos": [
534,
567.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "9e1afa58-b75a-41b2-9340-1134d40ef800@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "9e1afa58-b75a-41b2-9340-1134d40ef800@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "a407e8b4-a4b9-4ef2-958e-a8ae098b5d93",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "a407e8b4-a4b9-4ef2-958e-a8ae098b5d93@6c48a",
"displayName": "main_bg_logo",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "a407e8b4-a4b9-4ef2-958e-a8ae098b5d93",
"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": "a407e8b4-a4b9-4ef2-958e-a8ae098b5d93@f9941",
"displayName": "main_bg_logo",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 348,
"height": 124,
"rawWidth": 348,
"rawHeight": 124,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-174,
-62,
0,
174,
-62,
0,
-174,
62,
0,
174,
62,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
124,
348,
124,
0,
0,
348,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-174,
-62,
0
],
"maxPos": [
174,
62,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "a407e8b4-a4b9-4ef2-958e-a8ae098b5d93@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "a407e8b4-a4b9-4ef2-958e-a8ae098b5d93@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 138 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "fa6f2ba4-2e7c-4186-ae18-fa5c78b58861",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "fa6f2ba4-2e7c-4186-ae18-fa5c78b58861@6c48a",
"displayName": "main_bg_rw",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "fa6f2ba4-2e7c-4186-ae18-fa5c78b58861",
"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": "fa6f2ba4-2e7c-4186-ae18-fa5c78b58861@f9941",
"displayName": "main_bg_rw",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": 0.5,
"trimX": 1,
"trimY": 0,
"width": 824,
"height": 1096,
"rawWidth": 825,
"rawHeight": 1097,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-412,
-548,
0,
412,
-548,
0,
-412,
548,
0,
412,
548,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
1,
1097,
825,
1097,
1,
1,
825,
1
],
"nuv": [
0.0012121212121212121,
0.0009115770282588879,
1,
0.0009115770282588879,
0.0012121212121212121,
1,
1,
1
],
"minPos": [
-412,
-548,
0
],
"maxPos": [
412,
548,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "fa6f2ba4-2e7c-4186-ae18-fa5c78b58861@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "fa6f2ba4-2e7c-4186-ae18-fa5c78b58861@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "9c515e85-91fa-4697-bef3-67132276ea8a",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "9c515e85-91fa-4697-bef3-67132276ea8a@6c48a",
"displayName": "main_bg_slogan",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "9c515e85-91fa-4697-bef3-67132276ea8a",
"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": "9c515e85-91fa-4697-bef3-67132276ea8a@f9941",
"displayName": "main_bg_slogan",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 703,
"height": 185,
"rawWidth": 703,
"rawHeight": 185,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-351.5,
-92.5,
0,
351.5,
-92.5,
0,
-351.5,
92.5,
0,
351.5,
92.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
185,
703,
185,
0,
0,
703,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-351.5,
-92.5,
0
],
"maxPos": [
351.5,
92.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "9c515e85-91fa-4697-bef3-67132276ea8a@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "9c515e85-91fa-4697-bef3-67132276ea8a@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 73 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "1da025ba-6a0b-4a67-9bb5-1013af417718",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "1da025ba-6a0b-4a67-9bb5-1013af417718@6c48a",
"displayName": "main_bg_slogan_bg",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "1da025ba-6a0b-4a67-9bb5-1013af417718",
"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": "1da025ba-6a0b-4a67-9bb5-1013af417718@f9941",
"displayName": "main_bg_slogan_bg",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0.5,
"trimX": 0,
"trimY": 0,
"width": 529,
"height": 332,
"rawWidth": 529,
"rawHeight": 333,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-264.5,
-166,
0,
264.5,
-166,
0,
-264.5,
166,
0,
264.5,
166,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
333,
529,
333,
0,
1,
529,
1
],
"nuv": [
0,
0.003003003003003003,
1,
0.003003003003003003,
0,
1,
1,
1
],
"minPos": [
-264.5,
-166,
0
],
"maxPos": [
264.5,
166,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "1da025ba-6a0b-4a67-9bb5-1013af417718@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "1da025ba-6a0b-4a67-9bb5-1013af417718@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "658b2f1e-7429-4c65-9a9d-8ba14adf34a0",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "658b2f1e-7429-4c65-9a9d-8ba14adf34a0@6c48a",
"displayName": "main_btn_reward",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "658b2f1e-7429-4c65-9a9d-8ba14adf34a0",
"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": "658b2f1e-7429-4c65-9a9d-8ba14adf34a0@f9941",
"displayName": "main_btn_reward",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -0.5,
"trimX": 0,
"trimY": 1,
"width": 127,
"height": 127,
"rawWidth": 127,
"rawHeight": 128,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-63.5,
-63.5,
0,
63.5,
-63.5,
0,
-63.5,
63.5,
0,
63.5,
63.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
127,
127,
127,
0,
0,
127,
0
],
"nuv": [
0,
0,
1,
0,
0,
0.9921875,
1,
0.9921875
],
"minPos": [
-63.5,
-63.5,
0
],
"maxPos": [
63.5,
63.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "658b2f1e-7429-4c65-9a9d-8ba14adf34a0@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "658b2f1e-7429-4c65-9a9d-8ba14adf34a0@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "3c11c55b-7a54-49e4-aa32-d99c3002822e",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "3c11c55b-7a54-49e4-aa32-d99c3002822e@6c48a",
"displayName": "main_btn_rw_sure",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "3c11c55b-7a54-49e4-aa32-d99c3002822e",
"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": "3c11c55b-7a54-49e4-aa32-d99c3002822e@f9941",
"displayName": "main_btn_rw_sure",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 497,
"height": 172,
"rawWidth": 497,
"rawHeight": 172,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-248.5,
-86,
0,
248.5,
-86,
0,
-248.5,
86,
0,
248.5,
86,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
172,
497,
172,
0,
0,
497,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-248.5,
-86,
0
],
"maxPos": [
248.5,
86,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "3c11c55b-7a54-49e4-aa32-d99c3002822e@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "3c11c55b-7a54-49e4-aa32-d99c3002822e@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "482daa8e-3325-4cdf-ae00-bebb26f7a9a3",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "482daa8e-3325-4cdf-ae00-bebb26f7a9a3@6c48a",
"displayName": "main_btn_sounds_off",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "482daa8e-3325-4cdf-ae00-bebb26f7a9a3",
"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": "482daa8e-3325-4cdf-ae00-bebb26f7a9a3@f9941",
"displayName": "main_btn_sounds_off",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -0.5,
"trimX": 0,
"trimY": 1,
"width": 127,
"height": 127,
"rawWidth": 127,
"rawHeight": 128,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-63.5,
-63.5,
0,
63.5,
-63.5,
0,
-63.5,
63.5,
0,
63.5,
63.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
127,
127,
127,
0,
0,
127,
0
],
"nuv": [
0,
0,
1,
0,
0,
0.9921875,
1,
0.9921875
],
"minPos": [
-63.5,
-63.5,
0
],
"maxPos": [
63.5,
63.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "482daa8e-3325-4cdf-ae00-bebb26f7a9a3@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "482daa8e-3325-4cdf-ae00-bebb26f7a9a3@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "f76d4098-86bb-4d85-8e5b-beb06b7308f2",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "f76d4098-86bb-4d85-8e5b-beb06b7308f2@6c48a",
"displayName": "main_btn_sounds_on",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "f76d4098-86bb-4d85-8e5b-beb06b7308f2",
"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": "f76d4098-86bb-4d85-8e5b-beb06b7308f2@f9941",
"displayName": "main_btn_sounds_on",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -0.5,
"trimX": 0,
"trimY": 1,
"width": 127,
"height": 127,
"rawWidth": 127,
"rawHeight": 128,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-63.5,
-63.5,
0,
63.5,
-63.5,
0,
-63.5,
63.5,
0,
63.5,
63.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
127,
127,
127,
0,
0,
127,
0
],
"nuv": [
0,
0,
1,
0,
0,
0.9921875,
1,
0.9921875
],
"minPos": [
-63.5,
-63.5,
0
],
"maxPos": [
63.5,
63.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "f76d4098-86bb-4d85-8e5b-beb06b7308f2@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "f76d4098-86bb-4d85-8e5b-beb06b7308f2@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "85ff401f-c8fd-4bf2-a378-12de5d87dda6",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "85ff401f-c8fd-4bf2-a378-12de5d87dda6@6c48a",
"displayName": "main_btn_sure_lab",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "85ff401f-c8fd-4bf2-a378-12de5d87dda6",
"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": "85ff401f-c8fd-4bf2-a378-12de5d87dda6@f9941",
"displayName": "main_btn_sure_lab",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 233,
"height": 70,
"rawWidth": 233,
"rawHeight": 70,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-116.5,
-35,
0,
116.5,
-35,
0,
-116.5,
35,
0,
116.5,
35,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
70,
233,
70,
0,
0,
233,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-116.5,
-35,
0
],
"maxPos": [
116.5,
35,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "85ff401f-c8fd-4bf2-a378-12de5d87dda6@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "85ff401f-c8fd-4bf2-a378-12de5d87dda6@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "5b600712-8704-49cd-9f95-5f013387a423",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "5b600712-8704-49cd-9f95-5f013387a423@6c48a",
"displayName": "main_btn_tips",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "5b600712-8704-49cd-9f95-5f013387a423",
"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": "5b600712-8704-49cd-9f95-5f013387a423@f9941",
"displayName": "main_btn_tips",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -0.5,
"trimX": 0,
"trimY": 1,
"width": 127,
"height": 127,
"rawWidth": 127,
"rawHeight": 128,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-63.5,
-63.5,
0,
63.5,
-63.5,
0,
-63.5,
63.5,
0,
63.5,
63.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
127,
127,
127,
0,
0,
127,
0
],
"nuv": [
0,
0,
1,
0,
0,
0.9921875,
1,
0.9921875
],
"minPos": [
-63.5,
-63.5,
0
],
"maxPos": [
63.5,
63.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "5b600712-8704-49cd-9f95-5f013387a423@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "5b600712-8704-49cd-9f95-5f013387a423@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "52f32ad6-6a69-4654-a4e9-7c2ca9d66f20",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "52f32ad6-6a69-4654-a4e9-7c2ca9d66f20@6c48a",
"displayName": "main_dice_1",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "52f32ad6-6a69-4654-a4e9-7c2ca9d66f20",
"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": "52f32ad6-6a69-4654-a4e9-7c2ca9d66f20@f9941",
"displayName": "main_dice_1",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 1,
"offsetY": -0.5,
"trimX": 26,
"trimY": 14,
"width": 138,
"height": 161,
"rawWidth": 188,
"rawHeight": 188,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-69,
-80.5,
0,
69,
-80.5,
0,
-69,
80.5,
0,
69,
80.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
26,
174,
164,
174,
26,
13,
164,
13
],
"nuv": [
0.13829787234042554,
0.06914893617021277,
0.8723404255319149,
0.06914893617021277,
0.13829787234042554,
0.925531914893617,
0.8723404255319149,
0.925531914893617
],
"minPos": [
-69,
-80.5,
0
],
"maxPos": [
69,
80.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "52f32ad6-6a69-4654-a4e9-7c2ca9d66f20@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "52f32ad6-6a69-4654-a4e9-7c2ca9d66f20@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "9027e5a6-e865-43d8-b85f-c1c725960b22",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "9027e5a6-e865-43d8-b85f-c1c725960b22@6c48a",
"displayName": "main_dice_2",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "9027e5a6-e865-43d8-b85f-c1c725960b22",
"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": "9027e5a6-e865-43d8-b85f-c1c725960b22@f9941",
"displayName": "main_dice_2",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -0.5,
"trimX": 25,
"trimY": 14,
"width": 138,
"height": 161,
"rawWidth": 188,
"rawHeight": 188,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-69,
-80.5,
0,
69,
-80.5,
0,
-69,
80.5,
0,
69,
80.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
25,
174,
163,
174,
25,
13,
163,
13
],
"nuv": [
0.13297872340425532,
0.06914893617021277,
0.8670212765957447,
0.06914893617021277,
0.13297872340425532,
0.925531914893617,
0.8670212765957447,
0.925531914893617
],
"minPos": [
-69,
-80.5,
0
],
"maxPos": [
69,
80.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "9027e5a6-e865-43d8-b85f-c1c725960b22@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "9027e5a6-e865-43d8-b85f-c1c725960b22@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "160e8802-f8ca-4964-8a29-3f47e0269cb4",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "160e8802-f8ca-4964-8a29-3f47e0269cb4@6c48a",
"displayName": "main_dice_3",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "160e8802-f8ca-4964-8a29-3f47e0269cb4",
"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": "160e8802-f8ca-4964-8a29-3f47e0269cb4@f9941",
"displayName": "main_dice_3",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": -2,
"trimX": 26,
"trimY": 15,
"width": 137,
"height": 162,
"rawWidth": 188,
"rawHeight": 188,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-68.5,
-81,
0,
68.5,
-81,
0,
-68.5,
81,
0,
68.5,
81,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
26,
173,
163,
173,
26,
11,
163,
11
],
"nuv": [
0.13829787234042554,
0.05851063829787234,
0.8670212765957447,
0.05851063829787234,
0.13829787234042554,
0.9202127659574468,
0.8670212765957447,
0.9202127659574468
],
"minPos": [
-68.5,
-81,
0
],
"maxPos": [
68.5,
81,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "160e8802-f8ca-4964-8a29-3f47e0269cb4@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "160e8802-f8ca-4964-8a29-3f47e0269cb4@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "0ff827d2-2225-41c2-a527-e1f4a88867d5",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "0ff827d2-2225-41c2-a527-e1f4a88867d5@6c48a",
"displayName": "main_dice_4",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "0ff827d2-2225-41c2-a527-e1f4a88867d5",
"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": "0ff827d2-2225-41c2-a527-e1f4a88867d5@f9941",
"displayName": "main_dice_4",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 1,
"offsetY": -1.5,
"trimX": 26,
"trimY": 15,
"width": 138,
"height": 161,
"rawWidth": 188,
"rawHeight": 188,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-69,
-80.5,
0,
69,
-80.5,
0,
-69,
80.5,
0,
69,
80.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
26,
173,
164,
173,
26,
12,
164,
12
],
"nuv": [
0.13829787234042554,
0.06382978723404255,
0.8723404255319149,
0.06382978723404255,
0.13829787234042554,
0.9202127659574468,
0.8723404255319149,
0.9202127659574468
],
"minPos": [
-69,
-80.5,
0
],
"maxPos": [
69,
80.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "0ff827d2-2225-41c2-a527-e1f4a88867d5@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "0ff827d2-2225-41c2-a527-e1f4a88867d5@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "bc33424a-352b-410e-b50f-531fd6107aeb",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "bc33424a-352b-410e-b50f-531fd6107aeb@6c48a",
"displayName": "main_dice_5",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "bc33424a-352b-410e-b50f-531fd6107aeb",
"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": "bc33424a-352b-410e-b50f-531fd6107aeb@f9941",
"displayName": "main_dice_5",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -1.5,
"trimX": 25,
"trimY": 14,
"width": 138,
"height": 163,
"rawWidth": 188,
"rawHeight": 188,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-69,
-81.5,
0,
69,
-81.5,
0,
-69,
81.5,
0,
69,
81.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
25,
174,
163,
174,
25,
11,
163,
11
],
"nuv": [
0.13297872340425532,
0.05851063829787234,
0.8670212765957447,
0.05851063829787234,
0.13297872340425532,
0.925531914893617,
0.8670212765957447,
0.925531914893617
],
"minPos": [
-69,
-81.5,
0
],
"maxPos": [
69,
81.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "bc33424a-352b-410e-b50f-531fd6107aeb@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "bc33424a-352b-410e-b50f-531fd6107aeb@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "3ed09001-dfee-4466-a001-8b719733e7d6",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "3ed09001-dfee-4466-a001-8b719733e7d6@6c48a",
"displayName": "main_dice_6",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "3ed09001-dfee-4466-a001-8b719733e7d6",
"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": "3ed09001-dfee-4466-a001-8b719733e7d6@f9941",
"displayName": "main_dice_6",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": -1,
"trimX": 24,
"trimY": 14,
"width": 139,
"height": 162,
"rawWidth": 188,
"rawHeight": 188,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-69.5,
-81,
0,
69.5,
-81,
0,
-69.5,
81,
0,
69.5,
81,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
24,
174,
163,
174,
24,
12,
163,
12
],
"nuv": [
0.1276595744680851,
0.06382978723404255,
0.8670212765957447,
0.06382978723404255,
0.1276595744680851,
0.925531914893617,
0.8670212765957447,
0.925531914893617
],
"minPos": [
-69.5,
-81,
0
],
"maxPos": [
69.5,
81,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "3ed09001-dfee-4466-a001-8b719733e7d6@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "3ed09001-dfee-4466-a001-8b719733e7d6@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "b51f6233-50c7-410b-8396-2aca290eb661",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "b51f6233-50c7-410b-8396-2aca290eb661@6c48a",
"displayName": "main_dice_show_1",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "b51f6233-50c7-410b-8396-2aca290eb661",
"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": "b51f6233-50c7-410b-8396-2aca290eb661@f9941",
"displayName": "main_dice_show_1",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 186,
"height": 173,
"rawWidth": 186,
"rawHeight": 173,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-93,
-86.5,
0,
93,
-86.5,
0,
-93,
86.5,
0,
93,
86.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
173,
186,
173,
0,
0,
186,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-93,
-86.5,
0
],
"maxPos": [
93,
86.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "b51f6233-50c7-410b-8396-2aca290eb661@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "b51f6233-50c7-410b-8396-2aca290eb661@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "c7350196-e403-4824-918c-ce50c3fad82c",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "c7350196-e403-4824-918c-ce50c3fad82c@6c48a",
"displayName": "main_dice_show_2",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "c7350196-e403-4824-918c-ce50c3fad82c",
"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": "c7350196-e403-4824-918c-ce50c3fad82c@f9941",
"displayName": "main_dice_show_2",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 208,
"height": 207,
"rawWidth": 208,
"rawHeight": 207,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-104,
-103.5,
0,
104,
-103.5,
0,
-104,
103.5,
0,
104,
103.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
207,
208,
207,
0,
0,
208,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-104,
-103.5,
0
],
"maxPos": [
104,
103.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "c7350196-e403-4824-918c-ce50c3fad82c@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "c7350196-e403-4824-918c-ce50c3fad82c@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "9788b4d8-2306-4ab3-bd03-6589887724e4",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "9788b4d8-2306-4ab3-bd03-6589887724e4@6c48a",
"displayName": "main_dice_show_3",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "9788b4d8-2306-4ab3-bd03-6589887724e4",
"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": "9788b4d8-2306-4ab3-bd03-6589887724e4@f9941",
"displayName": "main_dice_show_3",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 225,
"height": 225,
"rawWidth": 225,
"rawHeight": 225,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-112.5,
-112.5,
0,
112.5,
-112.5,
0,
-112.5,
112.5,
0,
112.5,
112.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
225,
225,
225,
0,
0,
225,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-112.5,
-112.5,
0
],
"maxPos": [
112.5,
112.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "9788b4d8-2306-4ab3-bd03-6589887724e4@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "9788b4d8-2306-4ab3-bd03-6589887724e4@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 248 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "e444adfd-08ad-4b44-a9d7-3da1e3e46b70",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "e444adfd-08ad-4b44-a9d7-3da1e3e46b70@6c48a",
"displayName": "main_icon_lose",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "e444adfd-08ad-4b44-a9d7-3da1e3e46b70",
"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": "e444adfd-08ad-4b44-a9d7-3da1e3e46b70@f9941",
"displayName": "main_icon_lose",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -1.5,
"trimX": 0,
"trimY": 7,
"width": 977,
"height": 1225,
"rawWidth": 977,
"rawHeight": 1236,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-488.5,
-612.5,
0,
488.5,
-612.5,
0,
-488.5,
612.5,
0,
488.5,
612.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
1229,
977,
1229,
0,
4,
977,
4
],
"nuv": [
0,
0.003236245954692557,
1,
0.003236245954692557,
0,
0.9943365695792881,
1,
0.9943365695792881
],
"minPos": [
-488.5,
-612.5,
0
],
"maxPos": [
488.5,
612.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "e444adfd-08ad-4b44-a9d7-3da1e3e46b70@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "e444adfd-08ad-4b44-a9d7-3da1e3e46b70@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "c20ba8da-ac33-4354-adb6-5ee9f65498c6",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "c20ba8da-ac33-4354-adb6-5ee9f65498c6@6c48a",
"displayName": "main_lab_bg",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "c20ba8da-ac33-4354-adb6-5ee9f65498c6",
"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": "c20ba8da-ac33-4354-adb6-5ee9f65498c6@f9941",
"displayName": "main_lab_bg",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 908,
"height": 87,
"rawWidth": 908,
"rawHeight": 87,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-454,
-43.5,
0,
454,
-43.5,
0,
-454,
43.5,
0,
454,
43.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
87,
908,
87,
0,
0,
908,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-454,
-43.5,
0
],
"maxPos": [
454,
43.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "c20ba8da-ac33-4354-adb6-5ee9f65498c6@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "c20ba8da-ac33-4354-adb6-5ee9f65498c6@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "8b0af801-7117-437d-bd29-f1460c4e4ec4",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "8b0af801-7117-437d-bd29-f1460c4e4ec4@6c48a",
"displayName": "main_lab_rw_title",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "8b0af801-7117-437d-bd29-f1460c4e4ec4",
"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": "8b0af801-7117-437d-bd29-f1460c4e4ec4@f9941",
"displayName": "main_lab_rw_title",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 911,
"height": 204,
"rawWidth": 912,
"rawHeight": 204,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-455.5,
-102,
0,
455.5,
-102,
0,
-455.5,
102,
0,
455.5,
102,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
204,
911,
204,
0,
0,
911,
0
],
"nuv": [
0,
0,
0.9989035087719298,
0,
0,
1,
0.9989035087719298,
1
],
"minPos": [
-455.5,
-102,
0
],
"maxPos": [
455.5,
102,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "8b0af801-7117-437d-bd29-f1460c4e4ec4@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "8b0af801-7117-437d-bd29-f1460c4e4ec4@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "29cf3cf3-5090-4e85-b93d-20e0b4581552",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "29cf3cf3-5090-4e85-b93d-20e0b4581552@6c48a",
"displayName": "main_light_get_1",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "29cf3cf3-5090-4e85-b93d-20e0b4581552",
"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": "29cf3cf3-5090-4e85-b93d-20e0b4581552@f9941",
"displayName": "main_light_get_1",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 273,
"height": 273,
"rawWidth": 273,
"rawHeight": 273,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-136.5,
-136.5,
0,
136.5,
-136.5,
0,
-136.5,
136.5,
0,
136.5,
136.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
273,
273,
273,
0,
0,
273,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-136.5,
-136.5,
0
],
"maxPos": [
136.5,
136.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "29cf3cf3-5090-4e85-b93d-20e0b4581552@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "29cf3cf3-5090-4e85-b93d-20e0b4581552@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "5570c9ac-82ba-4f35-b700-c0f9c1cc4386",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "5570c9ac-82ba-4f35-b700-c0f9c1cc4386@6c48a",
"displayName": "main_light_get_2",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "5570c9ac-82ba-4f35-b700-c0f9c1cc4386",
"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": "5570c9ac-82ba-4f35-b700-c0f9c1cc4386@f9941",
"displayName": "main_light_get_2",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 521,
"height": 193,
"rawWidth": 521,
"rawHeight": 193,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-260.5,
-96.5,
0,
260.5,
-96.5,
0,
-260.5,
96.5,
0,
260.5,
96.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
193,
521,
193,
0,
0,
521,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-260.5,
-96.5,
0
],
"maxPos": [
260.5,
96.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "5570c9ac-82ba-4f35-b700-c0f9c1cc4386@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "5570c9ac-82ba-4f35-b700-c0f9c1cc4386@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 973 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "c1864093-fe69-4a27-9c0d-af1dbf554ed6",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "c1864093-fe69-4a27-9c0d-af1dbf554ed6@6c48a",
"displayName": "main_logo",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "c1864093-fe69-4a27-9c0d-af1dbf554ed6",
"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": "c1864093-fe69-4a27-9c0d-af1dbf554ed6@f9941",
"displayName": "main_logo",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 783,
"height": 754,
"rawWidth": 783,
"rawHeight": 754,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-391.5,
-377,
0,
391.5,
-377,
0,
-391.5,
377,
0,
391.5,
377,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
754,
783,
754,
0,
0,
783,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-391.5,
-377,
0
],
"maxPos": [
391.5,
377,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "c1864093-fe69-4a27-9c0d-af1dbf554ed6@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "c1864093-fe69-4a27-9c0d-af1dbf554ed6@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 79 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "0acff2ae-dba0-49a7-9c85-e012ddd5a1c0",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "0acff2ae-dba0-49a7-9c85-e012ddd5a1c0@6c48a",
"displayName": "main_norw_title",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "0acff2ae-dba0-49a7-9c85-e012ddd5a1c0",
"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": "0acff2ae-dba0-49a7-9c85-e012ddd5a1c0@f9941",
"displayName": "main_norw_title",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 1,
"width": 909,
"height": 231,
"rawWidth": 909,
"rawHeight": 233,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-454.5,
-115.5,
0,
454.5,
-115.5,
0,
-454.5,
115.5,
0,
454.5,
115.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
232,
909,
232,
0,
1,
909,
1
],
"nuv": [
0,
0.004291845493562232,
1,
0.004291845493562232,
0,
0.9957081545064378,
1,
0.9957081545064378
],
"minPos": [
-454.5,
-115.5,
0
],
"maxPos": [
454.5,
115.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "0acff2ae-dba0-49a7-9c85-e012ddd5a1c0@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "0acff2ae-dba0-49a7-9c85-e012ddd5a1c0@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "1691ca43-4f01-4895-a502-a363a6d5ff58",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "1691ca43-4f01-4895-a502-a363a6d5ff58@6c48a",
"displayName": "main_rw_flash",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "1691ca43-4f01-4895-a502-a363a6d5ff58",
"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": "1691ca43-4f01-4895-a502-a363a6d5ff58@f9941",
"displayName": "main_rw_flash",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 681,
"height": 680,
"rawWidth": 681,
"rawHeight": 680,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-340.5,
-340,
0,
340.5,
-340,
0,
-340.5,
340,
0,
340.5,
340,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
680,
681,
680,
0,
0,
681,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-340.5,
-340,
0
],
"maxPos": [
340.5,
340,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "1691ca43-4f01-4895-a502-a363a6d5ff58@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "1691ca43-4f01-4895-a502-a363a6d5ff58@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 B

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "3b5a4365-09ed-46db-bdb4-c1dc2d3b806b",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "3b5a4365-09ed-46db-bdb4-c1dc2d3b806b@6c48a",
"displayName": "singleColor",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "3b5a4365-09ed-46db-bdb4-c1dc2d3b806b",
"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": "3b5a4365-09ed-46db-bdb4-c1dc2d3b806b@f9941",
"displayName": "singleColor",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 2,
"height": 2,
"rawWidth": 2,
"rawHeight": 2,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-1,
-1,
0,
1,
-1,
0,
-1,
1,
0,
1,
1,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
2,
2,
2,
0,
0,
2,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-1,
-1,
0
],
"maxPos": [
1,
1,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "3b5a4365-09ed-46db-bdb4-c1dc2d3b806b@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "3b5a4365-09ed-46db-bdb4-c1dc2d3b806b@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

View File

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "03baa53f-f7fd-40d6-baa5-f1c360ffa044",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "03baa53f-f7fd-40d6-baa5-f1c360ffa044@6c48a",
"displayName": "金币1",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "03baa53f-f7fd-40d6-baa5-f1c360ffa044",
"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": "03baa53f-f7fd-40d6-baa5-f1c360ffa044@f9941",
"displayName": "金币1",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 99,
"height": 101,
"rawWidth": 99,
"rawHeight": 101,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-49.5,
-50.5,
0,
49.5,
-50.5,
0,
-49.5,
50.5,
0,
49.5,
50.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
101,
99,
101,
0,
0,
99,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-49.5,
-50.5,
0
],
"maxPos": [
49.5,
50.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "03baa53f-f7fd-40d6-baa5-f1c360ffa044@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "03baa53f-f7fd-40d6-baa5-f1c360ffa044@6c48a"
}
}