first commit

This commit is contained in:
2026-03-30 09:39:59 +08:00
parent 6c52425fca
commit 5ac73d3c6d
4484 changed files with 1144395 additions and 0 deletions

Binary file not shown.

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,595 @@
import { _decorator, Node, tween, Vec3, Sprite, Asset, ImageAsset, SpriteFrame, Texture2D, Label, UIOpacity, Animation, math, VideoPlayer, UITransform, VideoClip } from 'cc';
import BaseView from '../../../../../../extensions/app/assets/base/BaseView';
import { PageTips } from '../../tips/native/PageTips';
import { app } from 'db://assets/app/app';
import { Tools } from 'db://assets/res-native/tools/Tools';
import { PageRewardhistory } from '../../rewardhistory/native/PageRewardhistory';
import { USERDATA } from 'db://assets/res-native/data/UserData';
import { LANG_ENUM, LANG_SET, LangType } from 'db://assets/res-native/setting/LangSet';
const { ccclass, property } = _decorator;
/** 移动方向 */
const enum M_DIR {
CLOCKWISE = 0, /** 顺时针 */
COUNTER_CLOCKWISE = 1, /** 逆时针 */
}
@ccclass('PageMain')
export class PageMain extends BaseView {
/** 声音按钮 */
@property(Node) btn_music: Node = null!;
/** 当前余额 */
@property(Label) lab_gold: Label = null!;
/** 姓名 */
@property(Label) lab_name: Label = null!;
/** 当前剩余抽奖次数 */
@property(Label) remain: Label = null!;
/** 方向选择 */
@property(Node) n_dir: Node[] = [];
/** 标签 */
@property(Node) sign: Node = null!;
/** 方块 */
@property(Node) blocks: Node = null!;
/** 骰子 */
@property(Node) dices: Node[] = [];
/** 中奖 */
@property(Node) rw: Node = null!;
/** 未中奖 */
@property(Node) norw: Node = null!;
/** 购买次数按钮 */
@property(Node) btns_buy: Node = null!;
/** 开始游戏按钮 */
@property(Node) btn_play: Node = null!;
/** 开始游戏按钮 */
@property(Node) btn_auto: Node = null!;
/** 胜利数字 */
@property(Node) lab_add: Node = null!;
/** 失败数字 */
@property(Node) lab_sub: Node = null!;
/** 分数标签 */
@property(Node) lab_point: Node = null!;
/** 金币雨 */
@property(Node) gold_rain: Node = null!;
/** 背景视频 */
@property(VideoPlayer) video_bg: VideoPlayer = null!;
/** 视频背景图片 */
@property(Sprite) video_sprite: Sprite = null!;
/** 骰子动画 */
@property(Node) ani_dice: Node = null!;
/** 骰子总点数 */
@property(Node) dice_all: Node = null!;
/** 失败视频资源 */
@property(VideoClip) video_win: VideoClip = null!;
@property(VideoClip) video_lose: VideoClip = null!;
@property(VideoClip) video_normal: VideoClip = null!;
/** 方块移动方向 */
private _move_dir: M_DIR = M_DIR.CLOCKWISE;
/** 是否正在游戏 */
private _is_playing = false;
/** 骰子数据 */
private _game_data: any = null;
/** 是否正在连续 */
private _is_continuous : boolean = true
/** 方块顺时针顺序,从顶端开始 */
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[] =[
new Vec3(11, 491.7, 0),
new Vec3(178.2, 407, 0),
new Vec3(323.4, 310.2, 0),
new Vec3(456.5, 227.7, 0),
new Vec3(341, 143, 0),
new Vec3(233.2, 63.8, 0),
new Vec3(121, 0, 0),
new Vec3(231, -77, 0),
new Vec3(341, -143, 0),
new Vec3(467.5, -214.5, 0),
new Vec3(341, -321.2, 0),
new Vec3(231, -401.5, 0),
new Vec3(116.6, -473, 0),
new Vec3(0, -550, 0),
new Vec3(-117.7, -484, 0),
new Vec3(-234.3, -407, 0),
new Vec3(-344.3, -344.3, 0),
new Vec3(-465.3, -242, 0),
new Vec3(-336.6, -159.5, 0),
new Vec3(-226.6, -92.4, 0),
new Vec3(-115.5, -18.7, 0),
new Vec3(-227.7, 48.4, 0),
new Vec3(-341, 121, 0),
new Vec3(-451, 201.3, 0),
new Vec3(-301.4, 298.1, 0),
new Vec3(-159.5, 402.6, 0),
]
private _video:HTMLVideoElement = null
private _canvas:HTMLCanvasElement = null
private _ctx:CanvasRenderingContext2D = null
// 在类中新增变量用于缓存旧资源
private _currentSpriteFrame: SpriteFrame | null = null;
private _isUpdating = false;
// 初始化的相关逻辑写在这
onLoad() {}
// 界面打开时的相关逻辑写在这(onShow可被多次调用-它与onHide不成对)
onShow(params: any) {
this.initUserData()
this.swichBuyAndPlay()
this.initDir()
this.getRwData()
this.onClickTips()
this.bindVideoEvents()
this._canvas = document.createElement('canvas');
this._canvas.width = this.video_sprite.getComponent(UITransform).width;
this._canvas.height = this.video_sprite.getComponent(UITransform).height;
this._canvas.style.display = 'none';
this._ctx = this._canvas.getContext('2d');
tween(this.ani_dice)
.repeatForever(
tween()
// 0.8秒内放大到1.2倍 + 顺时针旋转180度
.to(0.8, {
scale: new Vec3(1.2, 1.2, 1.2),
angle: 180 // 如果是2D节点用angle3D节点建议用 eulerAngles
}, { easing: 'sineOut' })
// 0.8秒内缩小回1倍 + 再旋转180度总共360度
.to(0.8, {
scale: new Vec3(1, 1, 1),
angle: 360
}, { easing: 'sineIn' })
// 完成一圈后,手动重置 angle 为 0防止数值无限叠加导致精度问题
.call(() => { this.ani_dice.angle = 0; })
)
.start()
}
// 界面关闭时的相关逻辑写在这(已经关闭的界面不会触发onHide)
onHide(result: undefined) {
// app.manager.ui.show<PageMain>({name: 'PageMain', onHide:(result) => { 接收到return的数据并且有类型提示 }})
return result;
}
initUserData(){
this.lab_gold.string = USERDATA.coin.toString()
this.lab_name.string = USERDATA.name
this.remain.string = USERDATA.total_ticket_count.toString()
//this.remain.node.active = USERDATA.total_ticket_count > 0
Tools.ActChild(this.btn_auto, "auto", this._is_continuous)
Tools.ActChild(this.btn_auto, "no_auto", !this._is_continuous)
}
swichBuyAndPlay(){
this.btns_buy.active = USERDATA.total_ticket_count <= 0
this.btn_play.active = USERDATA.total_ticket_count > 0
}
bindVideoEvents() {
if (this.video_bg) {
this.video_bg.node.on('ready-to-play', () => {
this._video = this.video_bg.nativeVideo
}, this);
}
}
/** 初始化方向选择 */
initDir(){
for (let i = 0; i < 2; i++) {
const element = this.n_dir[i];
Tools.ActChild(element, "light", i == this._move_dir)
Tools.ActChild(element, "dark", i != this._move_dir)
}
}
getRwData(){
Tools.httpReq("game/lotteryPool", {}, (res:any) => {
for (let index = 0; index < res.length; index++) {
const d = res[index];
Tools.SetChildText(this.blocks, String(d.grid_number) + "/num", d.ui_text)
}
})
}
/** 购买游戏次数 */
buyTimes(a : any, d : any){
Tools.httpReq("game/buyLotteryTickets", { "count" : d }, (res:any) => {
USERDATA.coin = res.coin
USERDATA.total_ticket_count = res.total_ticket_count
this.swichBuyAndPlay()
this.initUserData()
})
}
chooseDir(d:any, dir: number){
this._move_dir = dir
this.initDir()
}
/** 点击提示 */
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.loadRes(music ? "main_btn_sounds_off" : "main_btn_sounds_on", Asset, (res: ImageAsset)=>{
let sp = new SpriteFrame()
let tex = new Texture2D();
tex.image = res;
sp.texture = tex
this.btn_music.getComponent(Sprite).spriteFrame = sp
});
}
/** 点击历史 */
onClickRwHis(){
app.manager.ui.show<PageRewardhistory>({name: 'PageRewardhistory'})
}
btnGameAuto(){
this._is_continuous = !this._is_continuous
this.initUserData()
}
btnPlayGary(){
this.btn_play.getComponent(Sprite).grayscale = true
Tools.GetChildComp(this.btn_play, "lab", Sprite).grayscale = true
}
btnPlayWhite(){
this.btn_play.getComponent(Sprite).grayscale = false
Tools.GetChildComp(this.btn_play, "lab", Sprite).grayscale = false
}
/** 开始游戏 */
btnGameStart(){
if (this._b_sequence.length != this._sign_position.length) {
return app.manager.ui.showToast(Tools.GetLocalized("数据错误"))
}
if (this._is_playing) return
this._is_playing = true
this.btnPlayGary()
Tools.httpReq("game/playStart", {
"direction" : this._move_dir
}, (res:any) => {
this._game_data = res
this._move_dir = res.direction
USERDATA.total_ticket_count--
this.initUserData()
let steps = 0
for (let i = 0; i < res.roll_array.length; i++) {
const element = res.roll_array[i];
steps += element
}
let index:any = this._b_sequence.findIndex(v => v == steps.toString())
let b = this.blocks.getChildByName(steps.toString())
// 计算移动路径
let path = this.calculatePath(index, steps);
// 播放骰子动画
this.playDiceAni(res.roll_array)
// 判断是否是豹子
let baozi = this._game_data.is_win == 1
Tools.ActChild(this.rw, "bg/bg_title_super", baozi)
Tools.ActChild(this.rw, "bg/bg_title", !baozi)
this.gold_rain.active = baozi
// 如果是豹子,展示豹子特效后停止继续
if (baozi){
this.scheduleOnce(() => {
app.manager.sound.playEffect({name : "effect/eff_unsheathe"})
for (let i = 0; i < this.dices.length; i++) {
let eff = this.dices[i].getChildByPath("dice/eff")
eff.active = true
eff.setPosition(new Vec3(-25, -40, 0))
tween(eff)
.to(0.5, { position: new Vec3(25, 45, 0) })
.call(() => {
this.scheduleOnce(() => {
eff.active = false
}, 0.2)
})
.start()
}
this.scheduleOnce(() => {
Tools.ActChild(this.rw, "bg/win_lab/en", LANG_SET.langIndex == LangType.EN)
Tools.ActChild(this.rw, "bg/win_lab/zh", LANG_SET.langIndex == LangType.ZH)
Tools.SetChildText(this.rw, "bg/win_lab/" + LANG_ENUM[LANG_SET.langIndex] + "/num", this._game_data.win_coin)
this.rw.active = true
app.manager.sound.playEffect({name : "effect/eff_gold_rain"})
app.manager.sound.playEffect({name : "effect/eff_bigwin"})
USERDATA.coin = this._game_data.coin
USERDATA.total_ticket_count = this._game_data.total_ticket_count
this._is_playing = false
this.initUserData()
this.swichBuyAndPlay()
this.btnPlayWhite()
}, 1)
}, 1.2)
}else {
// 骰子总数展示
this.scheduleOnce(() => {
this.dice_all.active = true
Tools.SetChildText(this.dice_all, "dice/lab", steps.toString())
}, 1.2)
this.scheduleOnce(() => {
this.dice_all.active = false
}, 2.4)
//亮灯
this.scheduleOnce(() => {
Tools.ActChild(b, "light", true)
// 设置初始位置
this.sign.setPosition(this._sign_position[index]);
this.sign.active = true;
}, 2.4);
let lastIndex = index
if (this._move_dir == M_DIR.CLOCKWISE) {
lastIndex = (lastIndex + steps) % this._sign_position.length;
} else {
lastIndex = (lastIndex - steps + this._sign_position.length) % this._sign_position.length;
}
// 移动标签
this.scheduleOnce(() => {
// 执行动画
this.animateSign(path, steps * 0.12, lastIndex);
Tools.ActChild(b, "light", false)
}, 3);
}
},()=>{
this._is_playing = false
})
}
/**
* 计算移动路径
* @param index 当前位置索引
* @param steps 移动步数
*/
private calculatePath(index:number, steps: number): Vec3[] {
let path: Vec3[] = [];
let currentIndex = index;
for (let i = 0; i < steps; i++) {
if (this._move_dir == M_DIR.CLOCKWISE) {
currentIndex = (currentIndex + 1) % this._sign_position.length;
} else {
currentIndex = (currentIndex - 1 + this._sign_position.length) % this._sign_position.length;
}
path.push(this._sign_position[currentIndex]);
}
return path;
}
/**
* 执行动画
* @param path 移动路径
* @param duration 总时间(秒)
* @param lastIndex 最后一个位置索引
*/
private animateSign(path: Vec3[], duration: number, lastIndex: number = 0) {
let totalTime = duration;
let segmentTime = totalTime / path.length;
let moveNext = (index: number) => {
let targetPos = path[index];
app.manager.sound.playEffect({name : "effect/eff_jump", volume: 0.5})
/** 跟随闪烁 */
this.scheduleOnce(() => {
let n = this._sign_position.findIndex(v => v == targetPos)
let nowPoint = this._b_sequence[n]
let light = this.blocks.getChildByName(nowPoint).getChildByName("light")
light.active = true
let opc = light.getComponent(UIOpacity)
opc.opacity = 0
tween(opc)
.to(0.12, { opacity: 255 }) // 渐隐
.to(0.12 / 2, { opacity: 0 }) // 渐显 tween(opc)
.call(() => {
light.active = false
opc.opacity = 255
})
.start();
}, 0.06 / 2);
tween(this.sign)
.to(segmentTime, { position: targetPos }, { easing: "linear" })
.call(() => {
if (index + 1 >= path.length) {
this.scheduleOnce(() => {
this.sign.active = false;
let b = this._b_sequence[lastIndex]
if (this._game_data.win_coin >= 0){
app.manager.sound.playEffect({name : "effect/eff_start"})
}else{
app.manager.sound.playEffect({name : "effect/eff_finish", volume: 0.5})
}
this.blinkLightWithTween(this.blocks.getChildByName(b).getChildByName("light"), 1, 2)
}, 0.5);
return;
}
this.scheduleOnce(() => {
moveNext(index + 1);
}, 0.06);
})
.start();
};
moveNext(0);
}
/** 闪烁动画
* @param node 节点
* @param duration 持续时间(秒)
* @param times 闪烁次数
*/
private blinkLightWithTween(node: Node, duration: number, times: number) {
let opc = node.getComponent(UIOpacity);
if (!opc) return;
node.active = true
/** 胜利失败动画 */
this.video_bg.clip = this._game_data.win_coin >= 0 ? this.video_win : this.video_lose
app.manager.sound.playEffect({name : this._game_data.win_coin >= 0 ? "effect/eff_happy" : "effect/eff_thunder", volume: 0.5})
this.scheduleOnce(() => {
this.video_bg.clip = this.video_normal
}, 3.2);
let blinkCount = 0;
const blink = () => {
tween(opc)
.to(duration / 2, { opacity: 0 }) // 渐隐
.to(duration / 2, { opacity: 255 }) // 渐显
.call(() => {
blinkCount++;
if (blinkCount < times) {
blink(); // 重复执行
// 游戏结束
}else{
opc.opacity = 255
node.active = false
this._is_playing = false
if (this._is_continuous){
let lab = Tools.AddChild(this.lab_point, this._game_data.win_coin > 0 ? this.lab_add : this.lab_sub)
let cb = () => {
lab.destroy()
USERDATA.coin = this._game_data.coin
USERDATA.total_ticket_count = this._game_data.total_ticket_count
this.initUserData()
this.swichBuyAndPlay()
if (USERDATA.total_ticket_count > 0){
this.btnGameStart()
}else{
this.btnPlayWhite()
}
}
// T5是再来一次不需要飘字
if (this._game_data.tier != "T5"){
let pos = new Vec3(node.parent.position.x, node.parent.position.y + 80, 0 )
lab.setPosition(pos)
lab.active = true
Tools.SetText(lab, this._game_data.win_coin > 0 ? "+" + this._game_data.win_coin : this._game_data.win_coin)
app.manager.sound.playEffect({name : this._game_data.win_coin > 0 ? "effect/eff_win" : "effect/eff_lose"})
tween(lab)
.by(1, { position: new Vec3(0, 200, 0) })
.call(()=>{
cb()
})
.start()
}else {
cb()
}
}else {
if (this._game_data.tier != "T5"){
if (this._game_data.win_coin > 0){
Tools.ActChild(this.rw, "bg/win_lab/en", LANG_SET.langIndex == LangType.EN)
Tools.ActChild(this.rw, "bg/win_lab/zh", LANG_SET.langIndex == LangType.ZH)
Tools.SetChildText(this.rw, "bg/win_lab/" + LANG_ENUM[LANG_SET.langIndex] + "/num", this._game_data.win_coin)
app.manager.sound.playEffect({name : this._game_data.win_coin > 0 ? "effect/eff_win" : "effect/eff_lose"})
this.rw.active = true
}else{
this.norw.active = true
}
}
USERDATA.coin = this._game_data.coin
USERDATA.total_ticket_count = this._game_data.total_ticket_count
this.swichBuyAndPlay()
this.initUserData()
this.btnPlayWhite()
}
}
})
.start();
};
blink();
}
/** 播放骰子动画 */
playDiceAni(array:any[]){
app.manager.sound.playEffect({name : "effect/shaizi"})
for (let i = 0; i < this.dices.length; i++) {
let dice = this.dices[i]
let animation = dice.getComponent(Animation);
if (animation) {
this.scheduleOnce(() => {
animation.play();
}, math.random() * 0.1);
animation.once(Animation.EventType.FINISHED, () => {
this.loadSprite("dice_" + array[i], dice.getChildByName("dice"))
});
}
}
}
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
});
}
closeRw(){
this.rw.active = false
this.norw.active = false
}
update(){
if (this._video) {
this.updateTexture();
}
}
private async updateTexture() {
if (this._isUpdating) return;
this._isUpdating = true;
try {
this._ctx.save(); // 保存当前状态
this._ctx.clearRect(0, 0, this._canvas.width, this._canvas.height);
// 绘制视频帧
this._ctx.drawImage(this._video, 0, 0, this._canvas.width, this._canvas.height);
this._ctx.restore(); // 恢复原始状态
const canvasData = this._canvas;
// 销毁旧纹理
if (this._currentSpriteFrame) {
const oldTexture = this._currentSpriteFrame.texture;
oldTexture?.destroy();
this._currentSpriteFrame.destroy();
}
const texture = new Texture2D();
texture.image = new ImageAsset(canvasData);
const spriteFrame = new SpriteFrame();
spriteFrame.texture = texture;
this.video_sprite.spriteFrame = spriteFrame;
this._currentSpriteFrame = spriteFrame;
} finally {
this._isUpdating = false;
}
}
}

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"
}
}

Binary file not shown.

View File

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

View File

@@ -0,0 +1,9 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "b3b408e4-a6cd-43b4-bf3a-902af3d5e4e3",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@@ -0,0 +1,3 @@
{
"__type__": "cc.SpriteAtlas"
}

View File

@@ -0,0 +1,39 @@
{
"ver": "1.0.8",
"importer": "auto-atlas",
"imported": true,
"uuid": "087a035f-b843-4ea8-96f4-21b631ce5974",
"files": [
".json"
],
"subMetas": {},
"userData": {
"maxWidth": 1024,
"maxHeight": 1024,
"padding": 2,
"allowRotation": true,
"forceSquared": false,
"powerOfTwo": false,
"algorithm": "MaxRects",
"format": "png",
"quality": 80,
"contourBleed": true,
"paddingBleed": true,
"filterUnused": true,
"removeTextureInBundle": true,
"removeImageInBundle": true,
"removeSpriteAtlasInBundle": true,
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
},
"textureSetting": {
"wrapModeS": "repeat",
"wrapModeT": "repeat",
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "2b134484-68ed-4aac-9a5b-a8ceb0226d5b",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "2b134484-68ed-4aac-9a5b-a8ceb0226d5b@6c48a",
"displayName": "main_sign_01",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "2b134484-68ed-4aac-9a5b-a8ceb0226d5b",
"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": "2b134484-68ed-4aac-9a5b-a8ceb0226d5b@f9941",
"displayName": "main_sign_01",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": -0.5,
"trimX": 0,
"trimY": 1,
"width": 137,
"height": 145,
"rawWidth": 138,
"rawHeight": 146,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-68.5,
-72.5,
0,
68.5,
-72.5,
0,
-68.5,
72.5,
0,
68.5,
72.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
145,
137,
145,
0,
0,
137,
0
],
"nuv": [
0,
0,
0.9927536231884058,
0,
0,
0.9931506849315068,
0.9927536231884058,
0.9931506849315068
],
"minPos": [
-68.5,
-72.5,
0
],
"maxPos": [
68.5,
72.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "2b134484-68ed-4aac-9a5b-a8ceb0226d5b@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "2b134484-68ed-4aac-9a5b-a8ceb0226d5b@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "e1ea97d8-0c01-4531-8d44-b0b451e84cfd",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "e1ea97d8-0c01-4531-8d44-b0b451e84cfd@6c48a",
"displayName": "main_sign_02",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "e1ea97d8-0c01-4531-8d44-b0b451e84cfd",
"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": "e1ea97d8-0c01-4531-8d44-b0b451e84cfd@f9941",
"displayName": "main_sign_02",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": -0.5,
"trimX": 0,
"trimY": 1,
"width": 137,
"height": 145,
"rawWidth": 138,
"rawHeight": 146,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-68.5,
-72.5,
0,
68.5,
-72.5,
0,
-68.5,
72.5,
0,
68.5,
72.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
145,
137,
145,
0,
0,
137,
0
],
"nuv": [
0,
0,
0.9927536231884058,
0,
0,
0.9931506849315068,
0.9927536231884058,
0.9931506849315068
],
"minPos": [
-68.5,
-72.5,
0
],
"maxPos": [
68.5,
72.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "e1ea97d8-0c01-4531-8d44-b0b451e84cfd@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "e1ea97d8-0c01-4531-8d44-b0b451e84cfd@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "a4d34050-e127-4224-bf92-45873251f356",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "a4d34050-e127-4224-bf92-45873251f356@6c48a",
"displayName": "main_sign_03",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "a4d34050-e127-4224-bf92-45873251f356",
"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": "a4d34050-e127-4224-bf92-45873251f356@f9941",
"displayName": "main_sign_03",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1,
"offsetY": -0.5,
"trimX": 0,
"trimY": 1,
"width": 136,
"height": 145,
"rawWidth": 138,
"rawHeight": 146,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-68,
-72.5,
0,
68,
-72.5,
0,
-68,
72.5,
0,
68,
72.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
145,
136,
145,
0,
0,
136,
0
],
"nuv": [
0,
0,
0.9855072463768116,
0,
0,
0.9931506849315068,
0.9855072463768116,
0.9931506849315068
],
"minPos": [
-68,
-72.5,
0
],
"maxPos": [
68,
72.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "a4d34050-e127-4224-bf92-45873251f356@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "a4d34050-e127-4224-bf92-45873251f356@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

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": "3d2859ca-ddc9-4ae8-82a9-c26959835061",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "3d2859ca-ddc9-4ae8-82a9-c26959835061@6c48a",
"displayName": "main_sign_04",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "3d2859ca-ddc9-4ae8-82a9-c26959835061",
"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": "3d2859ca-ddc9-4ae8-82a9-c26959835061@f9941",
"displayName": "main_sign_04",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": -0.5,
"trimX": 1,
"trimY": 1,
"width": 135,
"height": 145,
"rawWidth": 138,
"rawHeight": 146,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-67.5,
-72.5,
0,
67.5,
-72.5,
0,
-67.5,
72.5,
0,
67.5,
72.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
1,
145,
136,
145,
1,
0,
136,
0
],
"nuv": [
0.007246376811594203,
0,
0.9855072463768116,
0,
0.007246376811594203,
0.9931506849315068,
0.9855072463768116,
0.9931506849315068
],
"minPos": [
-67.5,
-72.5,
0
],
"maxPos": [
67.5,
72.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "3d2859ca-ddc9-4ae8-82a9-c26959835061@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "3d2859ca-ddc9-4ae8-82a9-c26959835061@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

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": "5543da1d-96d7-4ebd-a9d7-c0fc36e6b907",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "5543da1d-96d7-4ebd-a9d7-c0fc36e6b907@6c48a",
"displayName": "main_sign_05",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "5543da1d-96d7-4ebd-a9d7-c0fc36e6b907",
"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": "5543da1d-96d7-4ebd-a9d7-c0fc36e6b907@f9941",
"displayName": "main_sign_05",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": -0.5,
"trimX": 1,
"trimY": 1,
"width": 135,
"height": 145,
"rawWidth": 138,
"rawHeight": 146,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-67.5,
-72.5,
0,
67.5,
-72.5,
0,
-67.5,
72.5,
0,
67.5,
72.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
1,
145,
136,
145,
1,
0,
136,
0
],
"nuv": [
0.007246376811594203,
0,
0.9855072463768116,
0,
0.007246376811594203,
0.9931506849315068,
0.9855072463768116,
0.9931506849315068
],
"minPos": [
-67.5,
-72.5,
0
],
"maxPos": [
67.5,
72.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "5543da1d-96d7-4ebd-a9d7-c0fc36e6b907@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "5543da1d-96d7-4ebd-a9d7-c0fc36e6b907@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

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": "c92a9169-4cfa-4d8e-be2e-1fa4d1b1ab91",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "c92a9169-4cfa-4d8e-be2e-1fa4d1b1ab91@6c48a",
"displayName": "main_sign_06",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "c92a9169-4cfa-4d8e-be2e-1fa4d1b1ab91",
"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": "c92a9169-4cfa-4d8e-be2e-1fa4d1b1ab91@f9941",
"displayName": "main_sign_06",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": -1,
"trimX": 2,
"trimY": 2,
"width": 133,
"height": 144,
"rawWidth": 138,
"rawHeight": 146,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-66.5,
-72,
0,
66.5,
-72,
0,
-66.5,
72,
0,
66.5,
72,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
2,
144,
135,
144,
2,
0,
135,
0
],
"nuv": [
0.014492753623188406,
0,
0.9782608695652174,
0,
0.014492753623188406,
0.9863013698630136,
0.9782608695652174,
0.9863013698630136
],
"minPos": [
-66.5,
-72,
0
],
"maxPos": [
66.5,
72,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "c92a9169-4cfa-4d8e-be2e-1fa4d1b1ab91@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "c92a9169-4cfa-4d8e-be2e-1fa4d1b1ab91@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

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": "e0014a15-1b23-496b-a421-82bc76640718",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "e0014a15-1b23-496b-a421-82bc76640718@6c48a",
"displayName": "main_sign_07",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "e0014a15-1b23-496b-a421-82bc76640718",
"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": "e0014a15-1b23-496b-a421-82bc76640718@f9941",
"displayName": "main_sign_07",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1,
"offsetY": -1,
"trimX": 2,
"trimY": 2,
"width": 132,
"height": 144,
"rawWidth": 138,
"rawHeight": 146,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-66,
-72,
0,
66,
-72,
0,
-66,
72,
0,
66,
72,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
2,
144,
134,
144,
2,
0,
134,
0
],
"nuv": [
0.014492753623188406,
0,
0.9710144927536232,
0,
0.014492753623188406,
0.9863013698630136,
0.9710144927536232,
0.9863013698630136
],
"minPos": [
-66,
-72,
0
],
"maxPos": [
66,
72,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "e0014a15-1b23-496b-a421-82bc76640718@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "e0014a15-1b23-496b-a421-82bc76640718@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "0d786298-05ed-4881-9f49-4fa532a8cf98",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "0d786298-05ed-4881-9f49-4fa532a8cf98@6c48a",
"displayName": "main_sign_08",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "0d786298-05ed-4881-9f49-4fa532a8cf98",
"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": "0d786298-05ed-4881-9f49-4fa532a8cf98@f9941",
"displayName": "main_sign_08",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1,
"offsetY": -1,
"trimX": 3,
"trimY": 2,
"width": 130,
"height": 144,
"rawWidth": 138,
"rawHeight": 146,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-65,
-72,
0,
65,
-72,
0,
-65,
72,
0,
65,
72,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
3,
144,
133,
144,
3,
0,
133,
0
],
"nuv": [
0.021739130434782608,
0,
0.9637681159420289,
0,
0.021739130434782608,
0.9863013698630136,
0.9637681159420289,
0.9863013698630136
],
"minPos": [
-65,
-72,
0
],
"maxPos": [
65,
72,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "0d786298-05ed-4881-9f49-4fa532a8cf98@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "0d786298-05ed-4881-9f49-4fa532a8cf98@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

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": "5f5e7cce-4efb-4160-b2df-6c52f3fda041",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "5f5e7cce-4efb-4160-b2df-6c52f3fda041@6c48a",
"displayName": "main_sign_09",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "5f5e7cce-4efb-4160-b2df-6c52f3fda041",
"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": "5f5e7cce-4efb-4160-b2df-6c52f3fda041@f9941",
"displayName": "main_sign_09",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1,
"offsetY": -1,
"trimX": 5,
"trimY": 2,
"width": 126,
"height": 144,
"rawWidth": 138,
"rawHeight": 146,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-63,
-72,
0,
63,
-72,
0,
-63,
72,
0,
63,
72,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
5,
144,
131,
144,
5,
0,
131,
0
],
"nuv": [
0.036231884057971016,
0,
0.9492753623188406,
0,
0.036231884057971016,
0.9863013698630136,
0.9492753623188406,
0.9863013698630136
],
"minPos": [
-63,
-72,
0
],
"maxPos": [
63,
72,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "5f5e7cce-4efb-4160-b2df-6c52f3fda041@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "5f5e7cce-4efb-4160-b2df-6c52f3fda041@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "0f00e939-8f52-4c93-a9ef-5f22f18b3476",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "0f00e939-8f52-4c93-a9ef-5f22f18b3476@6c48a",
"displayName": "main_sign_10",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "0f00e939-8f52-4c93-a9ef-5f22f18b3476",
"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": "0f00e939-8f52-4c93-a9ef-5f22f18b3476@f9941",
"displayName": "main_sign_10",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1.5,
"offsetY": -1.5,
"trimX": 6,
"trimY": 3,
"width": 123,
"height": 143,
"rawWidth": 138,
"rawHeight": 146,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-61.5,
-71.5,
0,
61.5,
-71.5,
0,
-61.5,
71.5,
0,
61.5,
71.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
6,
143,
129,
143,
6,
0,
129,
0
],
"nuv": [
0.043478260869565216,
0,
0.9347826086956522,
0,
0.043478260869565216,
0.9794520547945206,
0.9347826086956522,
0.9794520547945206
],
"minPos": [
-61.5,
-71.5,
0
],
"maxPos": [
61.5,
71.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "0f00e939-8f52-4c93-a9ef-5f22f18b3476@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "0f00e939-8f52-4c93-a9ef-5f22f18b3476@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

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": "635da02b-ee1c-4983-8c7f-e522b343410f",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "635da02b-ee1c-4983-8c7f-e522b343410f@6c48a",
"displayName": "main_sign_11",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "635da02b-ee1c-4983-8c7f-e522b343410f",
"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": "635da02b-ee1c-4983-8c7f-e522b343410f@f9941",
"displayName": "main_sign_11",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1.5,
"offsetY": -1.5,
"trimX": 8,
"trimY": 3,
"width": 119,
"height": 143,
"rawWidth": 138,
"rawHeight": 146,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-59.5,
-71.5,
0,
59.5,
-71.5,
0,
-59.5,
71.5,
0,
59.5,
71.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
8,
143,
127,
143,
8,
0,
127,
0
],
"nuv": [
0.057971014492753624,
0,
0.9202898550724637,
0,
0.057971014492753624,
0.9794520547945206,
0.9202898550724637,
0.9794520547945206
],
"minPos": [
-59.5,
-71.5,
0
],
"maxPos": [
59.5,
71.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "635da02b-ee1c-4983-8c7f-e522b343410f@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "635da02b-ee1c-4983-8c7f-e522b343410f@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "46dd9ef1-ca1e-4df6-9fec-84a9dce3b438",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "46dd9ef1-ca1e-4df6-9fec-84a9dce3b438@6c48a",
"displayName": "main_sign_12",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "46dd9ef1-ca1e-4df6-9fec-84a9dce3b438",
"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": "46dd9ef1-ca1e-4df6-9fec-84a9dce3b438@f9941",
"displayName": "main_sign_12",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1.5,
"offsetY": -2,
"trimX": 11,
"trimY": 4,
"width": 113,
"height": 142,
"rawWidth": 138,
"rawHeight": 146,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-56.5,
-71,
0,
56.5,
-71,
0,
-56.5,
71,
0,
56.5,
71,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
11,
142,
124,
142,
11,
0,
124,
0
],
"nuv": [
0.07971014492753623,
0,
0.8985507246376812,
0,
0.07971014492753623,
0.9726027397260274,
0.8985507246376812,
0.9726027397260274
],
"minPos": [
-56.5,
-71,
0
],
"maxPos": [
56.5,
71,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "46dd9ef1-ca1e-4df6-9fec-84a9dce3b438@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "46dd9ef1-ca1e-4df6-9fec-84a9dce3b438@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "7e02389d-111d-4920-9bff-53b5e8247601",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "7e02389d-111d-4920-9bff-53b5e8247601@6c48a",
"displayName": "main_sign_13",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "7e02389d-111d-4920-9bff-53b5e8247601",
"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": "7e02389d-111d-4920-9bff-53b5e8247601@f9941",
"displayName": "main_sign_13",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1.5,
"offsetY": -2,
"trimX": 14,
"trimY": 4,
"width": 107,
"height": 142,
"rawWidth": 138,
"rawHeight": 146,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-53.5,
-71,
0,
53.5,
-71,
0,
-53.5,
71,
0,
53.5,
71,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
14,
142,
121,
142,
14,
0,
121,
0
],
"nuv": [
0.10144927536231885,
0,
0.8768115942028986,
0,
0.10144927536231885,
0.9726027397260274,
0.8768115942028986,
0.9726027397260274
],
"minPos": [
-53.5,
-71,
0
],
"maxPos": [
53.5,
71,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "7e02389d-111d-4920-9bff-53b5e8247601@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "7e02389d-111d-4920-9bff-53b5e8247601@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

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": "ef0b39d8-08d0-43bb-b836-a74ce3979a6a",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "ef0b39d8-08d0-43bb-b836-a74ce3979a6a@6c48a",
"displayName": "main_sign_14",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "ef0b39d8-08d0-43bb-b836-a74ce3979a6a",
"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": "ef0b39d8-08d0-43bb-b836-a74ce3979a6a@f9941",
"displayName": "main_sign_14",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -1,
"offsetY": -2.5,
"trimX": 17,
"trimY": 5,
"width": 102,
"height": 141,
"rawWidth": 138,
"rawHeight": 146,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-51,
-70.5,
0,
51,
-70.5,
0,
-51,
70.5,
0,
51,
70.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
17,
141,
119,
141,
17,
0,
119,
0
],
"nuv": [
0.12318840579710146,
0,
0.8623188405797102,
0,
0.12318840579710146,
0.9657534246575342,
0.8623188405797102,
0.9657534246575342
],
"minPos": [
-51,
-70.5,
0
],
"maxPos": [
51,
70.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "ef0b39d8-08d0-43bb-b836-a74ce3979a6a@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "ef0b39d8-08d0-43bb-b836-a74ce3979a6a@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "7aaf5fe9-cb75-480b-b493-a4e4382cda3a",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "7aaf5fe9-cb75-480b-b493-a4e4382cda3a@6c48a",
"displayName": "main_sign_15",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "7aaf5fe9-cb75-480b-b493-a4e4382cda3a",
"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": "7aaf5fe9-cb75-480b-b493-a4e4382cda3a@f9941",
"displayName": "main_sign_15",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 1.5,
"offsetY": -2,
"trimX": 19,
"trimY": 4,
"width": 103,
"height": 142,
"rawWidth": 138,
"rawHeight": 146,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-51.5,
-71,
0,
51.5,
-71,
0,
-51.5,
71,
0,
51.5,
71,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
19,
142,
122,
142,
19,
0,
122,
0
],
"nuv": [
0.13768115942028986,
0,
0.8840579710144928,
0,
0.13768115942028986,
0.9726027397260274,
0.8840579710144928,
0.9726027397260274
],
"minPos": [
-51.5,
-71,
0
],
"maxPos": [
51.5,
71,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "7aaf5fe9-cb75-480b-b493-a4e4382cda3a@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "7aaf5fe9-cb75-480b-b493-a4e4382cda3a@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

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": "f1558ecc-1df8-47c1-9e7d-541c902d3a3c",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "f1558ecc-1df8-47c1-9e7d-541c902d3a3c@6c48a",
"displayName": "main_sign_16",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "f1558ecc-1df8-47c1-9e7d-541c902d3a3c",
"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": "f1558ecc-1df8-47c1-9e7d-541c902d3a3c@f9941",
"displayName": "main_sign_16",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 2,
"offsetY": -2,
"trimX": 16,
"trimY": 4,
"width": 110,
"height": 142,
"rawWidth": 138,
"rawHeight": 146,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-55,
-71,
0,
55,
-71,
0,
-55,
71,
0,
55,
71,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
16,
142,
126,
142,
16,
0,
126,
0
],
"nuv": [
0.11594202898550725,
0,
0.9130434782608695,
0,
0.11594202898550725,
0.9726027397260274,
0.9130434782608695,
0.9726027397260274
],
"minPos": [
-55,
-71,
0
],
"maxPos": [
55,
71,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "f1558ecc-1df8-47c1-9e7d-541c902d3a3c@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "f1558ecc-1df8-47c1-9e7d-541c902d3a3c@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

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": "715b0505-95d0-40a0-a8c8-e006af736008",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "715b0505-95d0-40a0-a8c8-e006af736008@6c48a",
"displayName": "main_sign_17",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "715b0505-95d0-40a0-a8c8-e006af736008",
"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": "715b0505-95d0-40a0-a8c8-e006af736008@f9941",
"displayName": "main_sign_17",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 1.5,
"offsetY": -1.5,
"trimX": 13,
"trimY": 3,
"width": 115,
"height": 143,
"rawWidth": 138,
"rawHeight": 146,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-57.5,
-71.5,
0,
57.5,
-71.5,
0,
-57.5,
71.5,
0,
57.5,
71.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
13,
143,
128,
143,
13,
0,
128,
0
],
"nuv": [
0.09420289855072464,
0,
0.927536231884058,
0,
0.09420289855072464,
0.9794520547945206,
0.927536231884058,
0.9794520547945206
],
"minPos": [
-57.5,
-71.5,
0
],
"maxPos": [
57.5,
71.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "715b0505-95d0-40a0-a8c8-e006af736008@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "715b0505-95d0-40a0-a8c8-e006af736008@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

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": "2ca1b465-e2de-4b77-a124-7bfd75a674c8",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "2ca1b465-e2de-4b77-a124-7bfd75a674c8@6c48a",
"displayName": "main_sign_18",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "2ca1b465-e2de-4b77-a124-7bfd75a674c8",
"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": "2ca1b465-e2de-4b77-a124-7bfd75a674c8@f9941",
"displayName": "main_sign_18",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 1.5,
"offsetY": -1.5,
"trimX": 10,
"trimY": 3,
"width": 121,
"height": 143,
"rawWidth": 138,
"rawHeight": 146,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-60.5,
-71.5,
0,
60.5,
-71.5,
0,
-60.5,
71.5,
0,
60.5,
71.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
10,
143,
131,
143,
10,
0,
131,
0
],
"nuv": [
0.07246376811594203,
0,
0.9492753623188406,
0,
0.07246376811594203,
0.9794520547945206,
0.9492753623188406,
0.9794520547945206
],
"minPos": [
-60.5,
-71.5,
0
],
"maxPos": [
60.5,
71.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "2ca1b465-e2de-4b77-a124-7bfd75a674c8@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "2ca1b465-e2de-4b77-a124-7bfd75a674c8@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

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": "ba37a12a-543f-4ba5-ab71-3544e3bea4be",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "ba37a12a-543f-4ba5-ab71-3544e3bea4be@6c48a",
"displayName": "main_sign_19",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "ba37a12a-543f-4ba5-ab71-3544e3bea4be",
"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": "ba37a12a-543f-4ba5-ab71-3544e3bea4be@f9941",
"displayName": "main_sign_19",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 1.5,
"offsetY": -1,
"trimX": 8,
"trimY": 2,
"width": 125,
"height": 144,
"rawWidth": 138,
"rawHeight": 146,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-62.5,
-72,
0,
62.5,
-72,
0,
-62.5,
72,
0,
62.5,
72,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
8,
144,
133,
144,
8,
0,
133,
0
],
"nuv": [
0.057971014492753624,
0,
0.9637681159420289,
0,
0.057971014492753624,
0.9863013698630136,
0.9637681159420289,
0.9863013698630136
],
"minPos": [
-62.5,
-72,
0
],
"maxPos": [
62.5,
72,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "ba37a12a-543f-4ba5-ab71-3544e3bea4be@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "ba37a12a-543f-4ba5-ab71-3544e3bea4be@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "4bb194c5-ece8-4b43-8612-47f6422bb1f6",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "4bb194c5-ece8-4b43-8612-47f6422bb1f6@6c48a",
"displayName": "main_sign_20",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "4bb194c5-ece8-4b43-8612-47f6422bb1f6",
"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": "4bb194c5-ece8-4b43-8612-47f6422bb1f6@f9941",
"displayName": "main_sign_20",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 1,
"offsetY": -1,
"trimX": 5,
"trimY": 2,
"width": 130,
"height": 144,
"rawWidth": 138,
"rawHeight": 146,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-65,
-72,
0,
65,
-72,
0,
-65,
72,
0,
65,
72,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
5,
144,
135,
144,
5,
0,
135,
0
],
"nuv": [
0.036231884057971016,
0,
0.9782608695652174,
0,
0.036231884057971016,
0.9863013698630136,
0.9782608695652174,
0.9863013698630136
],
"minPos": [
-65,
-72,
0
],
"maxPos": [
65,
72,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "4bb194c5-ece8-4b43-8612-47f6422bb1f6@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "4bb194c5-ece8-4b43-8612-47f6422bb1f6@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

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": "9f019ef4-cdc9-43be-9703-288b67f98a61",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "9f019ef4-cdc9-43be-9703-288b67f98a61@6c48a",
"displayName": "main_sign_21",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "9f019ef4-cdc9-43be-9703-288b67f98a61",
"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": "9f019ef4-cdc9-43be-9703-288b67f98a61@f9941",
"displayName": "main_sign_21",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 1,
"offsetY": -1,
"trimX": 4,
"trimY": 2,
"width": 132,
"height": 144,
"rawWidth": 138,
"rawHeight": 146,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-66,
-72,
0,
66,
-72,
0,
-66,
72,
0,
66,
72,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
4,
144,
136,
144,
4,
0,
136,
0
],
"nuv": [
0.028985507246376812,
0,
0.9855072463768116,
0,
0.028985507246376812,
0.9863013698630136,
0.9855072463768116,
0.9863013698630136
],
"minPos": [
-66,
-72,
0
],
"maxPos": [
66,
72,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "9f019ef4-cdc9-43be-9703-288b67f98a61@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "9f019ef4-cdc9-43be-9703-288b67f98a61@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

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": "acc0bff3-b8ae-41bc-82fb-bfe68b758282",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "acc0bff3-b8ae-41bc-82fb-bfe68b758282@6c48a",
"displayName": "main_sign_22",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "acc0bff3-b8ae-41bc-82fb-bfe68b758282",
"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": "acc0bff3-b8ae-41bc-82fb-bfe68b758282@f9941",
"displayName": "main_sign_22",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": -0.5,
"trimX": 2,
"trimY": 1,
"width": 135,
"height": 145,
"rawWidth": 138,
"rawHeight": 146,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-67.5,
-72.5,
0,
67.5,
-72.5,
0,
-67.5,
72.5,
0,
67.5,
72.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
2,
145,
137,
145,
2,
0,
137,
0
],
"nuv": [
0.014492753623188406,
0,
0.9927536231884058,
0,
0.014492753623188406,
0.9931506849315068,
0.9927536231884058,
0.9931506849315068
],
"minPos": [
-67.5,
-72.5,
0
],
"maxPos": [
67.5,
72.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "acc0bff3-b8ae-41bc-82fb-bfe68b758282@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "acc0bff3-b8ae-41bc-82fb-bfe68b758282@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

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": "3d7ad178-996d-4467-9c9c-6df68f4992e2",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "3d7ad178-996d-4467-9c9c-6df68f4992e2@6c48a",
"displayName": "main_sign_23",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "3d7ad178-996d-4467-9c9c-6df68f4992e2",
"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": "3d7ad178-996d-4467-9c9c-6df68f4992e2@f9941",
"displayName": "main_sign_23",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": -0.5,
"trimX": 1,
"trimY": 1,
"width": 137,
"height": 145,
"rawWidth": 138,
"rawHeight": 146,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-68.5,
-72.5,
0,
68.5,
-72.5,
0,
-68.5,
72.5,
0,
68.5,
72.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
1,
145,
138,
145,
1,
0,
138,
0
],
"nuv": [
0.007246376811594203,
0,
1,
0,
0.007246376811594203,
0.9931506849315068,
1,
0.9931506849315068
],
"minPos": [
-68.5,
-72.5,
0
],
"maxPos": [
68.5,
72.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "3d7ad178-996d-4467-9c9c-6df68f4992e2@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "3d7ad178-996d-4467-9c9c-6df68f4992e2@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "72882bc0-fa8d-47e8-952a-c8f091d26eb5",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "72882bc0-fa8d-47e8-952a-c8f091d26eb5@6c48a",
"displayName": "main_sign_24",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "72882bc0-fa8d-47e8-952a-c8f091d26eb5",
"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": "72882bc0-fa8d-47e8-952a-c8f091d26eb5@f9941",
"displayName": "main_sign_24",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": -0.5,
"trimX": 1,
"trimY": 1,
"width": 137,
"height": 145,
"rawWidth": 138,
"rawHeight": 146,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-68.5,
-72.5,
0,
68.5,
-72.5,
0,
-68.5,
72.5,
0,
68.5,
72.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
1,
145,
138,
145,
1,
0,
138,
0
],
"nuv": [
0.007246376811594203,
0,
1,
0,
0.007246376811594203,
0.9931506849315068,
1,
0.9931506849315068
],
"minPos": [
-68.5,
-72.5,
0
],
"maxPos": [
68.5,
72.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "72882bc0-fa8d-47e8-952a-c8f091d26eb5@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "72882bc0-fa8d-47e8-952a-c8f091d26eb5@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

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": "2da0082c-098f-496e-a4d3-970bde1db4ff",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "2da0082c-098f-496e-a4d3-970bde1db4ff@6c48a",
"displayName": "main_sign_25",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "2da0082c-098f-496e-a4d3-970bde1db4ff",
"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": "2da0082c-098f-496e-a4d3-970bde1db4ff@f9941",
"displayName": "main_sign_25",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": -0.5,
"trimX": 1,
"trimY": 1,
"width": 137,
"height": 145,
"rawWidth": 138,
"rawHeight": 146,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-68.5,
-72.5,
0,
68.5,
-72.5,
0,
-68.5,
72.5,
0,
68.5,
72.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
1,
145,
138,
145,
1,
0,
138,
0
],
"nuv": [
0.007246376811594203,
0,
1,
0,
0.007246376811594203,
0.9931506849315068,
1,
0.9931506849315068
],
"minPos": [
-68.5,
-72.5,
0
],
"maxPos": [
68.5,
72.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "2da0082c-098f-496e-a4d3-970bde1db4ff@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "2da0082c-098f-496e-a4d3-970bde1db4ff@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "de09651e-d2da-496b-b976-a42255faeafb",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "de09651e-d2da-496b-b976-a42255faeafb@6c48a",
"displayName": "main_sign_27",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "de09651e-d2da-496b-b976-a42255faeafb",
"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": "de09651e-d2da-496b-b976-a42255faeafb@f9941",
"displayName": "main_sign_27",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": -0.5,
"trimX": 0,
"trimY": 1,
"width": 137,
"height": 145,
"rawWidth": 138,
"rawHeight": 146,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-68.5,
-72.5,
0,
68.5,
-72.5,
0,
-68.5,
72.5,
0,
68.5,
72.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
145,
137,
145,
0,
0,
137,
0
],
"nuv": [
0,
0,
0.9927536231884058,
0,
0,
0.9931506849315068,
0.9927536231884058,
0.9931506849315068
],
"minPos": [
-68.5,
-72.5,
0
],
"maxPos": [
68.5,
72.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "de09651e-d2da-496b-b976-a42255faeafb@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "de09651e-d2da-496b-b976-a42255faeafb@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

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": "76b62e8e-a83e-4e36-8684-474f87910e6a",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "76b62e8e-a83e-4e36-8684-474f87910e6a@6c48a",
"displayName": "main_sign_28",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "76b62e8e-a83e-4e36-8684-474f87910e6a",
"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": "76b62e8e-a83e-4e36-8684-474f87910e6a@f9941",
"displayName": "main_sign_28",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": -0.5,
"trimX": 0,
"trimY": 1,
"width": 137,
"height": 145,
"rawWidth": 138,
"rawHeight": 146,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-68.5,
-72.5,
0,
68.5,
-72.5,
0,
-68.5,
72.5,
0,
68.5,
72.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
145,
137,
145,
0,
0,
137,
0
],
"nuv": [
0,
0,
0.9927536231884058,
0,
0,
0.9931506849315068,
0.9927536231884058,
0.9931506849315068
],
"minPos": [
-68.5,
-72.5,
0
],
"maxPos": [
68.5,
72.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "76b62e8e-a83e-4e36-8684-474f87910e6a@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "76b62e8e-a83e-4e36-8684-474f87910e6a@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "411a2307-ca6d-4adb-a100-b51a78645113",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "411a2307-ca6d-4adb-a100-b51a78645113@6c48a",
"displayName": "main_sign_29",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "411a2307-ca6d-4adb-a100-b51a78645113",
"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": "411a2307-ca6d-4adb-a100-b51a78645113@f9941",
"displayName": "main_sign_29",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": -0.5,
"trimX": 0,
"trimY": 1,
"width": 137,
"height": 145,
"rawWidth": 138,
"rawHeight": 146,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-68.5,
-72.5,
0,
68.5,
-72.5,
0,
-68.5,
72.5,
0,
68.5,
72.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
145,
137,
145,
0,
0,
137,
0
],
"nuv": [
0,
0,
0.9927536231884058,
0,
0,
0.9931506849315068,
0.9927536231884058,
0.9931506849315068
],
"minPos": [
-68.5,
-72.5,
0
],
"maxPos": [
68.5,
72.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "411a2307-ca6d-4adb-a100-b51a78645113@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "411a2307-ca6d-4adb-a100-b51a78645113@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "2218eb9c-5b4e-426b-be4b-aa135f70c5b9",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "2218eb9c-5b4e-426b-be4b-aa135f70c5b9@6c48a",
"displayName": "main_sign_30",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "2218eb9c-5b4e-426b-be4b-aa135f70c5b9",
"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": "2218eb9c-5b4e-426b-be4b-aa135f70c5b9@f9941",
"displayName": "main_sign_30",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": -0.5,
"trimX": 0,
"trimY": 1,
"width": 137,
"height": 145,
"rawWidth": 138,
"rawHeight": 146,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-68.5,
-72.5,
0,
68.5,
-72.5,
0,
-68.5,
72.5,
0,
68.5,
72.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
145,
137,
145,
0,
0,
137,
0
],
"nuv": [
0,
0,
0.9927536231884058,
0,
0,
0.9931506849315068,
0.9927536231884058,
0.9931506849315068
],
"minPos": [
-68.5,
-72.5,
0
],
"maxPos": [
68.5,
72.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "2218eb9c-5b4e-426b-be4b-aa135f70c5b9@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "2218eb9c-5b4e-426b-be4b-aa135f70c5b9@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "058d61f5-c179-40e2-aef9-ccc9a62421ed",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "058d61f5-c179-40e2-aef9-ccc9a62421ed@6c48a",
"displayName": "main_sign_31",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "058d61f5-c179-40e2-aef9-ccc9a62421ed",
"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": "058d61f5-c179-40e2-aef9-ccc9a62421ed@f9941",
"displayName": "main_sign_31",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": -0.5,
"trimX": 0,
"trimY": 1,
"width": 137,
"height": 145,
"rawWidth": 138,
"rawHeight": 146,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-68.5,
-72.5,
0,
68.5,
-72.5,
0,
-68.5,
72.5,
0,
68.5,
72.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
145,
137,
145,
0,
0,
137,
0
],
"nuv": [
0,
0,
0.9927536231884058,
0,
0,
0.9931506849315068,
0.9927536231884058,
0.9931506849315068
],
"minPos": [
-68.5,
-72.5,
0
],
"maxPos": [
68.5,
72.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "058d61f5-c179-40e2-aef9-ccc9a62421ed@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "058d61f5-c179-40e2-aef9-ccc9a62421ed@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

View File

@@ -0,0 +1,9 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "f13fb7fe-03fa-404a-8702-2c09b8e9cf2f",
"files": [],
"subMetas": {},
"userData": {}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 77 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 88 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "55d45b8a-e8b8-483a-800e-08f8a13533a1",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "55d45b8a-e8b8-483a-800e-08f8a13533a1@6c48a",
"displayName": "13light",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "55d45b8a-e8b8-483a-800e-08f8a13533a1",
"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": "55d45b8a-e8b8-483a-800e-08f8a13533a1@f9941",
"displayName": "13light",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 246,
"height": 225,
"rawWidth": 246,
"rawHeight": 225,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-123,
-112.5,
0,
123,
-112.5,
0,
-123,
112.5,
0,
123,
112.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
225,
246,
225,
0,
0,
246,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-123,
-112.5,
0
],
"maxPos": [
123,
112.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "55d45b8a-e8b8-483a-800e-08f8a13533a1@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "55d45b8a-e8b8-483a-800e-08f8a13533a1@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 91 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 66 KiB

View File

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

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": "78e7a1db-174f-4fa6-8634-e714c6999ebd",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "78e7a1db-174f-4fa6-8634-e714c6999ebd@6c48a",
"displayName": "16",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "78e7a1db-174f-4fa6-8634-e714c6999ebd",
"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": "78e7a1db-174f-4fa6-8634-e714c6999ebd@f9941",
"displayName": "16",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 202,
"height": 184,
"rawWidth": 202,
"rawHeight": 184,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-101,
-92,
0,
101,
-92,
0,
-101,
92,
0,
101,
92,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
184,
202,
184,
0,
0,
202,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-101,
-92,
0
],
"maxPos": [
101,
92,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "78e7a1db-174f-4fa6-8634-e714c6999ebd@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "78e7a1db-174f-4fa6-8634-e714c6999ebd@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "74ade94b-7c40-45bc-96c4-940d8b01cc64",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "74ade94b-7c40-45bc-96c4-940d8b01cc64@6c48a",
"displayName": "17light",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "74ade94b-7c40-45bc-96c4-940d8b01cc64",
"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": "74ade94b-7c40-45bc-96c4-940d8b01cc64@f9941",
"displayName": "17light",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 247,
"height": 226,
"rawWidth": 247,
"rawHeight": 226,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-123.5,
-113,
0,
123.5,
-113,
0,
-123.5,
113,
0,
123.5,
113,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
226,
247,
226,
0,
0,
247,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-123.5,
-113,
0
],
"maxPos": [
123.5,
113,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "74ade94b-7c40-45bc-96c4-940d8b01cc64@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "74ade94b-7c40-45bc-96c4-940d8b01cc64@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB

View File

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

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": "ed5a9794-4668-4fe6-98d3-f43d2cb0e82d",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "ed5a9794-4668-4fe6-98d3-f43d2cb0e82d@6c48a",
"displayName": "19",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "ed5a9794-4668-4fe6-98d3-f43d2cb0e82d",
"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": "ed5a9794-4668-4fe6-98d3-f43d2cb0e82d@f9941",
"displayName": "19",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 202,
"height": 183,
"rawWidth": 202,
"rawHeight": 183,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-101,
-91.5,
0,
101,
-91.5,
0,
-101,
91.5,
0,
101,
91.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
183,
202,
183,
0,
0,
202,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-101,
-91.5,
0
],
"maxPos": [
101,
91.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "ed5a9794-4668-4fe6-98d3-f43d2cb0e82d@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "ed5a9794-4668-4fe6-98d3-f43d2cb0e82d@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 156 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 177 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 66 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "935bfd41-31f0-4aca-aea2-b84801e4ff38",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "935bfd41-31f0-4aca-aea2-b84801e4ff38@6c48a",
"displayName": "22light",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "935bfd41-31f0-4aca-aea2-b84801e4ff38",
"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": "935bfd41-31f0-4aca-aea2-b84801e4ff38@f9941",
"displayName": "22light",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 249,
"height": 227,
"rawWidth": 249,
"rawHeight": 227,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-124.5,
-113.5,
0,
124.5,
-113.5,
0,
-124.5,
113.5,
0,
124.5,
113.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
227,
249,
227,
0,
0,
249,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-124.5,
-113.5,
0
],
"maxPos": [
124.5,
113.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "935bfd41-31f0-4aca-aea2-b84801e4ff38@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "935bfd41-31f0-4aca-aea2-b84801e4ff38@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

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": "97faeb4c-17ed-4e71-b1a0-0dc3c094e520",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "97faeb4c-17ed-4e71-b1a0-0dc3c094e520@6c48a",
"displayName": "23",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "97faeb4c-17ed-4e71-b1a0-0dc3c094e520",
"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": "97faeb4c-17ed-4e71-b1a0-0dc3c094e520@f9941",
"displayName": "23",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 250,
"height": 226,
"rawWidth": 250,
"rawHeight": 226,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-125,
-113,
0,
125,
-113,
0,
-125,
113,
0,
125,
113,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
226,
250,
226,
0,
0,
250,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-125,
-113,
0
],
"maxPos": [
125,
113,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "97faeb4c-17ed-4e71-b1a0-0dc3c094e520@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "97faeb4c-17ed-4e71-b1a0-0dc3c094e520@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB

View File

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

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": "81d482c1-e02f-4c89-84fc-9d6b4b2c7b98",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "81d482c1-e02f-4c89-84fc-9d6b4b2c7b98@6c48a",
"displayName": "24",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "81d482c1-e02f-4c89-84fc-9d6b4b2c7b98",
"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": "81d482c1-e02f-4c89-84fc-9d6b4b2c7b98@f9941",
"displayName": "24",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 257,
"height": 218,
"rawWidth": 257,
"rawHeight": 218,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-128.5,
-109,
0,
128.5,
-109,
0,
-128.5,
109,
0,
128.5,
109,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
218,
257,
218,
0,
0,
257,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-128.5,
-109,
0
],
"maxPos": [
128.5,
109,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "81d482c1-e02f-4c89-84fc-9d6b4b2c7b98@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "81d482c1-e02f-4c89-84fc-9d6b4b2c7b98@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 88 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "335ba7c2-012e-4589-9d5f-fccade35744a",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "335ba7c2-012e-4589-9d5f-fccade35744a@6c48a",
"displayName": "24light",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "335ba7c2-012e-4589-9d5f-fccade35744a",
"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": "335ba7c2-012e-4589-9d5f-fccade35744a@f9941",
"displayName": "24light",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 302,
"height": 260,
"rawWidth": 302,
"rawHeight": 260,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-151,
-130,
0,
151,
-130,
0,
-151,
130,
0,
151,
130,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
260,
302,
260,
0,
0,
302,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-151,
-130,
0
],
"maxPos": [
151,
130,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "335ba7c2-012e-4589-9d5f-fccade35744a@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "335ba7c2-012e-4589-9d5f-fccade35744a@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "f500c0dc-2a0f-4eee-899a-8ebd915a32c5",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "f500c0dc-2a0f-4eee-899a-8ebd915a32c5@6c48a",
"displayName": "25light",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "f500c0dc-2a0f-4eee-899a-8ebd915a32c5",
"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": "f500c0dc-2a0f-4eee-899a-8ebd915a32c5@f9941",
"displayName": "25light",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 249,
"height": 226,
"rawWidth": 249,
"rawHeight": 226,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-124.5,
-113,
0,
124.5,
-113,
0,
-124.5,
113,
0,
124.5,
113,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
226,
249,
226,
0,
0,
249,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-124.5,
-113,
0
],
"maxPos": [
124.5,
113,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "f500c0dc-2a0f-4eee-899a-8ebd915a32c5@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "f500c0dc-2a0f-4eee-899a-8ebd915a32c5@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 95 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 102 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 100 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 95 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 99 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "1a3d832b-de33-4d85-85e2-87829797c28e",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "1a3d832b-de33-4d85-85e2-87829797c28e@6c48a",
"displayName": "28light",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "1a3d832b-de33-4d85-85e2-87829797c28e",
"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": "1a3d832b-de33-4d85-85e2-87829797c28e@f9941",
"displayName": "28light",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 304,
"height": 272,
"rawWidth": 304,
"rawHeight": 272,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-152,
-136,
0,
152,
-136,
0,
-152,
136,
0,
152,
136,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
272,
304,
272,
0,
0,
304,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-152,
-136,
0
],
"maxPos": [
152,
136,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "1a3d832b-de33-4d85-85e2-87829797c28e@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "1a3d832b-de33-4d85-85e2-87829797c28e@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "623e747c-60cd-4410-9333-2578077de1f0",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "623e747c-60cd-4410-9333-2578077de1f0@6c48a",
"displayName": "29light",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "623e747c-60cd-4410-9333-2578077de1f0",
"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": "623e747c-60cd-4410-9333-2578077de1f0@f9941",
"displayName": "29light",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 249,
"height": 224,
"rawWidth": 249,
"rawHeight": 224,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-124.5,
-112,
0,
124.5,
-112,
0,
-124.5,
112,
0,
124.5,
112,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
224,
249,
224,
0,
0,
249,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-124.5,
-112,
0
],
"maxPos": [
124.5,
112,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "623e747c-60cd-4410-9333-2578077de1f0@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "623e747c-60cd-4410-9333-2578077de1f0@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

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": "eef93389-bce1-483a-b6e1-fdf9595ac524",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "eef93389-bce1-483a-b6e1-fdf9595ac524@6c48a",
"displayName": "30",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "eef93389-bce1-483a-b6e1-fdf9595ac524",
"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": "eef93389-bce1-483a-b6e1-fdf9595ac524@f9941",
"displayName": "30",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 202,
"height": 184,
"rawWidth": 202,
"rawHeight": 184,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-101,
-92,
0,
101,
-92,
0,
-101,
92,
0,
101,
92,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
184,
202,
184,
0,
0,
202,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-101,
-92,
0
],
"maxPos": [
101,
92,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "eef93389-bce1-483a-b6e1-fdf9595ac524@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "eef93389-bce1-483a-b6e1-fdf9595ac524@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 75 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

View File

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

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": "5ce1da79-2fef-4455-89c9-222bce17589b",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "5ce1da79-2fef-4455-89c9-222bce17589b@6c48a",
"displayName": "8light",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "5ce1da79-2fef-4455-89c9-222bce17589b",
"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": "5ce1da79-2fef-4455-89c9-222bce17589b@f9941",
"displayName": "8light",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 250,
"height": 229,
"rawWidth": 250,
"rawHeight": 229,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-125,
-114.5,
0,
125,
-114.5,
0,
-125,
114.5,
0,
125,
114.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
229,
250,
229,
0,
0,
250,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-125,
-114.5,
0
],
"maxPos": [
125,
114.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "5ce1da79-2fef-4455-89c9-222bce17589b@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "5ce1da79-2fef-4455-89c9-222bce17589b@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

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": "2e1886d4-0160-4ebf-829a-1c0094d19748",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "2e1886d4-0160-4ebf-829a-1c0094d19748@6c48a",
"displayName": "9",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "2e1886d4-0160-4ebf-829a-1c0094d19748",
"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": "2e1886d4-0160-4ebf-829a-1c0094d19748@f9941",
"displayName": "9",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 202,
"height": 183,
"rawWidth": 202,
"rawHeight": 183,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-101,
-91.5,
0,
101,
-91.5,
0,
-101,
91.5,
0,
101,
91.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
183,
202,
183,
0,
0,
202,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-101,
-91.5,
0
],
"maxPos": [
101,
91.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "2e1886d4-0160-4ebf-829a-1c0094d19748@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "2e1886d4-0160-4ebf-829a-1c0094d19748@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

View File

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

View File

@@ -0,0 +1,3 @@
{
"__type__": "cc.SpriteAtlas"
}

View File

@@ -0,0 +1,39 @@
{
"ver": "1.0.8",
"importer": "auto-atlas",
"imported": true,
"uuid": "cbc5cf5c-1633-47b5-933f-8b78585eaae1",
"files": [
".json"
],
"subMetas": {},
"userData": {
"maxWidth": 1900,
"maxHeight": 1900,
"padding": 2,
"allowRotation": true,
"forceSquared": false,
"powerOfTwo": false,
"algorithm": "MaxRects",
"format": "png",
"quality": 80,
"contourBleed": true,
"paddingBleed": true,
"filterUnused": true,
"removeTextureInBundle": true,
"removeImageInBundle": true,
"removeSpriteAtlasInBundle": true,
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
},
"textureSetting": {
"wrapModeS": "repeat",
"wrapModeT": "repeat",
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
}
}
}

View File

@@ -0,0 +1,9 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "946733d9-0c47-46a2-8db7-7e8976760305",
"files": [],
"subMetas": {},
"userData": {}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

View File

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "d75f51e9-ce2f-4d9a-b2db-853cb2f2bd43",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "d75f51e9-ce2f-4d9a-b2db-853cb2f2bd43@6c48a",
"displayName": "01",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "d75f51e9-ce2f-4d9a-b2db-853cb2f2bd43",
"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": "d75f51e9-ce2f-4d9a-b2db-853cb2f2bd43@f9941",
"displayName": "01",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 72,
"height": 91,
"rawWidth": 72,
"rawHeight": 91,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-36,
-45.5,
0,
36,
-45.5,
0,
-36,
45.5,
0,
36,
45.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
91,
72,
91,
0,
0,
72,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-36,
-45.5,
0
],
"maxPos": [
36,
45.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "d75f51e9-ce2f-4d9a-b2db-853cb2f2bd43@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "d75f51e9-ce2f-4d9a-b2db-853cb2f2bd43@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

View File

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "31560747-d820-45b0-82f7-b4d972d7212c",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "31560747-d820-45b0-82f7-b4d972d7212c@6c48a",
"displayName": "02",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "31560747-d820-45b0-82f7-b4d972d7212c",
"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": "31560747-d820-45b0-82f7-b4d972d7212c@f9941",
"displayName": "02",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 94,
"height": 105,
"rawWidth": 94,
"rawHeight": 105,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-47,
-52.5,
0,
47,
-52.5,
0,
-47,
52.5,
0,
47,
52.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
105,
94,
105,
0,
0,
94,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-47,
-52.5,
0
],
"maxPos": [
47,
52.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "31560747-d820-45b0-82f7-b4d972d7212c@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "31560747-d820-45b0-82f7-b4d972d7212c@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

View File

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "d1d9666e-eddc-4afc-982d-804b94d76381",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "d1d9666e-eddc-4afc-982d-804b94d76381@6c48a",
"displayName": "03",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "d1d9666e-eddc-4afc-982d-804b94d76381",
"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": "d1d9666e-eddc-4afc-982d-804b94d76381@f9941",
"displayName": "03",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 103,
"height": 92,
"rawWidth": 103,
"rawHeight": 92,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-51.5,
-46,
0,
51.5,
-46,
0,
-51.5,
46,
0,
51.5,
46,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
92,
103,
92,
0,
0,
103,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-51.5,
-46,
0
],
"maxPos": [
51.5,
46,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "d1d9666e-eddc-4afc-982d-804b94d76381@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "d1d9666e-eddc-4afc-982d-804b94d76381@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View File

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "b3acc4dc-ab39-4e70-9d38-78fa7bb4d051",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "b3acc4dc-ab39-4e70-9d38-78fa7bb4d051@6c48a",
"displayName": "04",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "b3acc4dc-ab39-4e70-9d38-78fa7bb4d051",
"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": "b3acc4dc-ab39-4e70-9d38-78fa7bb4d051@f9941",
"displayName": "04",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 85,
"height": 98,
"rawWidth": 85,
"rawHeight": 98,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-42.5,
-49,
0,
42.5,
-49,
0,
-42.5,
49,
0,
42.5,
49,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
98,
85,
98,
0,
0,
85,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-42.5,
-49,
0
],
"maxPos": [
42.5,
49,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "b3acc4dc-ab39-4e70-9d38-78fa7bb4d051@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "b3acc4dc-ab39-4e70-9d38-78fa7bb4d051@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

View File

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "53c47260-dae3-4cd9-8a55-00b2b32d5e5c",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "53c47260-dae3-4cd9-8a55-00b2b32d5e5c@6c48a",
"displayName": "05",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "53c47260-dae3-4cd9-8a55-00b2b32d5e5c",
"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": "53c47260-dae3-4cd9-8a55-00b2b32d5e5c@f9941",
"displayName": "05",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": 0,
"trimX": 1,
"trimY": 0,
"width": 94,
"height": 107,
"rawWidth": 95,
"rawHeight": 107,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-47,
-53.5,
0,
47,
-53.5,
0,
-47,
53.5,
0,
47,
53.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
1,
107,
95,
107,
1,
0,
95,
0
],
"nuv": [
0.010526315789473684,
0,
1,
0,
0.010526315789473684,
1,
1,
1
],
"minPos": [
-47,
-53.5,
0
],
"maxPos": [
47,
53.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "53c47260-dae3-4cd9-8a55-00b2b32d5e5c@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "53c47260-dae3-4cd9-8a55-00b2b32d5e5c@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

View File

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "71fd6768-f050-42b0-a5b0-dbebfbbc5c54",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "71fd6768-f050-42b0-a5b0-dbebfbbc5c54@6c48a",
"displayName": "06",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "71fd6768-f050-42b0-a5b0-dbebfbbc5c54",
"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": "71fd6768-f050-42b0-a5b0-dbebfbbc5c54@f9941",
"displayName": "06",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 90,
"height": 103,
"rawWidth": 90,
"rawHeight": 103,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-45,
-51.5,
0,
45,
-51.5,
0,
-45,
51.5,
0,
45,
51.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
103,
90,
103,
0,
0,
90,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-45,
-51.5,
0
],
"maxPos": [
45,
51.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "71fd6768-f050-42b0-a5b0-dbebfbbc5c54@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "71fd6768-f050-42b0-a5b0-dbebfbbc5c54@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

View File

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "c47bd62a-dff4-4fec-a62f-a0f373f87d4b",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "c47bd62a-dff4-4fec-a62f-a0f373f87d4b@6c48a",
"displayName": "07",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "c47bd62a-dff4-4fec-a62f-a0f373f87d4b",
"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": "c47bd62a-dff4-4fec-a62f-a0f373f87d4b@f9941",
"displayName": "07",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 108,
"height": 107,
"rawWidth": 108,
"rawHeight": 107,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-54,
-53.5,
0,
54,
-53.5,
0,
-54,
53.5,
0,
54,
53.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
107,
108,
107,
0,
0,
108,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-54,
-53.5,
0
],
"maxPos": [
54,
53.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "c47bd62a-dff4-4fec-a62f-a0f373f87d4b@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "c47bd62a-dff4-4fec-a62f-a0f373f87d4b@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

View File

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "359293f2-2572-4a81-8955-00a4a090c949",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "359293f2-2572-4a81-8955-00a4a090c949@6c48a",
"displayName": "08",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "359293f2-2572-4a81-8955-00a4a090c949",
"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": "359293f2-2572-4a81-8955-00a4a090c949@f9941",
"displayName": "08",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 86,
"height": 103,
"rawWidth": 86,
"rawHeight": 103,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-43,
-51.5,
0,
43,
-51.5,
0,
-43,
51.5,
0,
43,
51.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
103,
86,
103,
0,
0,
86,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-43,
-51.5,
0
],
"maxPos": [
43,
51.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "359293f2-2572-4a81-8955-00a4a090c949@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "359293f2-2572-4a81-8955-00a4a090c949@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

View File

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "21d48b92-337f-4b9b-a0e2-5ca5627f2be0",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "21d48b92-337f-4b9b-a0e2-5ca5627f2be0@6c48a",
"displayName": "09",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "21d48b92-337f-4b9b-a0e2-5ca5627f2be0",
"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": "21d48b92-337f-4b9b-a0e2-5ca5627f2be0@f9941",
"displayName": "09",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 85,
"height": 98,
"rawWidth": 85,
"rawHeight": 98,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-42.5,
-49,
0,
42.5,
-49,
0,
-42.5,
49,
0,
42.5,
49,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
98,
85,
98,
0,
0,
85,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-42.5,
-49,
0
],
"maxPos": [
42.5,
49,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "21d48b92-337f-4b9b-a0e2-5ca5627f2be0@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "21d48b92-337f-4b9b-a0e2-5ca5627f2be0@6c48a"
}
}

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": "25fb5756-6bfc-459d-bc60-7f19a65a8704",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "25fb5756-6bfc-459d-bc60-7f19a65a8704@6c48a",
"displayName": "10",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "25fb5756-6bfc-459d-bc60-7f19a65a8704",
"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": "25fb5756-6bfc-459d-bc60-7f19a65a8704@f9941",
"displayName": "10",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 76,
"height": 84,
"rawWidth": 76,
"rawHeight": 84,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-38,
-42,
0,
38,
-42,
0,
-38,
42,
0,
38,
42,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
84,
76,
84,
0,
0,
76,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-38,
-42,
0
],
"maxPos": [
38,
42,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "25fb5756-6bfc-459d-bc60-7f19a65a8704@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "25fb5756-6bfc-459d-bc60-7f19a65a8704@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

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": "85f905d3-97f8-49af-847d-ca7e3a7a7554",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "85f905d3-97f8-49af-847d-ca7e3a7a7554@6c48a",
"displayName": "11",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "85f905d3-97f8-49af-847d-ca7e3a7a7554",
"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": "85f905d3-97f8-49af-847d-ca7e3a7a7554@f9941",
"displayName": "11",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 103,
"height": 109,
"rawWidth": 103,
"rawHeight": 109,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-51.5,
-54.5,
0,
51.5,
-54.5,
0,
-51.5,
54.5,
0,
51.5,
54.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
109,
103,
109,
0,
0,
103,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-51.5,
-54.5,
0
],
"maxPos": [
51.5,
54.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "85f905d3-97f8-49af-847d-ca7e3a7a7554@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "85f905d3-97f8-49af-847d-ca7e3a7a7554@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

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": "76377b34-5e1a-47d3-9e0a-a3ea076b6006",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "76377b34-5e1a-47d3-9e0a-a3ea076b6006@6c48a",
"displayName": "12",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "76377b34-5e1a-47d3-9e0a-a3ea076b6006",
"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": "76377b34-5e1a-47d3-9e0a-a3ea076b6006@f9941",
"displayName": "12",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 92,
"height": 101,
"rawWidth": 92,
"rawHeight": 101,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-46,
-50.5,
0,
46,
-50.5,
0,
-46,
50.5,
0,
46,
50.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
101,
92,
101,
0,
0,
92,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-46,
-50.5,
0
],
"maxPos": [
46,
50.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "76377b34-5e1a-47d3-9e0a-a3ea076b6006@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "76377b34-5e1a-47d3-9e0a-a3ea076b6006@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

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": "58eeaf17-93c1-425e-95f8-616938474b7c",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "58eeaf17-93c1-425e-95f8-616938474b7c@6c48a",
"displayName": "13",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "58eeaf17-93c1-425e-95f8-616938474b7c",
"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": "58eeaf17-93c1-425e-95f8-616938474b7c@f9941",
"displayName": "13",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 90,
"height": 104,
"rawWidth": 90,
"rawHeight": 104,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-45,
-52,
0,
45,
-52,
0,
-45,
52,
0,
45,
52,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
104,
90,
104,
0,
0,
90,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-45,
-52,
0
],
"maxPos": [
45,
52,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "58eeaf17-93c1-425e-95f8-616938474b7c@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "58eeaf17-93c1-425e-95f8-616938474b7c@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View File

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

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": "183d4684-c707-4f3d-8aa4-9512fb0b65a3",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "183d4684-c707-4f3d-8aa4-9512fb0b65a3@6c48a",
"displayName": "15",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "183d4684-c707-4f3d-8aa4-9512fb0b65a3",
"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": "183d4684-c707-4f3d-8aa4-9512fb0b65a3@f9941",
"displayName": "15",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 101,
"height": 103,
"rawWidth": 101,
"rawHeight": 103,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-50.5,
-51.5,
0,
50.5,
-51.5,
0,
-50.5,
51.5,
0,
50.5,
51.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
103,
101,
103,
0,
0,
101,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-50.5,
-51.5,
0
],
"maxPos": [
50.5,
51.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "183d4684-c707-4f3d-8aa4-9512fb0b65a3@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "183d4684-c707-4f3d-8aa4-9512fb0b65a3@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

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": "6c32292e-b249-4219-a97a-23abb316e17c",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "6c32292e-b249-4219-a97a-23abb316e17c@6c48a",
"displayName": "16",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "6c32292e-b249-4219-a97a-23abb316e17c",
"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": "6c32292e-b249-4219-a97a-23abb316e17c@f9941",
"displayName": "16",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 72,
"height": 81,
"rawWidth": 72,
"rawHeight": 81,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-36,
-40.5,
0,
36,
-40.5,
0,
-36,
40.5,
0,
36,
40.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
81,
72,
81,
0,
0,
72,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-36,
-40.5,
0
],
"maxPos": [
36,
40.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "6c32292e-b249-4219-a97a-23abb316e17c@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "6c32292e-b249-4219-a97a-23abb316e17c@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

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": "6cac2c37-e5e1-40e8-bd6f-8eae0a0f270d",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "6cac2c37-e5e1-40e8-bd6f-8eae0a0f270d@6c48a",
"displayName": "17",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "6cac2c37-e5e1-40e8-bd6f-8eae0a0f270d",
"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": "6cac2c37-e5e1-40e8-bd6f-8eae0a0f270d@f9941",
"displayName": "17",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 86,
"height": 101,
"rawWidth": 86,
"rawHeight": 101,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-43,
-50.5,
0,
43,
-50.5,
0,
-43,
50.5,
0,
43,
50.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
101,
86,
101,
0,
0,
86,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-43,
-50.5,
0
],
"maxPos": [
43,
50.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "6cac2c37-e5e1-40e8-bd6f-8eae0a0f270d@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "6cac2c37-e5e1-40e8-bd6f-8eae0a0f270d@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "571faadd-c29b-4d28-9f1f-d856ed2b03d6",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "571faadd-c29b-4d28-9f1f-d856ed2b03d6@6c48a",
"displayName": "18",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "571faadd-c29b-4d28-9f1f-d856ed2b03d6",
"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": "571faadd-c29b-4d28-9f1f-d856ed2b03d6@f9941",
"displayName": "18",
"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": "571faadd-c29b-4d28-9f1f-d856ed2b03d6@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "571faadd-c29b-4d28-9f1f-d856ed2b03d6@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View File

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

View File

@@ -0,0 +1,3 @@
{
"__type__": "cc.SpriteAtlas"
}

View File

@@ -0,0 +1,39 @@
{
"ver": "1.0.8",
"importer": "auto-atlas",
"imported": true,
"uuid": "b3bf8628-dd13-4d75-96df-556038964da4",
"files": [
".json"
],
"subMetas": {},
"userData": {
"maxWidth": 1024,
"maxHeight": 1024,
"padding": 2,
"allowRotation": true,
"forceSquared": false,
"powerOfTwo": false,
"algorithm": "MaxRects",
"format": "png",
"quality": 80,
"contourBleed": true,
"paddingBleed": true,
"filterUnused": true,
"removeTextureInBundle": true,
"removeImageInBundle": true,
"removeSpriteAtlasInBundle": true,
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
},
"textureSetting": {
"wrapModeS": "repeat",
"wrapModeT": "repeat",
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View File

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

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": "48e4d9ef-532e-4974-8eaf-77a2c7529243",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "48e4d9ef-532e-4974-8eaf-77a2c7529243@6c48a",
"displayName": "dice_2",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "48e4d9ef-532e-4974-8eaf-77a2c7529243",
"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": "48e4d9ef-532e-4974-8eaf-77a2c7529243@f9941",
"displayName": "dice_2",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 75,
"height": 95,
"rawWidth": 75,
"rawHeight": 95,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-37.5,
-47.5,
0,
37.5,
-47.5,
0,
-37.5,
47.5,
0,
37.5,
47.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
95,
75,
95,
0,
0,
75,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-37.5,
-47.5,
0
],
"maxPos": [
37.5,
47.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "48e4d9ef-532e-4974-8eaf-77a2c7529243@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "48e4d9ef-532e-4974-8eaf-77a2c7529243@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View File

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

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": "4d4a00b7-8710-44b1-a696-682ab35adace",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "4d4a00b7-8710-44b1-a696-682ab35adace@6c48a",
"displayName": "dice_4",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "4d4a00b7-8710-44b1-a696-682ab35adace",
"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": "4d4a00b7-8710-44b1-a696-682ab35adace@f9941",
"displayName": "dice_4",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 73,
"height": 95,
"rawWidth": 73,
"rawHeight": 95,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-36.5,
-47.5,
0,
36.5,
-47.5,
0,
-36.5,
47.5,
0,
36.5,
47.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
95,
73,
95,
0,
0,
73,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-36.5,
-47.5,
0
],
"maxPos": [
36.5,
47.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "4d4a00b7-8710-44b1-a696-682ab35adace@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "4d4a00b7-8710-44b1-a696-682ab35adace@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

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": "7f8b31df-9da4-4e16-9072-b1d06490667a",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "7f8b31df-9da4-4e16-9072-b1d06490667a@6c48a",
"displayName": "dice_5",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "7f8b31df-9da4-4e16-9072-b1d06490667a",
"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": "7f8b31df-9da4-4e16-9072-b1d06490667a@f9941",
"displayName": "dice_5",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 75,
"height": 95,
"rawWidth": 75,
"rawHeight": 95,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-37.5,
-47.5,
0,
37.5,
-47.5,
0,
-37.5,
47.5,
0,
37.5,
47.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
95,
75,
95,
0,
0,
75,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-37.5,
-47.5,
0
],
"maxPos": [
37.5,
47.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "7f8b31df-9da4-4e16-9072-b1d06490667a@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "7f8b31df-9da4-4e16-9072-b1d06490667a@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

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": "aefe1d90-2409-4319-8fa5-6427aef56898",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "aefe1d90-2409-4319-8fa5-6427aef56898@6c48a",
"displayName": "dice_6",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "aefe1d90-2409-4319-8fa5-6427aef56898",
"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": "aefe1d90-2409-4319-8fa5-6427aef56898@f9941",
"displayName": "dice_6",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 73,
"height": 94,
"rawWidth": 73,
"rawHeight": 94,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-36.5,
-47,
0,
36.5,
-47,
0,
-36.5,
47,
0,
36.5,
47,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
94,
73,
94,
0,
0,
73,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-36.5,
-47,
0
],
"maxPos": [
36.5,
47,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "aefe1d90-2409-4319-8fa5-6427aef56898@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "aefe1d90-2409-4319-8fa5-6427aef56898@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 278 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 MiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 543 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 468 KiB

View File

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

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": "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,
"trimX": 0,
"trimY": 0,
"width": 115,
"height": 119,
"rawWidth": 115,
"rawHeight": 119,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-57.5,
-59.5,
0,
57.5,
-59.5,
0,
-57.5,
59.5,
0,
57.5,
59.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
119,
115,
119,
0,
0,
115,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-57.5,
-59.5,
0
],
"maxPos": [
57.5,
59.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": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 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,
"trimX": 0,
"trimY": 0,
"width": 115,
"height": 119,
"rawWidth": 115,
"rawHeight": 119,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-57.5,
-59.5,
0,
57.5,
-59.5,
0,
-57.5,
59.5,
0,
57.5,
59.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
119,
115,
119,
0,
0,
115,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-57.5,
-59.5,
0
],
"maxPos": [
57.5,
59.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": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 631 KiB

View File

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

View File

@@ -0,0 +1,9 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "20723ce9-1825-48bc-b3d2-56f1439529bb",
"files": [],
"subMetas": {},
"userData": {}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "bb81d307-858e-41ad-93cf-8dcf36b257c4",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "bb81d307-858e-41ad-93cf-8dcf36b257c4@6c48a",
"displayName": "10",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "bb81d307-858e-41ad-93cf-8dcf36b257c4",
"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": "bb81d307-858e-41ad-93cf-8dcf36b257c4@f9941",
"displayName": "10",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 48,
"height": 31,
"rawWidth": 48,
"rawHeight": 31,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-24,
-15.5,
0,
24,
-15.5,
0,
-24,
15.5,
0,
24,
15.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
31,
48,
31,
0,
0,
48,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-24,
-15.5,
0
],
"maxPos": [
24,
15.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "bb81d307-858e-41ad-93cf-8dcf36b257c4@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "bb81d307-858e-41ad-93cf-8dcf36b257c4@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "7811c862-baaf-42b2-991f-7a25bb67c05f",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "7811c862-baaf-42b2-991f-7a25bb67c05f@6c48a",
"displayName": "10l",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "7811c862-baaf-42b2-991f-7a25bb67c05f",
"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": "7811c862-baaf-42b2-991f-7a25bb67c05f@f9941",
"displayName": "10l",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 48,
"height": 31,
"rawWidth": 48,
"rawHeight": 31,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-24,
-15.5,
0,
24,
-15.5,
0,
-24,
15.5,
0,
24,
15.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
31,
48,
31,
0,
0,
48,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-24,
-15.5,
0
],
"maxPos": [
24,
15.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "7811c862-baaf-42b2-991f-7a25bb67c05f@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "7811c862-baaf-42b2-991f-7a25bb67c05f@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 776 B

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 769 B

View File

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "d2d5f29f-736c-4aba-bfe3-df12bb824d8c",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "d2d5f29f-736c-4aba-bfe3-df12bb824d8c@6c48a",
"displayName": "11l",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "d2d5f29f-736c-4aba-bfe3-df12bb824d8c",
"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": "d2d5f29f-736c-4aba-bfe3-df12bb824d8c@f9941",
"displayName": "11l",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 44,
"height": 29,
"rawWidth": 44,
"rawHeight": 29,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-22,
-14.5,
0,
22,
-14.5,
0,
-22,
14.5,
0,
22,
14.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
29,
44,
29,
0,
0,
44,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-22,
-14.5,
0
],
"maxPos": [
22,
14.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "d2d5f29f-736c-4aba-bfe3-df12bb824d8c@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "d2d5f29f-736c-4aba-bfe3-df12bb824d8c@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "a19557a0-5e14-47aa-868b-fea0aade76f5",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "a19557a0-5e14-47aa-868b-fea0aade76f5@6c48a",
"displayName": "12l",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "a19557a0-5e14-47aa-868b-fea0aade76f5",
"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": "a19557a0-5e14-47aa-868b-fea0aade76f5@f9941",
"displayName": "12l",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 43,
"height": 30,
"rawWidth": 43,
"rawHeight": 30,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-21.5,
-15,
0,
21.5,
-15,
0,
-21.5,
15,
0,
21.5,
15,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
30,
43,
30,
0,
0,
43,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-21.5,
-15,
0
],
"maxPos": [
21.5,
15,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "a19557a0-5e14-47aa-868b-fea0aade76f5@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "a19557a0-5e14-47aa-868b-fea0aade76f5@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "2bb35510-1900-4111-98f4-1aa3620e7045",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "2bb35510-1900-4111-98f4-1aa3620e7045@6c48a",
"displayName": "13l",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "2bb35510-1900-4111-98f4-1aa3620e7045",
"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": "2bb35510-1900-4111-98f4-1aa3620e7045@f9941",
"displayName": "13l",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 44,
"height": 30,
"rawWidth": 44,
"rawHeight": 30,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-22,
-15,
0,
22,
-15,
0,
-22,
15,
0,
22,
15,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
30,
44,
30,
0,
0,
44,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-22,
-15,
0
],
"maxPos": [
22,
15,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "2bb35510-1900-4111-98f4-1aa3620e7045@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "2bb35510-1900-4111-98f4-1aa3620e7045@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "4d93cc6e-c387-4418-be4f-9952a5669690",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "4d93cc6e-c387-4418-be4f-9952a5669690@6c48a",
"displayName": "14l",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "4d93cc6e-c387-4418-be4f-9952a5669690",
"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": "4d93cc6e-c387-4418-be4f-9952a5669690@f9941",
"displayName": "14l",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 46,
"height": 30,
"rawWidth": 46,
"rawHeight": 30,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-23,
-15,
0,
23,
-15,
0,
-23,
15,
0,
23,
15,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
30,
46,
30,
0,
0,
46,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-23,
-15,
0
],
"maxPos": [
23,
15,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "4d93cc6e-c387-4418-be4f-9952a5669690@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "4d93cc6e-c387-4418-be4f-9952a5669690@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "dd31734f-d6b9-4ab4-95be-f80fce922e01",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "dd31734f-d6b9-4ab4-95be-f80fce922e01@6c48a",
"displayName": "15l",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "dd31734f-d6b9-4ab4-95be-f80fce922e01",
"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": "dd31734f-d6b9-4ab4-95be-f80fce922e01@f9941",
"displayName": "15l",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 41,
"height": 29,
"rawWidth": 41,
"rawHeight": 29,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-20.5,
-14.5,
0,
20.5,
-14.5,
0,
-20.5,
14.5,
0,
20.5,
14.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
29,
41,
29,
0,
0,
41,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-20.5,
-14.5,
0
],
"maxPos": [
20.5,
14.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "dd31734f-d6b9-4ab4-95be-f80fce922e01@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "dd31734f-d6b9-4ab4-95be-f80fce922e01@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "35ef77a7-4570-48e3-8580-318b0442afbf",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "35ef77a7-4570-48e3-8580-318b0442afbf@6c48a",
"displayName": "16l",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "35ef77a7-4570-48e3-8580-318b0442afbf",
"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": "35ef77a7-4570-48e3-8580-318b0442afbf@f9941",
"displayName": "16l",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 41,
"height": 30,
"rawWidth": 41,
"rawHeight": 30,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-20.5,
-15,
0,
20.5,
-15,
0,
-20.5,
15,
0,
20.5,
15,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
30,
41,
30,
0,
0,
41,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-20.5,
-15,
0
],
"maxPos": [
20.5,
15,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "35ef77a7-4570-48e3-8580-318b0442afbf@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "35ef77a7-4570-48e3-8580-318b0442afbf@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "e1834b19-83ec-4db6-aa4d-948baf271272",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "e1834b19-83ec-4db6-aa4d-948baf271272@6c48a",
"displayName": "17l",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "e1834b19-83ec-4db6-aa4d-948baf271272",
"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": "e1834b19-83ec-4db6-aa4d-948baf271272@f9941",
"displayName": "17l",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 43,
"height": 29,
"rawWidth": 43,
"rawHeight": 29,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-21.5,
-14.5,
0,
21.5,
-14.5,
0,
-21.5,
14.5,
0,
21.5,
14.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
29,
43,
29,
0,
0,
43,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-21.5,
-14.5,
0
],
"maxPos": [
21.5,
14.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "e1834b19-83ec-4db6-aa4d-948baf271272@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "e1834b19-83ec-4db6-aa4d-948baf271272@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "757a0858-eb1b-41bb-866a-e872982d1df1",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "757a0858-eb1b-41bb-866a-e872982d1df1@6c48a",
"displayName": "18l",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "757a0858-eb1b-41bb-866a-e872982d1df1",
"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": "757a0858-eb1b-41bb-866a-e872982d1df1@f9941",
"displayName": "18l",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 45,
"height": 31,
"rawWidth": 45,
"rawHeight": 31,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-22.5,
-15.5,
0,
22.5,
-15.5,
0,
-22.5,
15.5,
0,
22.5,
15.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
31,
45,
31,
0,
0,
45,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-22.5,
-15.5,
0
],
"maxPos": [
22.5,
15.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "757a0858-eb1b-41bb-866a-e872982d1df1@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "757a0858-eb1b-41bb-866a-e872982d1df1@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "f89e9283-be8e-4acd-8108-bddc3a540990",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "f89e9283-be8e-4acd-8108-bddc3a540990@6c48a",
"displayName": "19l",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "f89e9283-be8e-4acd-8108-bddc3a540990",
"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": "f89e9283-be8e-4acd-8108-bddc3a540990@f9941",
"displayName": "19l",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 44,
"height": 29,
"rawWidth": 44,
"rawHeight": 29,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-22,
-14.5,
0,
22,
-14.5,
0,
-22,
14.5,
0,
22,
14.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
29,
44,
29,
0,
0,
44,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-22,
-14.5,
0
],
"maxPos": [
22,
14.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "f89e9283-be8e-4acd-8108-bddc3a540990@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "f89e9283-be8e-4acd-8108-bddc3a540990@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "5def49d5-b5ef-405d-9fc1-1dcbb748bfbb",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "5def49d5-b5ef-405d-9fc1-1dcbb748bfbb@6c48a",
"displayName": "20l",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "5def49d5-b5ef-405d-9fc1-1dcbb748bfbb",
"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": "5def49d5-b5ef-405d-9fc1-1dcbb748bfbb@f9941",
"displayName": "20l",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 57,
"height": 36,
"rawWidth": 57,
"rawHeight": 36,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-28.5,
-18,
0,
28.5,
-18,
0,
-28.5,
18,
0,
28.5,
18,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
36,
57,
36,
0,
0,
57,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-28.5,
-18,
0
],
"maxPos": [
28.5,
18,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "5def49d5-b5ef-405d-9fc1-1dcbb748bfbb@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "5def49d5-b5ef-405d-9fc1-1dcbb748bfbb@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "50c88343-de2d-4fc9-96ab-6736810b2c9b",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "50c88343-de2d-4fc9-96ab-6736810b2c9b@6c48a",
"displayName": "21l",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "50c88343-de2d-4fc9-96ab-6736810b2c9b",
"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": "50c88343-de2d-4fc9-96ab-6736810b2c9b@f9941",
"displayName": "21l",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 44,
"height": 29,
"rawWidth": 44,
"rawHeight": 29,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-22,
-14.5,
0,
22,
-14.5,
0,
-22,
14.5,
0,
22,
14.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
29,
44,
29,
0,
0,
44,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-22,
-14.5,
0
],
"maxPos": [
22,
14.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "50c88343-de2d-4fc9-96ab-6736810b2c9b@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "50c88343-de2d-4fc9-96ab-6736810b2c9b@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "1d4f4232-6a89-4252-9617-c9ed57b92520",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "1d4f4232-6a89-4252-9617-c9ed57b92520@6c48a",
"displayName": "22l",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "1d4f4232-6a89-4252-9617-c9ed57b92520",
"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": "1d4f4232-6a89-4252-9617-c9ed57b92520@f9941",
"displayName": "22l",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 45,
"height": 30,
"rawWidth": 45,
"rawHeight": 30,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-22.5,
-15,
0,
22.5,
-15,
0,
-22.5,
15,
0,
22.5,
15,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
30,
45,
30,
0,
0,
45,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-22.5,
-15,
0
],
"maxPos": [
22.5,
15,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "1d4f4232-6a89-4252-9617-c9ed57b92520@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "1d4f4232-6a89-4252-9617-c9ed57b92520@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "36f480e9-5d93-40b6-abfc-7333089b1233",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "36f480e9-5d93-40b6-abfc-7333089b1233@6c48a",
"displayName": "23l",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "36f480e9-5d93-40b6-abfc-7333089b1233",
"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": "36f480e9-5d93-40b6-abfc-7333089b1233@f9941",
"displayName": "23l",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 44,
"height": 30,
"rawWidth": 44,
"rawHeight": 30,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-22,
-15,
0,
22,
-15,
0,
-22,
15,
0,
22,
15,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
30,
44,
30,
0,
0,
44,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-22,
-15,
0
],
"maxPos": [
22,
15,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "36f480e9-5d93-40b6-abfc-7333089b1233@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "36f480e9-5d93-40b6-abfc-7333089b1233@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "67e96d2e-3d75-4937-afca-1f672d29e06c",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "67e96d2e-3d75-4937-afca-1f672d29e06c@6c48a",
"displayName": "24l",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "67e96d2e-3d75-4937-afca-1f672d29e06c",
"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": "67e96d2e-3d75-4937-afca-1f672d29e06c@f9941",
"displayName": "24l",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 52,
"height": 34,
"rawWidth": 52,
"rawHeight": 34,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-26,
-17,
0,
26,
-17,
0,
-26,
17,
0,
26,
17,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
34,
52,
34,
0,
0,
52,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-26,
-17,
0
],
"maxPos": [
26,
17,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "67e96d2e-3d75-4937-afca-1f672d29e06c@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "67e96d2e-3d75-4937-afca-1f672d29e06c@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "c69bc0bc-1c3b-4a29-9f86-dfb85363718b",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "c69bc0bc-1c3b-4a29-9f86-dfb85363718b@6c48a",
"displayName": "25l",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "c69bc0bc-1c3b-4a29-9f86-dfb85363718b",
"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": "c69bc0bc-1c3b-4a29-9f86-dfb85363718b@f9941",
"displayName": "25l",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 46,
"height": 30,
"rawWidth": 46,
"rawHeight": 30,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-23,
-15,
0,
23,
-15,
0,
-23,
15,
0,
23,
15,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
30,
46,
30,
0,
0,
46,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-23,
-15,
0
],
"maxPos": [
23,
15,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "c69bc0bc-1c3b-4a29-9f86-dfb85363718b@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "c69bc0bc-1c3b-4a29-9f86-dfb85363718b@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "adfa800b-cef9-4550-b298-ec9767ab4e5b",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "adfa800b-cef9-4550-b298-ec9767ab4e5b@6c48a",
"displayName": "26l",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "adfa800b-cef9-4550-b298-ec9767ab4e5b",
"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": "adfa800b-cef9-4550-b298-ec9767ab4e5b@f9941",
"displayName": "26l",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 44,
"height": 31,
"rawWidth": 44,
"rawHeight": 31,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-22,
-15.5,
0,
22,
-15.5,
0,
-22,
15.5,
0,
22,
15.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
31,
44,
31,
0,
0,
44,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-22,
-15.5,
0
],
"maxPos": [
22,
15.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "adfa800b-cef9-4550-b298-ec9767ab4e5b@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "adfa800b-cef9-4550-b298-ec9767ab4e5b@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "425913a4-10d3-4e08-8abc-de4df143726c",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "425913a4-10d3-4e08-8abc-de4df143726c@6c48a",
"displayName": "27l",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "425913a4-10d3-4e08-8abc-de4df143726c",
"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": "425913a4-10d3-4e08-8abc-de4df143726c@f9941",
"displayName": "27l",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 42,
"height": 27,
"rawWidth": 42,
"rawHeight": 27,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-21,
-13.5,
0,
21,
-13.5,
0,
-21,
13.5,
0,
21,
13.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
27,
42,
27,
0,
0,
42,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-21,
-13.5,
0
],
"maxPos": [
21,
13.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "425913a4-10d3-4e08-8abc-de4df143726c@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "425913a4-10d3-4e08-8abc-de4df143726c@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "4e928a5a-93b5-4921-9d7a-2924737417e9",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "4e928a5a-93b5-4921-9d7a-2924737417e9@6c48a",
"displayName": "28l",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "4e928a5a-93b5-4921-9d7a-2924737417e9",
"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": "4e928a5a-93b5-4921-9d7a-2924737417e9@f9941",
"displayName": "28l",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 53,
"height": 33,
"rawWidth": 53,
"rawHeight": 33,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-26.5,
-16.5,
0,
26.5,
-16.5,
0,
-26.5,
16.5,
0,
26.5,
16.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
33,
53,
33,
0,
0,
53,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-26.5,
-16.5,
0
],
"maxPos": [
26.5,
16.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "4e928a5a-93b5-4921-9d7a-2924737417e9@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "4e928a5a-93b5-4921-9d7a-2924737417e9@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "6358dee4-546e-4122-955e-ebf61da702dc",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "6358dee4-546e-4122-955e-ebf61da702dc@6c48a",
"displayName": "29l",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "6358dee4-546e-4122-955e-ebf61da702dc",
"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": "6358dee4-546e-4122-955e-ebf61da702dc@f9941",
"displayName": "29l",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 50,
"height": 31,
"rawWidth": 50,
"rawHeight": 31,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-25,
-15.5,
0,
25,
-15.5,
0,
-25,
15.5,
0,
25,
15.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
31,
50,
31,
0,
0,
50,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-25,
-15.5,
0
],
"maxPos": [
25,
15.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "6358dee4-546e-4122-955e-ebf61da702dc@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "6358dee4-546e-4122-955e-ebf61da702dc@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "64f20555-645d-40d3-b5ad-03cb0fccc715",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "64f20555-645d-40d3-b5ad-03cb0fccc715@6c48a",
"displayName": "30l",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "64f20555-645d-40d3-b5ad-03cb0fccc715",
"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": "64f20555-645d-40d3-b5ad-03cb0fccc715@f9941",
"displayName": "30l",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 45,
"height": 30,
"rawWidth": 45,
"rawHeight": 30,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-22.5,
-15,
0,
22.5,
-15,
0,
-22.5,
15,
0,
22.5,
15,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
30,
45,
30,
0,
0,
45,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-22.5,
-15,
0
],
"maxPos": [
22.5,
15,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "64f20555-645d-40d3-b5ad-03cb0fccc715@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "64f20555-645d-40d3-b5ad-03cb0fccc715@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "be7e371d-06b7-4b75-a9bb-055df7fddae8",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "be7e371d-06b7-4b75-a9bb-055df7fddae8@6c48a",
"displayName": "5l",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "be7e371d-06b7-4b75-a9bb-055df7fddae8",
"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": "be7e371d-06b7-4b75-a9bb-055df7fddae8@f9941",
"displayName": "5l",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 25,
"height": 30,
"rawWidth": 25,
"rawHeight": 30,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-12.5,
-15,
0,
12.5,
-15,
0,
-12.5,
15,
0,
12.5,
15,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
30,
25,
30,
0,
0,
25,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-12.5,
-15,
0
],
"maxPos": [
12.5,
15,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "be7e371d-06b7-4b75-a9bb-055df7fddae8@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "be7e371d-06b7-4b75-a9bb-055df7fddae8@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "0ae74732-d951-4298-a55a-ba5c46d921cb",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "0ae74732-d951-4298-a55a-ba5c46d921cb@6c48a",
"displayName": "6l",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "0ae74732-d951-4298-a55a-ba5c46d921cb",
"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": "0ae74732-d951-4298-a55a-ba5c46d921cb@f9941",
"displayName": "6l",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 27,
"height": 33,
"rawWidth": 27,
"rawHeight": 33,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-13.5,
-16.5,
0,
13.5,
-16.5,
0,
-13.5,
16.5,
0,
13.5,
16.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
33,
27,
33,
0,
0,
27,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-13.5,
-16.5,
0
],
"maxPos": [
13.5,
16.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "0ae74732-d951-4298-a55a-ba5c46d921cb@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "0ae74732-d951-4298-a55a-ba5c46d921cb@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 826 B

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 828 B

View File

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "337cc673-c97d-4143-8022-78b2e751bac4",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "337cc673-c97d-4143-8022-78b2e751bac4@6c48a",
"displayName": "7l",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "337cc673-c97d-4143-8022-78b2e751bac4",
"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": "337cc673-c97d-4143-8022-78b2e751bac4@f9941",
"displayName": "7l",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 25,
"height": 32,
"rawWidth": 25,
"rawHeight": 32,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-12.5,
-16,
0,
12.5,
-16,
0,
-12.5,
16,
0,
12.5,
16,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
32,
25,
32,
0,
0,
25,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-12.5,
-16,
0
],
"maxPos": [
12.5,
16,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "337cc673-c97d-4143-8022-78b2e751bac4@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "337cc673-c97d-4143-8022-78b2e751bac4@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "67078997-b2f2-4061-a8ef-bb31715cd09e",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "67078997-b2f2-4061-a8ef-bb31715cd09e@6c48a",
"displayName": "8l",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "67078997-b2f2-4061-a8ef-bb31715cd09e",
"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": "67078997-b2f2-4061-a8ef-bb31715cd09e@f9941",
"displayName": "8l",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 23,
"height": 31,
"rawWidth": 23,
"rawHeight": 31,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-11.5,
-15.5,
0,
11.5,
-15.5,
0,
-11.5,
15.5,
0,
11.5,
15.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
31,
23,
31,
0,
0,
23,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-11.5,
-15.5,
0
],
"maxPos": [
11.5,
15.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "67078997-b2f2-4061-a8ef-bb31715cd09e@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "67078997-b2f2-4061-a8ef-bb31715cd09e@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "88a4471c-d7fb-4a58-bd39-e1748181ef37",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "88a4471c-d7fb-4a58-bd39-e1748181ef37@6c48a",
"displayName": "9l",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "88a4471c-d7fb-4a58-bd39-e1748181ef37",
"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": "88a4471c-d7fb-4a58-bd39-e1748181ef37@f9941",
"displayName": "9l",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 22,
"height": 30,
"rawWidth": 22,
"rawHeight": 30,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-11,
-15,
0,
11,
-15,
0,
-11,
15,
0,
11,
15,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
30,
22,
30,
0,
0,
22,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-11,
-15,
0
],
"maxPos": [
11,
15,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "88a4471c-d7fb-4a58-bd39-e1748181ef37@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "88a4471c-d7fb-4a58-bd39-e1748181ef37@6c48a"
}
}

View File

@@ -0,0 +1,3 @@
{
"__type__": "cc.SpriteAtlas"
}

View File

@@ -0,0 +1,39 @@
{
"ver": "1.0.8",
"importer": "auto-atlas",
"imported": true,
"uuid": "1e1e8a37-6422-47e1-b181-0e9d12fbf4a9",
"files": [
".json"
],
"subMetas": {},
"userData": {
"maxWidth": 1024,
"maxHeight": 1024,
"padding": 2,
"allowRotation": true,
"forceSquared": false,
"powerOfTwo": false,
"algorithm": "MaxRects",
"format": "png",
"quality": 80,
"contourBleed": true,
"paddingBleed": true,
"filterUnused": true,
"removeTextureInBundle": true,
"removeImageInBundle": true,
"removeSpriteAtlasInBundle": true,
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
},
"textureSetting": {
"wrapModeS": "repeat",
"wrapModeT": "repeat",
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
}
}
}

View File

@@ -0,0 +1,9 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "683fd107-db50-47f6-9d8c-1ba1f3073bff",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@@ -0,0 +1,3 @@
{
"__type__": "cc.SpriteAtlas"
}

View File

@@ -0,0 +1,39 @@
{
"ver": "1.0.8",
"importer": "auto-atlas",
"imported": true,
"uuid": "74fc7029-8c82-4d23-9678-d4e93a9c90df",
"files": [
".json"
],
"subMetas": {},
"userData": {
"maxWidth": 1200,
"maxHeight": 1200,
"padding": 2,
"allowRotation": true,
"forceSquared": false,
"powerOfTwo": false,
"algorithm": "MaxRects",
"format": "png",
"quality": 80,
"contourBleed": true,
"paddingBleed": true,
"filterUnused": true,
"removeTextureInBundle": true,
"removeImageInBundle": true,
"removeSpriteAtlasInBundle": true,
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
},
"textureSetting": {
"wrapModeS": "repeat",
"wrapModeT": "repeat",
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.6 KiB

View File

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

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": "b222d1ea-959b-424c-a77e-a050e3c1b87b",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "b222d1ea-959b-424c-a77e-a050e3c1b87b@6c48a",
"displayName": "main_bg_lab",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "b222d1ea-959b-424c-a77e-a050e3c1b87b",
"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": "b222d1ea-959b-424c-a77e-a050e3c1b87b@f9941",
"displayName": "main_bg_lab",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 1080,
"height": 12,
"rawWidth": 1080,
"rawHeight": 12,
"borderTop": 3,
"borderBottom": 3,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-540,
-6,
0,
540,
-6,
0,
-540,
6,
0,
540,
6,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
12,
1080,
12,
0,
0,
1080,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-540,
-6,
0
],
"maxPos": [
540,
6,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "b222d1ea-959b-424c-a77e-a050e3c1b87b@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "b222d1ea-959b-424c-a77e-a050e3c1b87b@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 150 KiB

View File

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

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": "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"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 157 KiB

View File

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

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": "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,
"trimX": 0,
"trimY": 0,
"width": 115,
"height": 119,
"rawWidth": 115,
"rawHeight": 119,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-57.5,
-59.5,
0,
57.5,
-59.5,
0,
-57.5,
59.5,
0,
57.5,
59.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
119,
115,
119,
0,
0,
115,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-57.5,
-59.5,
0
],
"maxPos": [
57.5,
59.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": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.6 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 147 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 144 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 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,
"trimX": 0,
"trimY": 0,
"width": 115,
"height": 119,
"rawWidth": 115,
"rawHeight": 119,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-57.5,
-59.5,
0,
57.5,
-59.5,
0,
-57.5,
59.5,
0,
57.5,
59.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
119,
115,
119,
0,
0,
115,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-57.5,
-59.5,
0
],
"maxPos": [
57.5,
59.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": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

View File

@@ -0,0 +1,138 @@
{
"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"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "632f0633-843c-449e-929f-8389dd38bfd1",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "632f0633-843c-449e-929f-8389dd38bfd1@6c48a",
"displayName": "main_dice_shadow",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "632f0633-843c-449e-929f-8389dd38bfd1",
"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": "632f0633-843c-449e-929f-8389dd38bfd1@f9941",
"displayName": "main_dice_shadow",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 135,
"height": 69,
"rawWidth": 135,
"rawHeight": 69,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-67.5,
-34.5,
0,
67.5,
-34.5,
0,
-67.5,
34.5,
0,
67.5,
34.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
69,
135,
69,
0,
0,
135,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-67.5,
-34.5,
0
],
"maxPos": [
67.5,
34.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "632f0633-843c-449e-929f-8389dd38bfd1@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "632f0633-843c-449e-929f-8389dd38bfd1@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

View File

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "2b422e8e-3f0a-4660-8c10-5d60d2d3a7a7",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "2b422e8e-3f0a-4660-8c10-5d60d2d3a7a7@6c48a",
"displayName": "main_eff_flash",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "2b422e8e-3f0a-4660-8c10-5d60d2d3a7a7",
"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": "2b422e8e-3f0a-4660-8c10-5d60d2d3a7a7@f9941",
"displayName": "main_eff_flash",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 7.5,
"trimX": 0,
"trimY": 49,
"width": 400,
"height": 287,
"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": [
-200,
-143.5,
0,
200,
-143.5,
0,
-200,
143.5,
0,
200,
143.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
351,
400,
351,
0,
64,
400,
64
],
"nuv": [
0,
0.16,
1,
0.16,
0,
0.8775,
1,
0.8775
],
"minPos": [
-200,
-143.5,
0
],
"maxPos": [
200,
143.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "2b422e8e-3f0a-4660-8c10-5d60d2d3a7a7@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "2b422e8e-3f0a-4660-8c10-5d60d2d3a7a7@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.0 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 242 KiB

View File

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

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": "11b281d1-1860-4bfe-90f0-9fd459d7ebc3",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "11b281d1-1860-4bfe-90f0-9fd459d7ebc3@6c48a",
"displayName": "main_icon_name",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "11b281d1-1860-4bfe-90f0-9fd459d7ebc3",
"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": "11b281d1-1860-4bfe-90f0-9fd459d7ebc3@f9941",
"displayName": "main_icon_name",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 72,
"height": 72,
"rawWidth": 72,
"rawHeight": 72,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-36,
-36,
0,
36,
-36,
0,
-36,
36,
0,
36,
36,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
72,
72,
72,
0,
0,
72,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-36,
-36,
0
],
"maxPos": [
36,
36,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "11b281d1-1860-4bfe-90f0-9fd459d7ebc3@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "11b281d1-1860-4bfe-90f0-9fd459d7ebc3@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.0 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "5c8221c4-26b6-48da-9f85-a49f47c52ea9",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "5c8221c4-26b6-48da-9f85-a49f47c52ea9@6c48a",
"displayName": "main_icon_noauto",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "5c8221c4-26b6-48da-9f85-a49f47c52ea9",
"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": "5c8221c4-26b6-48da-9f85-a49f47c52ea9@f9941",
"displayName": "main_icon_noauto",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 74,
"height": 77,
"rawWidth": 74,
"rawHeight": 77,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-37,
-38.5,
0,
37,
-38.5,
0,
-37,
38.5,
0,
37,
38.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
77,
74,
77,
0,
0,
74,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-37,
-38.5,
0
],
"maxPos": [
37,
38.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "5c8221c4-26b6-48da-9f85-a49f47c52ea9@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "5c8221c4-26b6-48da-9f85-a49f47c52ea9@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "8beb23df-9b92-489d-8ecd-9672a64a10bd",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "8beb23df-9b92-489d-8ecd-9672a64a10bd@6c48a",
"displayName": "main_icon_nsz_en",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "8beb23df-9b92-489d-8ecd-9672a64a10bd",
"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": "8beb23df-9b92-489d-8ecd-9672a64a10bd@f9941",
"displayName": "main_icon_nsz_en",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 229,
"height": 270,
"rawWidth": 229,
"rawHeight": 270,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-114.5,
-135,
0,
114.5,
-135,
0,
-114.5,
135,
0,
114.5,
135,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
270,
229,
270,
0,
0,
229,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-114.5,
-135,
0
],
"maxPos": [
114.5,
135,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "8beb23df-9b92-489d-8ecd-9672a64a10bd@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "8beb23df-9b92-489d-8ecd-9672a64a10bd@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 66 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "9d777390-44b5-4729-8a08-54aebf79952f",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "9d777390-44b5-4729-8a08-54aebf79952f@6c48a",
"displayName": "main_icon_nsz_zh",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "9d777390-44b5-4729-8a08-54aebf79952f",
"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": "9d777390-44b5-4729-8a08-54aebf79952f@f9941",
"displayName": "main_icon_nsz_zh",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 238,
"height": 275,
"rawWidth": 238,
"rawHeight": 275,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-119,
-137.5,
0,
119,
-137.5,
0,
-119,
137.5,
0,
119,
137.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
275,
238,
275,
0,
0,
238,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-119,
-137.5,
0
],
"maxPos": [
119,
137.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "9d777390-44b5-4729-8a08-54aebf79952f@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "9d777390-44b5-4729-8a08-54aebf79952f@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "e949c11f-5d36-4f89-91df-8f88ff4ebe00",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "e949c11f-5d36-4f89-91df-8f88ff4ebe00@6c48a",
"displayName": "main_icon_ssz_en",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "e949c11f-5d36-4f89-91df-8f88ff4ebe00",
"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": "e949c11f-5d36-4f89-91df-8f88ff4ebe00@f9941",
"displayName": "main_icon_ssz_en",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 230,
"height": 270,
"rawWidth": 230,
"rawHeight": 270,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-115,
-135,
0,
115,
-135,
0,
-115,
135,
0,
115,
135,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
270,
230,
270,
0,
0,
230,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-115,
-135,
0
],
"maxPos": [
115,
135,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "e949c11f-5d36-4f89-91df-8f88ff4ebe00@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "e949c11f-5d36-4f89-91df-8f88ff4ebe00@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

View File

@@ -0,0 +1,138 @@
{
"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"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

View File

@@ -0,0 +1,138 @@
{
"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"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

@@ -0,0 +1,138 @@
{
"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"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

View File

@@ -0,0 +1,138 @@
{
"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"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

View File

@@ -0,0 +1,138 @@
{
"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"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@@ -0,0 +1,138 @@
{
"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"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

View File

@@ -0,0 +1,138 @@
{
"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"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

View File

@@ -0,0 +1,138 @@
{
"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"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@@ -0,0 +1,138 @@
{
"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"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -0,0 +1,138 @@
{
"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"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

View File

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

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": "38ee4b2a-f796-4ebd-9081-1c6b44936727",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "38ee4b2a-f796-4ebd-9081-1c6b44936727@6c48a",
"displayName": "main_lab_play_zh",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "38ee4b2a-f796-4ebd-9081-1c6b44936727",
"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": "38ee4b2a-f796-4ebd-9081-1c6b44936727@f9941",
"displayName": "main_lab_play_zh",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 348,
"height": 87,
"rawWidth": 348,
"rawHeight": 87,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-174,
-43.5,
0,
174,
-43.5,
0,
-174,
43.5,
0,
174,
43.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
87,
348,
87,
0,
0,
348,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-174,
-43.5,
0
],
"maxPos": [
174,
43.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "38ee4b2a-f796-4ebd-9081-1c6b44936727@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "38ee4b2a-f796-4ebd-9081-1c6b44936727@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

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": "9257e908-39ef-485b-852b-0327dcf5a3b9",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "9257e908-39ef-485b-852b-0327dcf5a3b9@6c48a",
"displayName": "main_lab_rw_en",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "9257e908-39ef-485b-852b-0327dcf5a3b9",
"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": "9257e908-39ef-485b-852b-0327dcf5a3b9@f9941",
"displayName": "main_lab_rw_en",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 931,
"height": 140,
"rawWidth": 931,
"rawHeight": 140,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-465.5,
-70,
0,
465.5,
-70,
0,
-465.5,
70,
0,
465.5,
70,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
140,
931,
140,
0,
0,
931,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-465.5,
-70,
0
],
"maxPos": [
465.5,
70,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "9257e908-39ef-485b-852b-0327dcf5a3b9@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "9257e908-39ef-485b-852b-0327dcf5a3b9@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

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": "bef4030e-0e16-48e3-9e64-b39f7fd6be80",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "bef4030e-0e16-48e3-9e64-b39f7fd6be80@6c48a",
"displayName": "main_lab_rw_zh",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "bef4030e-0e16-48e3-9e64-b39f7fd6be80",
"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": "bef4030e-0e16-48e3-9e64-b39f7fd6be80@f9941",
"displayName": "main_lab_rw_zh",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 713,
"height": 64,
"rawWidth": 713,
"rawHeight": 64,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-356.5,
-32,
0,
356.5,
-32,
0,
-356.5,
32,
0,
356.5,
32,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
64,
713,
64,
0,
0,
713,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-356.5,
-32,
0
],
"maxPos": [
356.5,
32,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "bef4030e-0e16-48e3-9e64-b39f7fd6be80@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "bef4030e-0e16-48e3-9e64-b39f7fd6be80@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 294 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "1657dfa8-c161-4b1d-a2f0-fbbee28e6b73",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "1657dfa8-c161-4b1d-a2f0-fbbee28e6b73@6c48a",
"displayName": "main_lab_super",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "1657dfa8-c161-4b1d-a2f0-fbbee28e6b73",
"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": "1657dfa8-c161-4b1d-a2f0-fbbee28e6b73@f9941",
"displayName": "main_lab_super",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -21,
"trimX": 82,
"trimY": 102,
"width": 974,
"height": 236,
"rawWidth": 1138,
"rawHeight": 398,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-487,
-118,
0,
487,
-118,
0,
-487,
118,
0,
487,
118,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
82,
296,
1056,
296,
82,
60,
1056,
60
],
"nuv": [
0.07205623901581722,
0.1507537688442211,
0.9279437609841827,
0.1507537688442211,
0.07205623901581722,
0.7437185929648241,
0.9279437609841827,
0.7437185929648241
],
"minPos": [
-487,
-118,
0
],
"maxPos": [
487,
118,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "1657dfa8-c161-4b1d-a2f0-fbbee28e6b73@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "1657dfa8-c161-4b1d-a2f0-fbbee28e6b73@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.9 KiB

View File

@@ -0,0 +1,138 @@
{
"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"
}
}
}

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": "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"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 98 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 100 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 254 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 290 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 222 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 287 KiB

View File

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

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": "3881fbef-b196-44d3-8cd6-114119e29e9b",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "3881fbef-b196-44d3-8cd6-114119e29e9b@6c48a",
"displayName": "main_show_dice_all",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "3881fbef-b196-44d3-8cd6-114119e29e9b",
"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": "3881fbef-b196-44d3-8cd6-114119e29e9b@f9941",
"displayName": "main_show_dice_all",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 365,
"height": 387,
"rawWidth": 365,
"rawHeight": 387,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-182.5,
-193.5,
0,
182.5,
-193.5,
0,
-182.5,
193.5,
0,
182.5,
193.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
387,
365,
387,
0,
0,
365,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-182.5,
-193.5,
0
],
"maxPos": [
182.5,
193.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "3881fbef-b196-44d3-8cd6-114119e29e9b@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "3881fbef-b196-44d3-8cd6-114119e29e9b@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "e1UHIKee1GRqns7LEix3IH"
}
}
}